diff --git a/README.md b/README.md index 6605ba1..654751a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,10 @@ fab-online ========== -Monitor similar to Open_Access_Control written on Perl and Mojolicious +Monitor similar to Open_Access_Control written on Perl and Mojolicious
+ +Require libmojolicious-perl.
+To start app please enter morbo ./script/open_access
+To long collect data from OpenAccess control just add to crontab script/db_gen/parse_in_db, first changing path +to your text file with logs and database parameters
+ diff --git a/lib/OpenAccess.pm b/lib/OpenAccess.pm new file mode 100644 index 0000000..dda4bb1 --- /dev/null +++ b/lib/OpenAccess.pm @@ -0,0 +1,18 @@ +package OpenAccess; +use Mojo::Base 'Mojolicious'; + +# This method will run once at server start +sub startup { + my $self = shift; + + # Documentation browser under "/perldoc" + $self->plugin('PODRenderer'); + + # Routes + my $r = $self->routes; + + # Normal route to controller + $r->route('/')->to('example#welcome'); +} + +1; diff --git a/lib/OpenAccess/Example.pm b/lib/OpenAccess/Example.pm new file mode 100644 index 0000000..25fb526 --- /dev/null +++ b/lib/OpenAccess/Example.pm @@ -0,0 +1,19 @@ +package OpenAccess::Example; +use Mojo::Base 'Mojolicious::Controller'; +use DBI; +use Data::Dumper; + +sub welcome { + my $self = shift; + my @a; + my $dbh = DBI->connect('DBI:mysql:openaccess', 'root', 'toor') || die "Could not connect to database: $DBI::errstr"; + $dbh->do('set names utf8'); + my $sth = $dbh->prepare("SELECT u.id, u.name, u.surname, u.tag, l.created FROM users as u JOIN log as l on l.tag=u.tag GROUP BY u.id ORDER BY l.created DESC LIMIT 10"); + $sth->execute(); + my $a = $sth->fetchall_hashref("tag"); + warn Dumper $a; + $self->render( + users => $a, +} + +1; diff --git a/log/development.log b/log/development.log new file mode 100644 index 0000000..3bae768 --- /dev/null +++ b/log/development.log @@ -0,0 +1,1145 @@ +[Sun Mar 23 21:48:56 2014] [info] Server listening (http://*:3000) +[Sun Mar 23 21:49:09 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 21:49:09 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 21:49:09 2014] [debug] Template "not_found.development.html.ep" not found. +[Sun Mar 23 21:49:09 2014] [debug] Template "not_found.html.ep" not found. +[Sun Mar 23 21:49:09 2014] [debug] Rendering inline template. +[Sun Mar 23 21:49:09 2014] [debug] 404 Not Found (0.022994s, 43.490/s). +[Sun Mar 23 21:49:57 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 21:49:57 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 21:49:57 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 21:49:57 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 21:49:57 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 21:49:57 2014] [debug] 200 OK (0.006216s, 160.875/s). +[Sun Mar 23 21:49:58 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 21:49:58 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 21:49:58 2014] [debug] 200 OK (0.003384s, 295.508/s). +[Sun Mar 23 21:49:58 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 21:49:58 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 21:49:58 2014] [debug] 200 OK (0.002834s, 352.858/s). +[Sun Mar 23 22:06:16 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:06:16 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:06:16 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:06:16 2014] [error] Global symbol "$last_tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 14. +Global symbol "$last_tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 19. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 22:06:16 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:06:16 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:06:16 2014] [debug] Rendering inline template. +[Sun Mar 23 22:06:16 2014] [debug] 500 Internal Server Error (0.022290s, 44.863/s). +[Sun Mar 23 22:07:39 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:07:39 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:07:39 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:07:39 2014] [error] Global symbol "$last_tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 15. +Global symbol "$last_tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 22:07:39 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:07:39 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:07:39 2014] [debug] Rendering inline template. +[Sun Mar 23 22:07:39 2014] [debug] 500 Internal Server Error (0.029016s, 34.464/s). +[Sun Mar 23 22:09:18 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:09:18 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:09:18 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:09:18 2014] [error] Global symbol "@a" requires explicit package name at script/../lib/OpenAccess/Example.pm line 15. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 22:09:18 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:09:18 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:09:18 2014] [debug] Rendering inline template. +[Sun Mar 23 22:09:18 2014] [debug] 500 Internal Server Error (0.028535s, 35.045/s). +[Sun Mar 23 22:09:18 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:09:18 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:09:18 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 22:09:18 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:09:18 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:09:18 2014] [debug] Rendering inline template. +[Sun Mar 23 22:09:18 2014] [debug] 500 Internal Server Error (0.037454s, 26.699/s). +[Sun Mar 23 22:09:18 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 22:09:21 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:09:21 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:09:21 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 22:09:21 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:09:21 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:09:21 2014] [debug] 500 Internal Server Error (0.022360s, 44.723/s). +[Sun Mar 23 22:09:21 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 22:09:35 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:09:35 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:09:35 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:09:35 2014] [error] Can't locate object method "connect" via package "DBI" at script/../lib/OpenAccess/Example.pm line 8. + +[Sun Mar 23 22:09:35 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:09:35 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:09:35 2014] [debug] Rendering inline template. +[Sun Mar 23 22:09:35 2014] [debug] 500 Internal Server Error (0.037444s, 26.707/s). +[Sun Mar 23 22:09:35 2014] [error] Can't locate object method "connect" via package "DBI" at script/../lib/OpenAccess/Example.pm line 8. + +[Sun Mar 23 22:09:36 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:09:36 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:09:36 2014] [error] Can't locate object method "connect" via package "DBI" at script/../lib/OpenAccess/Example.pm line 8. + +[Sun Mar 23 22:09:36 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:09:36 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:09:36 2014] [debug] 500 Internal Server Error (0.014013s, 71.362/s). +[Sun Mar 23 22:09:36 2014] [error] Can't locate object method "connect" via package "DBI" at script/../lib/OpenAccess/Example.pm line 8. + +[Sun Mar 23 22:09:48 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:09:48 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:09:48 2014] [error] Can't locate object method "connect" via package "DBI" at script/../lib/OpenAccess/Example.pm line 8. + +[Sun Mar 23 22:09:48 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:09:48 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:09:48 2014] [debug] 500 Internal Server Error (0.017085s, 58.531/s). +[Sun Mar 23 22:09:48 2014] [error] Can't locate object method "connect" via package "DBI" at script/../lib/OpenAccess/Example.pm line 8. + +[Sun Mar 23 22:10:02 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:10:02 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:10:02 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:10:02 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:02 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:10:02 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:10:02 2014] [debug] Rendering inline template. +[Sun Mar 23 22:10:02 2014] [debug] 500 Internal Server Error (0.060054s, 16.652/s). +[Sun Mar 23 22:10:02 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:04 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:10:04 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:10:04 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:04 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:10:04 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:10:04 2014] [debug] 500 Internal Server Error (0.031946s, 31.303/s). +[Sun Mar 23 22:10:04 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:23 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:10:23 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:10:23 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:10:23 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:23 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:10:23 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:10:23 2014] [debug] Rendering inline template. +[Sun Mar 23 22:10:23 2014] [debug] 500 Internal Server Error (0.060231s, 16.603/s). +[Sun Mar 23 22:10:23 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:24 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:10:24 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:10:24 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:24 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:10:24 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:10:24 2014] [debug] 500 Internal Server Error (0.028843s, 34.670/s). +[Sun Mar 23 22:10:24 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:25 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:10:25 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:10:25 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:25 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:10:25 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:10:25 2014] [debug] 500 Internal Server Error (0.028516s, 35.068/s). +[Sun Mar 23 22:10:25 2014] [error] Can't use string ("created") as an ARRAY ref while "strict refs" in use at /usr/lib/perl5/DBI.pm line 2015. + +[Sun Mar 23 22:10:52 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:10:52 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:10:52 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:10:52 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:10:52 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:10:52 2014] [debug] 200 OK (0.039858s, 25.089/s). +[Sun Mar 23 22:10:53 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:10:53 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:10:53 2014] [debug] 200 OK (0.009722s, 102.859/s). +[Sun Mar 23 22:11:34 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:11:42 2014] [debug] GET /welcome (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:11:42 2014] [debug] Template "not_found.development.html.ep" not found. +[Sun Mar 23 22:11:42 2014] [debug] Template "not_found.html.ep" not found. +[Sun Mar 23 22:11:42 2014] [debug] Rendering inline template. +[Sun Mar 23 22:11:42 2014] [debug] 404 Not Found (0.016573s, 60.339/s). +[Sun Mar 23 22:11:50 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:11:50 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:11:50 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:11:50 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:11:50 2014] [debug] 200 OK (0.048382s, 20.669/s). +[Sun Mar 23 22:13:00 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:13:00 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:13:00 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:13:00 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:13:00 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:13:00 2014] [debug] 200 OK (0.041777s, 23.937/s). +[Sun Mar 23 22:13:01 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:13:01 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:13:01 2014] [debug] 200 OK (0.009359s, 106.849/s). +[Sun Mar 23 22:13:01 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:13:01 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:13:02 2014] [debug] 200 OK (0.009120s, 109.649/s). +[Sun Mar 23 22:13:02 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:13:02 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:13:02 2014] [debug] 200 OK (0.008385s, 119.261/s). +[Sun Mar 23 22:14:19 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:14:19 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:14:19 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:14:19 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:14:19 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:14:19 2014] [debug] 200 OK (0.039846s, 25.097/s). +[Sun Mar 23 22:15:40 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:15:40 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:15:40 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:15:40 2014] [error] syntax error at script/../lib/OpenAccess/Example.pm line 19, near "))" +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 22:15:40 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:15:40 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:15:40 2014] [debug] Rendering inline template. +[Sun Mar 23 22:15:40 2014] [debug] 500 Internal Server Error (0.038976s, 25.657/s). +[Sun Mar 23 22:15:52 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:15:52 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:15:52 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:15:52 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:15:52 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:15:52 2014] [debug] 200 OK (0.033810s, 29.577/s). +[Sun Mar 23 22:16:23 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:16:23 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:16:23 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:16:23 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:16:23 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:16:23 2014] [debug] 200 OK (0.035297s, 28.331/s). +[Sun Mar 23 22:16:34 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:16:34 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:16:34 2014] [debug] 200 OK (0.008823s, 113.340/s). +[Sun Mar 23 22:17:15 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:17:15 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:17:15 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:17:15 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:17:15 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:17:15 2014] [debug] 200 OK (0.043405s, 23.039/s). +[Sun Mar 23 22:18:23 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:18:23 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:18:23 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:18:23 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:18:23 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:18:23 2014] [debug] 200 OK (0.043761s, 22.851/s). +[Sun Mar 23 22:19:03 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:19:03 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:19:03 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:19:03 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:19:03 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:19:03 2014] [debug] 200 OK (0.036931s, 27.078/s). +[Sun Mar 23 22:20:18 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:20:18 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:20:18 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:20:18 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:20:18 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:20:18 2014] [debug] 200 OK (0.038592s, 25.912/s). +[Sun Mar 23 22:20:45 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:20:45 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:20:45 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:20:45 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:20:45 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:20:45 2014] [debug] 200 OK (0.042777s, 23.377/s). +[Sun Mar 23 22:21:16 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:21:16 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:21:16 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:21:16 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:21:16 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:21:16 2014] [debug] 200 OK (0.051633s, 19.367/s). +[Sun Mar 23 22:22:30 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:22:30 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:22:30 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:22:30 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:22:30 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:22:30 2014] [debug] 200 OK (0.038191s, 26.184/s). +[Sun Mar 23 22:22:30 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:22:30 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:22:30 2014] [debug] 200 OK (0.007767s, 128.750/s). +[Sun Mar 23 22:22:31 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:22:31 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:22:31 2014] [debug] 200 OK (0.009833s, 101.698/s). +[Sun Mar 23 22:23:21 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:23:21 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:23:21 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:23:21 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:23:21 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:23:21 2014] [debug] 200 OK (0.049520s, 20.194/s). +[Sun Mar 23 22:23:55 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:23:55 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:23:55 2014] [debug] 200 OK (0.009072s, 110.229/s). +[Sun Mar 23 22:23:55 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:23:55 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:23:55 2014] [debug] 200 OK (0.010378s, 96.358/s). +[Sun Mar 23 22:28:52 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:28:52 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:28:52 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:28:52 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:28:52 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:28:52 2014] [debug] 200 OK (0.041039s, 24.367/s). +[Sun Mar 23 22:28:53 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:28:53 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:28:53 2014] [debug] 200 OK (0.009450s, 105.820/s). +[Sun Mar 23 22:28:53 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:28:53 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:28:53 2014] [debug] 200 OK (0.009164s, 109.123/s). +[Sun Mar 23 22:30:02 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:30:02 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:30:02 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:30:02 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:30:02 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:30:02 2014] [debug] 200 OK (0.031702s, 31.544/s). +[Sun Mar 23 22:30:11 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:30:11 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:30:11 2014] [debug] 200 OK (0.005142s, 194.477/s). +[Sun Mar 23 22:30:11 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:30:11 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:30:11 2014] [debug] 200 OK (0.004393s, 227.635/s). +[Sun Mar 23 22:30:12 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:30:12 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:30:12 2014] [debug] 200 OK (0.002860s, 349.650/s). +[Sun Mar 23 22:30:12 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:30:12 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:30:12 2014] [debug] 200 OK (0.004091s, 244.439/s). +[Sun Mar 23 22:31:20 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:31:20 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:31:20 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:31:20 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:31:20 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:31:20 2014] [debug] 200 OK (0.034906s, 28.648/s). +[Sun Mar 23 22:34:10 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:34:10 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:34:10 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:34:10 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:34:10 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:34:10 2014] [debug] 200 OK (0.033986s, 29.424/s). +[Sun Mar 23 22:35:10 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:35:10 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:35:10 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:35:10 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:35:10 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:35:10 2014] [debug] 200 OK (0.042119s, 23.742/s). +[Sun Mar 23 22:35:46 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:35:46 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:35:46 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:35:46 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:35:46 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:35:46 2014] [debug] 200 OK (0.058375s, 17.131/s). +[Sun Mar 23 22:36:19 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:36:19 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:36:19 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:36:19 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 22:36:19 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 22:36:19 2014] [debug] 200 OK (0.043803s, 22.829/s). +[Sun Mar 23 22:59:41 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 22:59:41 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:59:41 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:59:41 2014] [error] Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 22:59:41 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:59:41 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:59:41 2014] [debug] Rendering inline template. +[Sun Mar 23 22:59:41 2014] [debug] 500 Internal Server Error (0.043280s, 23.105/s). +[Sun Mar 23 22:59:42 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:59:42 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:59:42 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 22:59:42 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:59:42 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:59:42 2014] [debug] Rendering inline template. +[Sun Mar 23 22:59:42 2014] [debug] 500 Internal Server Error (0.037563s, 26.622/s). +[Sun Mar 23 22:59:42 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 22:59:42 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 22:59:42 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 22:59:42 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 22:59:42 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 22:59:42 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 22:59:42 2014] [debug] 500 Internal Server Error (0.020010s, 49.975/s). +[Sun Mar 23 22:59:42 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:03:11 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:03:11 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:03:11 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:03:11 2014] [error] Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 23. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 26. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 30. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:03:11 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:03:11 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:03:11 2014] [debug] Rendering inline template. +[Sun Mar 23 23:03:11 2014] [debug] 500 Internal Server Error (0.035712s, 28.002/s). +[Sun Mar 23 23:03:13 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:03:13 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:03:13 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:03:13 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:03:13 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:03:13 2014] [debug] Rendering inline template. +[Sun Mar 23 23:03:13 2014] [debug] 500 Internal Server Error (0.025941s, 38.549/s). +[Sun Mar 23 23:03:13 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:03:15 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:03:15 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:03:15 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:03:15 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:03:15 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:03:15 2014] [debug] 500 Internal Server Error (0.023496s, 42.560/s). +[Sun Mar 23 23:03:15 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:08:14 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:08:14 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:08:14 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:08:14 2014] [error] Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 23. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 26. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 30. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:08:14 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:08:14 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:08:14 2014] [debug] Rendering inline template. +[Sun Mar 23 23:08:14 2014] [debug] 500 Internal Server Error (0.044626s, 22.408/s). +[Sun Mar 23 23:08:26 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:08:26 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:08:26 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:08:26 2014] [error] Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 30. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:08:26 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:08:26 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:08:26 2014] [debug] Rendering inline template. +[Sun Mar 23 23:08:26 2014] [debug] 500 Internal Server Error (0.042474s, 23.544/s). +[Sun Mar 23 23:08:27 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:08:27 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:08:27 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:08:27 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:08:27 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:08:27 2014] [debug] Rendering inline template. +[Sun Mar 23 23:08:27 2014] [debug] 500 Internal Server Error (0.028802s, 34.720/s). +[Sun Mar 23 23:08:27 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:11:43 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:11:43 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:11:43 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:11:43 2014] [error] Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 22. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 25. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 33. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:11:43 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:11:43 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:11:43 2014] [debug] Rendering inline template. +[Sun Mar 23 23:11:43 2014] [debug] 500 Internal Server Error (0.037673s, 26.544/s). +[Sun Mar 23 23:12:01 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:12:01 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:12:01 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:12:01 2014] [error] Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 22. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 25. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 33. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:12:01 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:12:01 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:12:01 2014] [debug] Rendering inline template. +[Sun Mar 23 23:12:01 2014] [debug] 500 Internal Server Error (0.034073s, 29.349/s). +[Sun Mar 23 23:12:02 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:12:02 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:12:02 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:12:02 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:12:02 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:12:02 2014] [debug] Rendering inline template. +[Sun Mar 23 23:12:02 2014] [debug] 500 Internal Server Error (0.028519s, 35.064/s). +[Sun Mar 23 23:12:02 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:12:02 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:12:02 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:12:02 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:12:02 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:12:02 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:12:02 2014] [debug] 500 Internal Server Error (0.019693s, 50.779/s). +[Sun Mar 23 23:12:02 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:12:09 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:12:09 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:12:09 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:12:09 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:12:09 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:12:09 2014] [debug] 500 Internal Server Error (0.018823s, 53.126/s). +[Sun Mar 23 23:12:09 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:12:10 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:12:10 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:12:10 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:12:10 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:12:10 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:12:10 2014] [debug] 500 Internal Server Error (0.020243s, 49.400/s). +[Sun Mar 23 23:12:10 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:13:53 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:13:53 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:13:53 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:13:53 2014] [error] Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 20. +Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 22. +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 35. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:13:53 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:13:53 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:13:53 2014] [debug] Rendering inline template. +[Sun Mar 23 23:13:53 2014] [debug] 500 Internal Server Error (0.034233s, 29.212/s). +[Sun Mar 23 23:14:06 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:14:06 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:14:06 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:14:06 2014] [error] Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 35. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:14:06 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:14:06 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:14:06 2014] [debug] Rendering inline template. +[Sun Mar 23 23:14:06 2014] [debug] 500 Internal Server Error (0.043496s, 22.991/s). +[Sun Mar 23 23:14:20 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:14:20 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:14:20 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:14:20 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:14:20 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:14:20 2014] [debug] 200 OK (0.046731s, 21.399/s). +[Sun Mar 23 23:14:57 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:14:57 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:14:57 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:14:57 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:14:57 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:14:57 2014] [debug] 200 OK (0.048705s, 20.532/s). +[Sun Mar 23 23:15:31 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:15:31 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:15:31 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:15:31 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:15:31 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:15:31 2014] [debug] 200 OK (0.038654s, 25.871/s). +[Sun Mar 23 23:16:23 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:16:23 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:16:23 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:16:23 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:16:23 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:16:23 2014] [debug] 200 OK (0.039267s, 25.467/s). +[Sun Mar 23 23:17:01 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:17:01 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:17:01 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:17:01 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:17:01 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:17:01 2014] [debug] 200 OK (0.046561s, 21.477/s). +[Sun Mar 23 23:17:08 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:17:08 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:17:09 2014] [debug] 200 OK (0.011565s, 86.468/s). +[Sun Mar 23 23:18:11 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:18:11 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:11 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:11 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:18:11 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:18:11 2014] [debug] 200 OK (0.045885s, 21.794/s). +[Sun Mar 23 23:18:26 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:18:26 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:26 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:26 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:18:26 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:18:26 2014] [debug] 200 OK (0.045709s, 21.878/s). +[Sun Mar 23 23:18:27 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:27 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:27 2014] [debug] 200 OK (0.011234s, 89.015/s). +[Sun Mar 23 23:18:27 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:27 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:27 2014] [debug] 200 OK (0.008968s, 111.508/s). +[Sun Mar 23 23:18:27 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:27 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:27 2014] [debug] 200 OK (0.009841s, 101.616/s). +[Sun Mar 23 23:18:27 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:27 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:27 2014] [debug] 200 OK (0.014590s, 68.540/s). +[Sun Mar 23 23:18:27 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:27 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:27 2014] [debug] 200 OK (0.008894s, 112.435/s). +[Sun Mar 23 23:18:33 2014] [info] Server listening (http://*:3000) +[Sun Mar 23 23:18:35 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:18:35 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:18:35 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:18:35 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:18:35 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:18:35 2014] [debug] 200 OK (0.038492s, 25.979/s). +[Sun Mar 23 23:19:18 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:19:18 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:19:18 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:19:18 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:19:18 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:19:18 2014] [debug] 200 OK (0.034693s, 28.824/s). +[Sun Mar 23 23:19:59 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:19:59 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:19:59 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:19:59 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:19:59 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:19:59 2014] [debug] 200 OK (0.039680s, 25.202/s). +[Sun Mar 23 23:20:11 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:20:11 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:20:11 2014] [debug] 200 OK (0.014977s, 66.769/s). +[Sun Mar 23 23:20:12 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:20:12 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:20:12 2014] [debug] 200 OK (0.015583s, 64.172/s). +[Sun Mar 23 23:20:12 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:20:12 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:20:12 2014] [debug] 200 OK (0.010488s, 95.347/s). +[Sun Mar 23 23:20:12 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:20:12 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:20:12 2014] [debug] 200 OK (0.009993s, 100.070/s). +[Sun Mar 23 23:20:38 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:20:38 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:20:38 2014] [debug] 200 OK (0.012611s, 79.296/s). +[Sun Mar 23 23:21:23 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:21:23 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:21:23 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:21:23 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:21:23 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:21:23 2014] [debug] 200 OK (0.053271s, 18.772/s). +[Sun Mar 23 23:23:06 2014] [info] Server listening (http://*:3000) +[Sun Mar 23 23:23:09 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:23:09 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:23:09 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:23:09 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:23:09 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:23:09 2014] [debug] 200 OK (0.051250s, 19.512/s). +[Sun Mar 23 23:25:58 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:25:58 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:25:58 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:25:58 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:25:58 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:25:58 2014] [debug] 200 OK (0.051440s, 19.440/s). +[Sun Mar 23 23:26:38 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:26:38 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:26:38 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:26:38 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:26:38 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:26:38 2014] [debug] 200 OK (0.031974s, 31.275/s). +[Sun Mar 23 23:27:01 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:27:01 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:27:01 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:27:01 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:27:01 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:27:01 2014] [debug] 200 OK (0.045191s, 22.128/s). +[Sun Mar 23 23:27:57 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:27:57 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:27:57 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:27:57 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:27:57 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:27:57 2014] [debug] 200 OK (0.033652s, 29.716/s). +[Sun Mar 23 23:28:18 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:28:18 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:28:18 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:28:18 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:28:18 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:28:18 2014] [debug] 200 OK (0.038627s, 25.889/s). +[Sun Mar 23 23:29:33 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:29:33 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:29:33 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:29:33 2014] [error] Not an ARRAY reference at script/../lib/OpenAccess/Example.pm line 17. + +[Sun Mar 23 23:29:33 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:29:33 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:29:33 2014] [debug] Rendering inline template. +[Sun Mar 23 23:29:33 2014] [debug] 500 Internal Server Error (0.058659s, 17.048/s). +[Sun Mar 23 23:29:33 2014] [error] Not an ARRAY reference at script/../lib/OpenAccess/Example.pm line 17. + +[Sun Mar 23 23:29:54 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:29:54 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:29:54 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:29:54 2014] [error] Can't use string ("7357456") as an ARRAY ref while "strict refs" in use at script/../lib/OpenAccess/Example.pm line 18. + +[Sun Mar 23 23:29:54 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:29:54 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:29:54 2014] [debug] Rendering inline template. +[Sun Mar 23 23:29:54 2014] [debug] 500 Internal Server Error (0.054447s, 18.366/s). +[Sun Mar 23 23:29:54 2014] [error] Can't use string ("7357456") as an ARRAY ref while "strict refs" in use at script/../lib/OpenAccess/Example.pm line 18. + +[Sun Mar 23 23:32:04 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:32:04 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:32:04 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:32:04 2014] [error] Not an ARRAY reference at script/../lib/OpenAccess/Example.pm line 24. + +[Sun Mar 23 23:32:04 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:32:04 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:32:04 2014] [debug] Rendering inline template. +[Sun Mar 23 23:32:04 2014] [debug] 500 Internal Server Error (0.054947s, 18.199/s). +[Sun Mar 23 23:32:04 2014] [error] Not an ARRAY reference at script/../lib/OpenAccess/Example.pm line 24. + +[Sun Mar 23 23:32:05 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:32:05 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:32:05 2014] [error] Not an ARRAY reference at script/../lib/OpenAccess/Example.pm line 24. + +[Sun Mar 23 23:32:05 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:32:05 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:32:05 2014] [debug] 500 Internal Server Error (0.023075s, 43.337/s). +[Sun Mar 23 23:32:05 2014] [error] Not an ARRAY reference at script/../lib/OpenAccess/Example.pm line 24. + +[Sun Mar 23 23:33:00 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:33:00 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:33:00 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:33:00 2014] [error] Can't use string ("7") as an ARRAY ref while "strict refs" in use at script/../lib/OpenAccess/Example.pm line 24. + +[Sun Mar 23 23:33:00 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:33:00 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:33:00 2014] [debug] Rendering inline template. +[Sun Mar 23 23:33:00 2014] [debug] 500 Internal Server Error (0.048870s, 20.462/s). +[Sun Mar 23 23:33:00 2014] [error] Can't use string ("7") as an ARRAY ref while "strict refs" in use at script/../lib/OpenAccess/Example.pm line 24. + +[Sun Mar 23 23:33:17 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:33:17 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:33:17 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:33:17 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:33:17 2014] [error] Not an ARRAY reference at template "example/welcome.html.ep" line 6, near "<%= $_->[0] %>". +1: % layout 'default'; +2: % title 'Welcome'; +3:

<%= $message %>

+4: +5: +6: <% for (@$all_tags) {%> +7: <%= $_->[0] %> +8: <% }%> + +[Sun Mar 23 23:33:17 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:33:17 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:33:17 2014] [debug] Rendering inline template. +[Sun Mar 23 23:33:17 2014] [debug] 500 Internal Server Error (0.062617s, 15.970/s). +[Sun Mar 23 23:33:19 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:33:19 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:33:19 2014] [error] Not an ARRAY reference at template "example/welcome.html.ep" line 6, near "<%= $_->[0] %>". +1: % layout 'default'; +2: % title 'Welcome'; +3:

<%= $message %>

+4: +5: +6: <% for (@$all_tags) {%> +7: <%= $_->[0] %> +8: <% }%> + +[Sun Mar 23 23:33:19 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:33:19 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:33:19 2014] [debug] 500 Internal Server Error (0.027282s, 36.654/s). +[Sun Mar 23 23:33:29 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:33:29 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:33:29 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:33:29 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:33:29 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:33:29 2014] [debug] 200 OK (0.038837s, 25.749/s). +[Sun Mar 23 23:35:30 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:35:30 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:35:30 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:35:30 2014] [error] DBI selectcol_arrayref: invalid number of arguments: got handle + 0, expected handle + between 1 and -1 +Usage: $h->selectcol_arrayref($statement [, \%attr [, @bind_params ] ]) at script/../lib/OpenAccess/Example.pm line 14. + +[Sun Mar 23 23:35:30 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:35:30 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:35:30 2014] [debug] Rendering inline template. +[Sun Mar 23 23:35:30 2014] [debug] 500 Internal Server Error (0.049359s, 20.260/s). +[Sun Mar 23 23:35:30 2014] [error] DBI selectcol_arrayref: invalid number of arguments: got handle + 0, expected handle + between 1 and -1 +Usage: $h->selectcol_arrayref($statement [, \%attr [, @bind_params ] ]) at script/../lib/OpenAccess/Example.pm line 14. + +[Sun Mar 23 23:36:19 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:36:19 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:36:19 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:36:19 2014] [error] Global symbol "$sth" requires explicit package name at script/../lib/OpenAccess/Example.pm line 29. +Global symbol "$sth" requires explicit package name at script/../lib/OpenAccess/Example.pm line 30. +Global symbol "$sth" requires explicit package name at script/../lib/OpenAccess/Example.pm line 31. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:36:19 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:36:19 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:36:19 2014] [debug] Rendering inline template. +[Sun Mar 23 23:36:19 2014] [debug] 500 Internal Server Error (0.037820s, 26.441/s). +[Sun Mar 23 23:36:20 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:36:20 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:36:20 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:36:20 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:36:20 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:36:20 2014] [debug] Rendering inline template. +[Sun Mar 23 23:36:20 2014] [debug] 500 Internal Server Error (0.026448s, 37.810/s). +[Sun Mar 23 23:36:20 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:36:50 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:36:50 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:36:50 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:36:51 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:36:51 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:36:51 2014] [debug] 200 OK (0.042294s, 23.644/s). +[Sun Mar 23 23:36:59 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:36:59 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:36:59 2014] [debug] 200 OK (0.003189s, 313.578/s). +[Sun Mar 23 23:38:03 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:38:03 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:38:03 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:38:03 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:38:03 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:38:03 2014] [debug] 200 OK (0.038341s, 26.082/s). +[Sun Mar 23 23:39:43 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:39:43 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:39:43 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:39:43 2014] [error] Global symbol "$sth" requires explicit package name at script/../lib/OpenAccess/Example.pm line 16. +Global symbol "$sth" requires explicit package name at script/../lib/OpenAccess/Example.pm line 17. +Global symbol "$sth" requires explicit package name at script/../lib/OpenAccess/Example.pm line 18. +syntax error at script/../lib/OpenAccess/Example.pm line 19, near ") + warn" +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 19. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:39:43 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:39:43 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:39:43 2014] [debug] Rendering inline template. +[Sun Mar 23 23:39:43 2014] [debug] 500 Internal Server Error (0.038022s, 26.301/s). +[Sun Mar 23 23:39:55 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:39:55 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:39:55 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:39:55 2014] [error] syntax error at script/../lib/OpenAccess/Example.pm line 19, near ") + warn" +Global symbol "$tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 19. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:39:55 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:39:55 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:39:55 2014] [debug] Rendering inline template. +[Sun Mar 23 23:39:55 2014] [debug] 500 Internal Server Error (0.046488s, 21.511/s). +[Sun Mar 23 23:40:10 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:40:10 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:40:10 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:40:10 2014] [error] syntax error at script/../lib/OpenAccess/Example.pm line 19, near ") + warn" +Global symbol "$last_r_for_tag" requires explicit package name at script/../lib/OpenAccess/Example.pm line 19. +Compilation failed in require at (eval 245) line 1. + +[Sun Mar 23 23:40:10 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:40:10 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:40:10 2014] [debug] Rendering inline template. +[Sun Mar 23 23:40:10 2014] [debug] 500 Internal Server Error (0.045634s, 21.913/s). +[Sun Mar 23 23:40:12 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:40:12 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:40:12 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:40:12 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:40:12 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:40:12 2014] [debug] Rendering inline template. +[Sun Mar 23 23:40:12 2014] [debug] 500 Internal Server Error (0.038232s, 26.156/s). +[Sun Mar 23 23:40:12 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:40:12 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:40:12 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:40:12 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:40:12 2014] [debug] Template "exception.development.html.ep" not found. +[Sun Mar 23 23:40:12 2014] [debug] Template "exception.html.ep" not found. +[Sun Mar 23 23:40:12 2014] [debug] 500 Internal Server Error (0.025656s, 38.977/s). +[Sun Mar 23 23:40:12 2014] [error] Can't locate object method "welcome" via package "OpenAccess::Example" at /usr/share/perl5/Mojolicious/Routes.pm line 409 + +[Sun Mar 23 23:40:31 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:40:31 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:40:31 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:40:31 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:40:31 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:40:31 2014] [debug] 200 OK (0.029977s, 33.359/s). +[Sun Mar 23 23:41:05 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:41:05 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:41:05 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:41:06 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:41:06 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:41:06 2014] [debug] 200 OK (0.029624s, 33.756/s). +[Sun Mar 23 23:42:40 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:42:40 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:42:40 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:42:40 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:42:40 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:42:40 2014] [debug] 200 OK (0.038717s, 25.828/s). +[Sun Mar 23 23:42:56 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:42:56 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:42:56 2014] [debug] 200 OK (0.003759s, 266.028/s). +[Sun Mar 23 23:43:29 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:43:29 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:43:29 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:43:29 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:43:29 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:43:29 2014] [debug] 200 OK (0.047060s, 21.249/s). +[Sun Mar 23 23:47:11 2014] [debug] Your secret passphrase needs to be changed!!! +[Sun Mar 23 23:47:11 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:47:11 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:47:11 2014] [debug] Rendering template "example/welcome.html.ep". +[Sun Mar 23 23:47:11 2014] [debug] Rendering template "layouts/default.html.ep". +[Sun Mar 23 23:47:11 2014] [debug] 200 OK (0.041705s, 23.978/s). +[Sun Mar 23 23:47:22 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Sun Mar 23 23:47:22 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Sun Mar 23 23:47:22 2014] [debug] 200 OK (0.003194s, 313.087/s). +[Mon Mar 24 01:03:28 2014] [info] Server listening (http://*:3000) +[Mon Mar 24 01:03:37 2014] [debug] Your secret passphrase needs to be changed!!! +[Mon Mar 24 01:03:37 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Mon Mar 24 01:03:37 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Mon Mar 24 01:03:37 2014] [error] Global symbol "$all_tags" requires explicit package name at script/../lib/OpenAccess/Example.pm line 60. +Compilation failed in require at (eval 245) line 1. + +[Mon Mar 24 01:03:37 2014] [debug] Template "exception.development.html.ep" not found. +[Mon Mar 24 01:03:37 2014] [debug] Template "exception.html.ep" not found. +[Mon Mar 24 01:03:37 2014] [debug] Rendering inline template. +[Mon Mar 24 01:03:37 2014] [debug] 500 Internal Server Error (0.044600s, 22.422/s). +[Mon Mar 24 01:03:49 2014] [debug] Your secret passphrase needs to be changed!!! +[Mon Mar 24 01:03:49 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Mon Mar 24 01:03:49 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Mon Mar 24 01:03:49 2014] [debug] Rendering template "example/welcome.html.ep". +[Mon Mar 24 01:03:49 2014] [debug] Rendering template "layouts/default.html.ep". +[Mon Mar 24 01:03:49 2014] [debug] 200 OK (0.033698s, 29.675/s). +[Mon Mar 24 01:28:34 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Mon Mar 24 01:28:34 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Mon Mar 24 01:28:34 2014] [debug] 200 OK (0.003866s, 258.665/s). +[Mon Mar 24 01:31:10 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Mon Mar 24 01:31:10 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Mon Mar 24 01:31:10 2014] [debug] 200 OK (0.006602s, 151.469/s). +[Tue Mar 25 09:57:39 2014] [info] Server listening (http://*:3000) +[Tue Mar 25 09:57:48 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 09:57:48 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 09:57:48 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 09:57:48 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 09:57:48 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 09:57:48 2014] [debug] 200 OK (0.053045s, 18.852/s). +[Tue Mar 25 10:19:54 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:19:54 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:19:54 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:19:54 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:19:54 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:19:54 2014] [debug] 200 OK (0.047305s, 21.139/s). +[Tue Mar 25 10:21:16 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:21:16 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:21:16 2014] [debug] 200 OK (0.005869s, 170.387/s). +[Tue Mar 25 10:21:22 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:21:22 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:21:22 2014] [debug] 200 OK (0.003473s, 287.936/s). +[Tue Mar 25 10:21:22 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:21:22 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:21:22 2014] [debug] 200 OK (0.005766s, 173.430/s). +[Tue Mar 25 10:21:23 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:21:23 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:21:23 2014] [debug] 200 OK (0.005734s, 174.398/s). +[Tue Mar 25 10:24:54 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:24:54 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:24:54 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:24:54 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:24:54 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:24:54 2014] [debug] 200 OK (0.051810s, 19.301/s). +[Tue Mar 25 10:25:09 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:25:09 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:25:09 2014] [debug] 200 OK (0.005248s, 190.549/s). +[Tue Mar 25 10:27:39 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:27:39 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:27:39 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:27:39 2014] [error] syntax error at script/../lib/OpenAccess/Example.pm line 17, near "$a;" +syntax error at script/../lib/OpenAccess/Example.pm line 18, near "'Welcome to the Mojolicious real-time web framework!')" +Compilation failed in require at (eval 245) line 1. + +[Tue Mar 25 10:27:39 2014] [debug] Template "exception.development.html.ep" not found. +[Tue Mar 25 10:27:39 2014] [debug] Template "exception.html.ep" not found. +[Tue Mar 25 10:27:39 2014] [debug] Rendering inline template. +[Tue Mar 25 10:27:39 2014] [debug] 500 Internal Server Error (0.049225s, 20.315/s). +[Tue Mar 25 10:27:53 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:27:53 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:27:53 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:27:53 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:27:53 2014] [error] syntax error at template "example/welcome.html.ep" line 7, near " <=% $_->{'created'} %>". +syntax error at template "example/welcome.html.ep" line 9. +Missing right curly or square bracket at template "example/welcome.html.ep" line 9. +2: % title 'Welcome'; +3: +4:

<%= $message %>

+5: +6: +7: <%= for (values %$a) { +8: <=% $_->{'created'} %> +9: } %> + +[Tue Mar 25 10:27:53 2014] [debug] Template "exception.development.html.ep" not found. +[Tue Mar 25 10:27:53 2014] [debug] Template "exception.html.ep" not found. +[Tue Mar 25 10:27:53 2014] [debug] Rendering inline template. +[Tue Mar 25 10:27:53 2014] [debug] 500 Internal Server Error (0.054932s, 18.204/s). +[Tue Mar 25 10:28:08 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:28:08 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:28:08 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:28:08 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:28:08 2014] [error] syntax error at template "example/welcome.html.ep" line 7, near " <%= $_->{'created'} %>". +syntax error at template "example/welcome.html.ep" line 9. +Missing right curly or square bracket at template "example/welcome.html.ep" line 9. +2: % title 'Welcome'; +3: +4:

<%= $message %>

+5: +6: +7: <%= for (values %$a) { +8: <%= $_->{'created'} %> +9: } %> + +[Tue Mar 25 10:28:08 2014] [debug] Template "exception.development.html.ep" not found. +[Tue Mar 25 10:28:08 2014] [debug] Template "exception.html.ep" not found. +[Tue Mar 25 10:28:08 2014] [debug] Rendering inline template. +[Tue Mar 25 10:28:08 2014] [debug] 500 Internal Server Error (0.055793s, 17.923/s). +[Tue Mar 25 10:28:22 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:28:22 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:28:22 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:28:22 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:28:22 2014] [error] syntax error at template "example/welcome.html.ep" line 7, near " <%= $_->{'created'} =%>". +syntax error at template "example/welcome.html.ep" line 9. +Missing right curly or square bracket at template "example/welcome.html.ep" line 9. +2: % title 'Welcome'; +3: +4:

<%= $message %>

+5: +6: +7: <%= for (values %$a) { +8: <%= $_->{'created'} =%> +9: } %> + +[Tue Mar 25 10:28:22 2014] [debug] Template "exception.development.html.ep" not found. +[Tue Mar 25 10:28:22 2014] [debug] Template "exception.html.ep" not found. +[Tue Mar 25 10:28:22 2014] [debug] Rendering inline template. +[Tue Mar 25 10:28:22 2014] [debug] 500 Internal Server Error (0.054997s, 18.183/s). +[Tue Mar 25 10:28:35 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:28:35 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:28:35 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:28:35 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:28:35 2014] [error] syntax error at template "example/welcome.html.ep" line 7, near " <%= $_->{'created'} =%>". +syntax error at template "example/welcome.html.ep" line 9. +Global symbol "$_M" requires explicit package name at template "example/welcome.html.ep" line 9. +Global symbol "$_M" requires explicit package name at template "example/welcome.html.ep" line 9. +syntax error at template "example/welcome.html.ep" line 9. +2: % title 'Welcome'; +3: +4:

<%= $message %>

+5: +6: +7: <%= for (values %$a) { +8: <%= $_->{'created'} =%> +9: <% } %> + +[Tue Mar 25 10:28:35 2014] [debug] Template "exception.development.html.ep" not found. +[Tue Mar 25 10:28:35 2014] [debug] Template "exception.html.ep" not found. +[Tue Mar 25 10:28:35 2014] [debug] Rendering inline template. +[Tue Mar 25 10:28:35 2014] [debug] 500 Internal Server Error (0.067798s, 14.750/s). +[Tue Mar 25 10:28:50 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:28:50 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:28:50 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:28:50 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:28:50 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:28:50 2014] [debug] 200 OK (0.036507s, 27.392/s). +[Tue Mar 25 10:29:31 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:31 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:31 2014] [debug] 200 OK (0.002991s, 334.336/s). +[Tue Mar 25 10:29:32 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:32 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:32 2014] [debug] 200 OK (0.003969s, 251.953/s). +[Tue Mar 25 10:29:32 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:32 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:32 2014] [debug] 200 OK (0.004424s, 226.040/s). +[Tue Mar 25 10:29:32 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:32 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:32 2014] [debug] 200 OK (0.006039s, 165.590/s). +[Tue Mar 25 10:29:32 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:32 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:32 2014] [debug] 200 OK (0.004117s, 242.895/s). +[Tue Mar 25 10:29:32 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:32 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:32 2014] [debug] 200 OK (0.005086s, 196.618/s). +[Tue Mar 25 10:29:33 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:33 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:33 2014] [debug] 200 OK (0.005983s, 167.140/s). +[Tue Mar 25 10:29:33 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:33 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:33 2014] [debug] 200 OK (0.006098s, 163.988/s). +[Tue Mar 25 10:29:33 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:33 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:33 2014] [debug] 200 OK (0.005838s, 171.292/s). +[Tue Mar 25 10:29:37 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:29:37 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:29:37 2014] [debug] 200 OK (0.004752s, 210.438/s). +[Tue Mar 25 10:30:03 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:30:03 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:30:03 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:30:03 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:30:03 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:30:03 2014] [debug] 200 OK (0.034455s, 29.023/s). +[Tue Mar 25 10:30:17 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:30:17 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:30:17 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:30:17 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:30:18 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:30:18 2014] [debug] 200 OK (0.051545s, 19.401/s). +[Tue Mar 25 10:30:18 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:30:18 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:30:18 2014] [debug] 200 OK (0.005713s, 175.039/s). +[Tue Mar 25 10:30:35 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:30:35 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:30:35 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:30:35 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:30:35 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:30:35 2014] [debug] 200 OK (0.034650s, 28.860/s). +[Tue Mar 25 10:34:32 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:34:32 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:34:32 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:34:32 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:34:32 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:34:32 2014] [debug] 200 OK (0.047321s, 21.132/s). +[Tue Mar 25 10:36:32 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:36:32 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:32 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:32 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:36:32 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:36:32 2014] [debug] 200 OK (0.057370s, 17.431/s). +[Tue Mar 25 10:36:50 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:36:50 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:50 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:50 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:36:51 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:36:51 2014] [debug] 200 OK (0.049951s, 20.020/s). +[Tue Mar 25 10:36:51 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:51 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:51 2014] [debug] 200 OK (0.002135s, 468.384/s). +[Tue Mar 25 10:36:51 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:51 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:51 2014] [debug] 200 OK (0.006102s, 163.881/s). +[Tue Mar 25 10:36:51 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:51 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:51 2014] [debug] 200 OK (0.002193s, 455.996/s). +[Tue Mar 25 10:36:51 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:51 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:51 2014] [debug] 200 OK (0.005996s, 166.778/s). +[Tue Mar 25 10:36:51 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:51 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:51 2014] [debug] 200 OK (0.002114s, 473.037/s). +[Tue Mar 25 10:36:52 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:52 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:52 2014] [debug] 200 OK (0.004322s, 231.374/s). +[Tue Mar 25 10:36:52 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:36:52 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:36:52 2014] [debug] 200 OK (0.006972s, 143.431/s). +[Tue Mar 25 10:37:01 2014] [debug] Your secret passphrase needs to be changed!!! +[Tue Mar 25 10:37:01 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:37:01 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:37:01 2014] [debug] Rendering template "example/welcome.html.ep". +[Tue Mar 25 10:37:01 2014] [debug] Rendering template "layouts/default.html.ep". +[Tue Mar 25 10:37:01 2014] [debug] 200 OK (0.046813s, 21.362/s). +[Tue Mar 25 10:40:46 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:40:46 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:40:46 2014] [debug] 200 OK (0.005177s, 193.162/s). +[Tue Mar 25 10:44:10 2014] [debug] GET / (Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:26.0) Gecko/20100101 Firefox/26.0). +[Tue Mar 25 10:44:10 2014] [debug] Dispatching "OpenAccess::Example->welcome". +[Tue Mar 25 10:44:10 2014] [debug] 200 OK (0.003604s, 277.469/s). diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..8432273 --- /dev/null +++ b/public/index.html @@ -0,0 +1,10 @@ + + + Welcome to the Mojolicious real-time web framework! + + +

Welcome to the Mojolicious real-time web framework!

+ This is the static document "public/index.html", + click here to get back to the start. + + diff --git a/script/db_gen/access_log_example.txt b/script/db_gen/access_log_example.txt new file mode 100755 index 0000000..858a1cd --- /dev/null +++ b/script/db_gen/access_log_example.txt @@ -0,0 +1,916 @@ +16:17:55 3/1/14 SAT User 7376216 presented tag at reader 2 +16:17:55 3/1/14 SAT User not found +16:17:56 3/1/14 SAT User denied access at reader 2 +16:18:55 3/1/14 SAT User 7374220 presented tag at reader 2 +16:18:55 3/1/14 SAT User not found +16:18:56 3/1/14 SAT User denied access at reader 2 +17:15:17 3/1/14 SAT User 7359339 presented tag at reader 2 +17:15:17 3/1/14 SAT User not found +17:15:18 3/1/14 SAT User denied access at reader 2 +Invalid command. Press '?' for help. +Valid commands are: +(d)ate, (s)show user, (m)odify user +(a)ll user dump,(r)emove_user ,(o)open door +(u)nlock all doors,(l)lock all doors +(1)disarm_alarm, (2)arm_alarm,(3)train_alarm (9)show_status +(t)ime set + +(e)nable - enable or disable priveleged mode +(h)ardware Test - Run the hardware test +Invalid command. Press '?' for help. +Invalid command. Press '?' for help. +Invalid command. Press '?' for help. +Valid commands are: +(d)ate, (s)show user, (m)odify user +(a)ll user dump,(r)emove_user ,(o)open door +(u)nlock all doors,(l)lock all doors +(1)disarm_alarm, (2)arm_alarm,(3)train_alarm (9)show_status +(t)ime set + +(e)nable - enable or disable priveleged mode +(h)ardware Test - Run the hardware test +Invalid command. Press '?' for help. +Invalid command. Press '?' for help. +Invalid command. Press '?' for help. +17:16:15 3/1/14 SAT User dump started. +UserNum: Usermask: TagNum: +0 0 0 + +1 0 0 + +2 255 0 + +3 24 15068900 + +4 255 4294967295 + +5 255 4294967295 + +6 255 4294967295 + +7 24 7375475 + +8 255 4294967295 + +9 255 4294967295 + +10 255 4294967295 + +11 255 4294967295 + +12 255 4294967295 + +13 255 4294967295 + +14 255 4294967295 + +15 255 4294967295 + +16 255 4294967295 + +17 255 4294967295 + +18 255 4294967295 + +19 255 4294967295 + +20 255 4294967295 + +21 255 4294967295 + +22 255 4294967295 + +23 24 14244082 + +24 255 4294967295 + +25 24 7365501 + +26 255 4294967295 + +27 24 7362919 + +28 255 4294967295 + +29 255 4294967295 + +30 255 4294967295 + +31 255 4294967295 + +32 255 4294967295 + +33 24 7365501 + +34 255 4294967295 + +35 255 4294967295 + +36 255 4294967295 + +37 255 4294967295 + +38 255 4294967295 + +39 255 4294967295 + +40 255 4294967295 + +41 255 4294967295 + +42 255 4294967295 + +43 255 4294967295 + +44 255 4294967295 + +45 255 4294967295 + +46 255 4294967295 + +47 255 4294967295 + +48 255 4294967295 + +49 255 4294967295 + +50 255 4294967295 + +51 255 4294967295 + +52 255 4294967295 + +53 255 4294967295 + +54 255 4294967295 + +55 0 0 + +56 255 4294967295 + +57 255 4294967295 + +58 255 4294967295 + +59 255 4294967295 + +60 255 4294967295 + +61 255 4294967295 + +62 255 4294967295 + +63 255 4294967295 + +64 255 4294967295 + +65 255 4294967295 + +66 255 4294967295 + +67 24 7362062 + +68 255 4294967295 + +69 255 4294967295 + +70 255 4294967295 + +71 255 4294967295 + +72 255 4294967295 + +73 255 4294967295 + +74 255 4294967295 + +75 255 4294967295 + +76 255 4294967295 + +77 255 4294967295 + +78 255 4294967295 + +79 255 4294967295 + +80 255 4294967295 + +81 255 4294967295 + +82 255 4294967295 + +83 255 4294967295 + +84 255 4294967295 + +85 255 4294967295 + +86 255 4294967295 + +87 255 4294967295 + +88 255 4294967295 + +89 255 4294967295 + +90 255 4294967295 + +91 255 4294967295 + +92 255 4294967295 + +93 255 4294967295 + +94 255 4294967295 + +95 255 4294967295 + +96 255 4294967295 + +97 255 4294967295 + +98 255 4294967295 + +99 24 7371752 + +100 255 4294967295 + +101 255 4294967295 + +102 255 4294967295 + +103 255 4294967295 + +104 255 4294967295 + +105 255 4294967295 + +106 255 4294967295 + +107 255 4294967295 + +108 255 4294967295 + +109 255 4294967295 + +110 255 4294967295 + +111 255 4294967295 + +112 255 4294967295 + +113 255 4294967295 + +114 255 4294967295 + +115 255 4294967295 + +116 255 4294967295 + +117 255 4294967295 + +118 255 4294967295 + +119 255 4294967295 + +120 255 4294967295 + +121 255 4294967295 + +122 255 4294967295 + +123 255 4294967295 + +124 255 4294967295 + +125 255 4294967295 + +126 255 4294967295 + +127 255 4294967295 + +128 255 4294967295 + +129 255 4294967295 + +130 255 4294967295 + +131 255 4294967295 + +132 255 4294967295 + +133 255 4294967295 + +134 255 4294967295 + +135 255 4294967295 + +136 255 4294967295 + +137 255 4294967295 + +138 255 4294967295 + +139 255 4294967295 + +140 255 4294967295 + +141 255 4294967295 + +142 255 4294967295 + +143 255 4294967295 + +144 255 4294967295 + +145 255 4294967295 + +146 255 4294967295 + +147 255 4294967295 + +148 255 4294967295 + +149 255 4294967295 + +150 24 7360216 + +151 255 4294967295 + +152 255 4294967295 + +153 255 4294967295 + +154 255 4294967295 + +155 255 4294967295 + +156 255 4294967295 + +157 255 4294967295 + +158 255 4294967295 + +159 255 4294967295 + +160 255 4294967295 + +161 255 4294967295 + +162 255 4294967295 + +163 255 4294967295 + +164 255 4294967295 + +165 255 4294967295 + +166 255 4294967295 + +167 255 4294967295 + +168 255 4294967295 + +169 255 4294967295 + +170 255 4294967295 + +171 255 4294967295 + +172 255 4294967295 + +173 255 4294967295 + +174 255 4294967295 + +175 255 4294967295 + +176 255 4294967295 + +177 255 4294967295 + +178 255 4294967295 + +179 255 4294967295 + +180 255 4294967295 + +181 255 4294967295 + +182 255 4294967295 + +183 255 4294967295 + +184 255 4294967295 + +185 255 4294967295 + +186 255 4294967295 + +187 255 4294967295 + +188 255 4294967295 + +189 255 4294967295 + +190 255 4294967295 + +191 255 4294967295 + +192 255 4294967295 + +193 255 4294967295 + +194 255 4294967295 + +195 255 4294967295 + +196 255 4294967295 + +197 255 4294967295 + +198 255 4294967295 + +199 24 0 + +199 24 0 +17:16:46 3/1/14 SAT User 199 successfully modified +199 24 7359339 +17:17:4 3/1/14 SAT User 7359339 presented tag at reader 2 +17:17:4 3/1/14 SAT 17:17:4 3/1/14 SAT User 199 authenticated. +17:17:4 3/1/14 SAT User granted access at reader 2 +17:17:4 3/1/14 SAT Alarm level changed to 0 +17:17:4 3/1/14 SAT Alarm armed level changed to 0 +Door 2 unlocked +17:17:9 3/1/14 SAT Command 0 entered at reader 2 +Door 2 locked +17:18:6 3/1/14 SAT User 7359339 presented tag at reader 1 +17:18:6 3/1/14 SAT 17:18:6 3/1/14 SAT User 199 authenticated. +17:18:6 3/1/14 SAT User granted access at reader 1 +17:18:6 3/1/14 SAT Alarm level changed to 0 +17:18:6 3/1/14 SAT Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +17:18:18 3/1/14 SAT User 7359339 presented tag at reader 1 +17:18:18 3/1/14 SAT 17:18:18 3/1/14 SAT User 199 authenticated. +17:18:18 3/1/14 SAT User granted access at reader 1 +17:18:18 3/1/14 SAT Alarm level changed to 0 +17:18:18 3/1/14 SAT Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +17:18:59 3/1/14 SAT User 7359339 presented tag at reader 1 +17:18:59 3/1/14 SAT 17:18:59 3/1/14 SAT User 199 authenticated. +17:18:59 3/1/14 SAT User granted access at reader 1 +17:18:59 3/1/14 SAT Alarm level changed to 0 +17:18:59 3/1/14 SAT Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +18:1:24 3/1/14 SAT User 7359339 presented tag at reader 1 +18:1:24 3/1/14 SAT 18:1:24 3/1/14 SAT User 199 authenticated. +18:1:24 3/1/14 SAT User granted access at reader 1 +18:1:24 3/1/14 SAT Alarm level changed to 0 +18:1:24 3/1/14 SAT Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +19:40:3 3/1/14 SAT User 7359339 presented tag at reader 2 +19:40:4 3/1/14 SAT 19:40:4 3/1/14 SAT User 199 authenticated. +19:40:4 3/1/14 SAT User granted access at reader 2 +19:40:4 3/1/14 SAT Alarm level changed to 0 +19:40:4 3/1/14 SAT Alarm armed level changed to 0 +Door 2 unlocked +19:40:9 3/1/14 SAT Command 0 entered at reader 2 +Door 2 locked +16:45:39 3/2/14 SUN User 7359339 presented tag at reader 1 +16:45:39 3/2/14 SUN 16:45:39 3/2/14 SUN User 199 authenticated. +16:45:39 3/2/14 SUN User granted access at reader 1 +16:45:39 3/2/14 SUN Alarm level changed to 0 +16:45:39 3/2/14 SUN Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +18:23:18 3/2/14 SUN User 7359339 presented tag at reader 1 +18:23:18 3/2/14 SUN 18:23:18 3/2/14 SUN User 199 authenticated. +18:23:18 3/2/14 SUN User granted access at reader 1 +18:23:18 3/2/14 SUN Alarm level changed to 0 +18:23:18 3/2/14 SUN Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +12:46:22 3/5/14 WED User 15068900 presented tag at reader 1 +12:46:22 3/5/14 WED 12:46:22 3/5/14 WED User 3 authenticated. +12:46:22 3/5/14 WED User granted access at reader 1 +12:46:22 3/5/14 WED Alarm level changed to 0 +12:46:22 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +12:53:37 3/5/14 WED User 15068900 presented tag at reader 1 +12:53:37 3/5/14 WED 12:53:37 3/5/14 WED User 3 authenticated. +12:53:37 3/5/14 WED User granted access at reader 1 +12:53:37 3/5/14 WED Alarm level changed to 0 +12:53:37 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +12:58:20 3/5/14 WED User 15068900 presented tag at reader 1 +12:58:20 3/5/14 WED 12:58:20 3/5/14 WED User 3 authenticated. +12:58:20 3/5/14 WED User granted access at reader 1 +12:58:20 3/5/14 WED Alarm level changed to 0 +12:58:20 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +19:54:20 3/5/14 WED User 7359339 presented tag at reader 1 +19:54:20 3/5/14 WED 19:54:20 3/5/14 WED User 199 authenticated. +19:54:20 3/5/14 WED User granted access at reader 1 +19:54:20 3/5/14 WED Alarm level changed to 0 +19:54:20 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +19:55:3 3/5/14 WED User 7359339 presented tag at reader 2 +19:55:3 3/5/14 WED 19:55:3 3/5/14 WED User 199 authenticated. +19:55:3 3/5/14 WED User granted access at reader 2 +19:55:3 3/5/14 WED Alarm level changed to 0 +19:55:3 3/5/14 WED Alarm armed level changed to 0 +Door 2 unlocked +19:55:8 3/5/14 WED Command 0 entered at reader 2 +Door 2 locked +20:4:51 3/5/14 WED User 7359339 presented tag at reader 1 +20:4:51 3/5/14 WED 20:4:51 3/5/14 WED User 199 authenticated. +20:4:51 3/5/14 WED User granted access at reader 1 +20:4:51 3/5/14 WED Alarm level changed to 0 +20:4:51 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +20:22:26 3/5/14 WED User 7359339 presented tag at reader 1 +20:22:26 3/5/14 WED 20:22:26 3/5/14 WED User 199 authenticated. +20:22:26 3/5/14 WED User granted access at reader 1 +20:22:26 3/5/14 WED Alarm level changed to 0 +20:22:26 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +Invalid command.Invalid elp. +UserNum: Usermas55 42949UserNum:UserNum: Usermas0 + +k: TagNu967295 +255 4294255 4294UserNum:255 429455 4294920 255 40 24 73521 255 4:58 3/5UserNum:4 735 +48 3/5/90 24 730 24 73621:39:7 3/5/14 WED User 7365345 presented tag at reader 1 +21:39:7 3/5/14 WED 21:39:7 3/5/14 WED User 90 authenticated. +21:39:7 3/5/14 WED User granted access at reader 1 +21:39:7 3/5/14 WED Alarm level changed to 0 +21:39:7 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +21:39:15 3/5/14 WED User 7369198 presented tag at reader 1 +21:39:15 3/5/14 WED 21:39:15 3/5/14 WED User 91 authenticated. +21:39:15 3/5/14 WED User granted access at reader 1 +21:39:15 3/5/14 WED Alarm level changed to 0 +21:39:15 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +21:52:31 3/5/14 WED User 7354634 presented tag at reader 1 +21:52:31 3/5/14 WED 21:52:31 3/5/14 WED User 20 authenticated. +21:52:31 3/5/14 WED User granted access at reader 1 +21:52:31 3/5/14 WED Alarm level changed to 0 +21:52:31 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +21:52:39 3/5/14 WED User 7357456 presented tag at reader 1 +21:52:39 3/5/14 WED User not found +21:52:41 3/5/14 WED User denied access at reader 1 +21:52:43 3/5/14 WED User 7357456 presented tag at reader 1 +21:52:43 3/5/14 WED User not found +21:52:44 3/5/14 WED User denied access at reader 1 +21:52:47 3/5/14 WED User 7369198 presented tag at reader 1 +21:52:47 3/5/14 WED 21:52:47 3/5/14 WED User 91 authenticated. +21:52:47 3/5/14 WED User granted access at reader 1 +21:52:48 3/5/14 WED Alarm level changed to 0 +21:52:48 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +21:52:55 3/5/14 WED User 7365345 presented tag at reader 1 +21:52:55 3/5/14 WED 21:52:55 3/5/14 WED User 90 authenticated. +21:52:55 3/5/14 WED User granted access at reader 1 +21:52:55 3/5/14 WED Alarm level changed to 0 +21:52:55 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +21:53:3 3/5/14 WED User 7354634 presented tag at reader 1 +21:53:3 3/5/14 WED 21:53:3 3/5/14 WED User 20 authenticated. +21:53:3 3/5/14 WED User granted access at reader 1 +21:53:4 3/5/14 WED Alarm level changed to 0 +21:53:4 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +21:53:11 3/5/14 WED User 7357456 presented tag at reader 1 +21:53:11 3/5/14 WED User not found +21:53:12 3/5/14 WED User denied access at reader 1 +21:53:14 3/5/14 WED User 7357456 presented tag at reader 1 +21:53:14 3/5/14 WED User not found +21:53:15 3/5/14 WED User denied access at reader 1 +21:53:21 3/5/14 WED User 7354634 presented tag at reader 1 +21:53:21 3/5/14 WED 21:53:21 3/5/14 WED User 20 authenticated. +21:53:21 3/5/14 WED User granted access at reader 1 +21:53:21 3/5/14 WED Alarm level changed to 0 +21:53:21 3/5/14 WED Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +11:52:51 3/6/14 THU User 7357456 presented tag at reader 1 +11:52:52 3/6/14 THU User not found +11:52:53 3/6/14 THU User denied access at reader 1 +11:52:54 3/6/14 THU User 7357456 presented tag at reader 1 +11:52:54 3/6/14 THU User not found +11:52:55 3/6/14 THU User denied access at reader 1 +15:6:26 3/6/14 THU User 7357456 presented tag at reader 1 +15:6:26 3/6/14 THU User not found +15:6:27 3/6/14 THU User denied access at reader 1 +15:6:29 3/6/14 THU User 7357456 presented tag at reader 1 +15:6:29 3/6/14 THU User not found +15:6:30 3/6/14 THU User denied access at reader 1 +15:6:32 3/6/14 THU User 7357456 presented tag at reader 1 +15:6:32 3/6/14 THU User not found +15:6:33 3/6/14 THU User denied access at reader 1 +15:6:42 3/6/14 THU User 7357456 presented tag at reader 1 +15:6:42 3/6/14 THU User not found +15:6:43 3/6/14 THU User denied access at reader 1 +15:16:40 3/6/14 THU User 7357456 presented tag at reader 2 +15:16:40 3/6/14 THU User not found +15:16:41 3/6/14 THU User denied access at reader 2 +15:16:41 3/6/14 THU User 7357456 presented tag at reader 2 +15:16:41 3/6/14 THU User not found +15:16:42 3/6/14 THU User denied access at reader 2 +15:16:44 3/6/14 THU User 7357456 presented tag at reader 2 +15:16:44 3/6/14 THU User not found +15:16:45 3/6/14 THU User denied access at reader 2 +15:16:52 3/6/14 THU User 11192164 presented tag at reader 1 +15:16:52 3/6/14 THU User not found +15:16:53 3/6/14 THU User denied access at reader 1 +15:16:53 3/6/14 THU User 7357456 presented tag at reader 2 +15:16:54 3/6/14 THU User not found +15:16:55 3/6/14 THU User denied access at reader 2 +15:16:55 3/6/14 THU User 11192164 presented tag at reader 1 +15:16:55 3/6/14 THU User not found +15:16:56 3/6/14 THU User denied access at reader 1 +15:16:57 3/6/14 THU User 7357456 presented tag at reader 2 +15:16:57 3/6/14 THU User not found +15:16:58 3/6/14 THU User denied access at reader 2 +15:17:0 3/6/14 THU User 7354634 presented tag at reader 1 +15:17:0 3/6/14 THU 15:17:0 3/6/14 THU User 20 authenticated. +15:17:0 3/6/14 THU User granted access at reader 1 +15:17:0 3/6/14 THU Alarm level changed to 0 +15:17:0 3/6/14 THU Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +15:33:9 3/6/14 THU User 7357456 presented tag at reader 2 +15:33:9 3/6/14 THU User not found +15:33:10 3/6/14 THU User denied access at reader 2 +15:33:13 3/6/14 THU User 7357456 presented tag at reader 2 +15:33:14 3/6/14 THU User not found +15:33:15 3/6/14 THU User denied access at reader 2 +15:33:16 3/6/14 THU User 7357456 presented tag at reader 2 +15:33:17 3/6/14 THU User not found +15:33:18 3/6/14 THU User denied access at reader 2 +15:33:20 3/6/14 THU User 7357456 presented tag at reader 2 +15:33:20 3/6/14 THU User not found +15:33:21 3/6/14 THU User denied access at reader 2 +15:33:30 3/6/14 THU User 7357456 presented tag at reader 2 +15:33:30 3/6/14 THU User not found +15:33:31 3/6/14 THU User denied access at reader 2 +15:34:0 3/6/14 THU User 7357456 presented tag at reader 1 +15:34:0 3/6/14 THU User not found +15:34:1 3/6/14 THU User denied access at reader 1 +15:34:2 3/6/14 THU User 7357456 presented tag at reader 1 +15:34:2 3/6/14 THU User not found +15:34:3 3/6/14 THU User denied access at reader 1 +15:34:4 3/6/14 THU User 7357456 presented tag at reader 1 +15:34:4 3/6/14 THU User not found +15:34:5 3/6/14 THU User denied access at reader 1 +15:34:8 3/6/14 THU User 7357456 presented tag at reader 1 +15:34:8 3/6/14 THU User not found +15:34:9 3/6/14 THU User denied access at reader 1 +15:34:10 3/6/14 THU User 7357456 presented tag at reader 1 +15:34:10 3/6/14 THU User not found +15:34:11 3/6/14 THU User denied access at reader 1 +15:34:12 3/6/14 THU User 7357456 presented tag at reader 1 +15:34:12 3/6/14 THU User not found +15:34:13 3/6/14 THU User denied access at reader 1 +15:34:17 3/6/14 THU User 7354634 presented tag at reader 2 +15:34:17 3/6/14 THU 15:34:17 3/6/14 THU User 20 authenticated. +15:34:17 3/6/14 THU User granted access at reader 2 +15:34:17 3/6/14 THU Alarm level changed to 0 +15:34:17 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:34:22 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:34:27 3/6/14 THU User 7357456 presented tag at reader 1 +15:34:27 3/6/14 THU User not found +15:34:28 3/6/14 THU User denied access at reader 1 +15:34:29 3/6/14 THU User 7354634 presented tag at reader 2 +15:34:30 3/6/14 THU 15:34:30 3/6/14 THU User 20 authenticated. +15:34:30 3/6/14 THU User granted access at reader 2 +15:34:30 3/6/14 THU Alarm level changed to 0 +15:34:30 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:34:35 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:34:47 3/6/14 THU User 7354634 presented tag at reader 1 +15:34:47 3/6/14 THU 15:34:47 3/6/14 THU User 20 authenticated. +15:34:47 3/6/14 THU User granted access at reader 1 +15:34:47 3/6/14 THU Alarm level changed to 0 +15:34:47 3/6/14 THU Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +15:34:56 3/6/14 THU User 7354634 presented tag at reader 1 +15:34:56 3/6/14 THU 15:34:56 3/6/14 THU User 20 authenticated. +15:34:56 3/6/14 THU User granted access at reader 1 +15:34:56 3/6/14 THU Alarm level changed to 0 +15:34:56 3/6/14 THU Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +15:35:5 3/6/14 THU User 7354634 presented tag at reader 1 +15:35:5 3/6/14 THU 15:35:5 3/6/14 THU User 20 authenticated. +15:35:5 3/6/14 THU User granted access at reader 1 +15:35:5 3/6/14 THU Alarm level changed to 0 +15:35:5 3/6/14 THU Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +15:35:20 3/6/14 THU User 7354634 presented tag at reader 1 +15:35:20 3/6/14 THU 15:35:20 3/6/14 THU User 20 authenticated. +15:35:20 3/6/14 THU User granted access at reader 1 +15:35:20 3/6/14 THU Alarm level changed to 0 +15:35:20 3/6/14 THU Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +15:35:29 3/6/14 THU User 7357456 presented tag at reader 1 +15:35:29 3/6/14 THU User not found +15:35:30 3/6/14 THU User denied access at reader 1 +15:35:33 3/6/14 THU User 7357456 presented tag at reader 1 +15:35:33 3/6/14 THU User not found +15:35:34 3/6/14 THU User denied access at reader 1 +15:35:35 3/6/14 THU User 7357456 presented tag at reader 1 +15:35:35 3/6/14 THU User not found +15:35:36 3/6/14 THU User denied access at reader 1 +15:35:38 3/6/14 THU User 7357456 presented tag at reader 1 +15:35:38 3/6/14 THU User not found +15:35:39 3/6/14 THU User denied access at reader 1 +15:35:48 3/6/14 THU User 7357456 presented tag at reader 1 +15:35:48 3/6/14 THU User not found +15:35:49 3/6/14 THU User denied access at reader 1 +15:35:58 3/6/14 THU User 7357456 presented tag at reader 1 +15:35:58 3/6/14 THU User not found +15:35:59 3/6/14 THU User denied access at reader 1 +15:36:1 3/6/14 THU User 7354634 presented tag at reader 1 +15:36:1 3/6/14 THU 15:36:1 3/6/14 THU User 20 authenticated. +15:36:1 3/6/14 THU User granted access at reader 1 +15:36:1 3/6/14 THU Alarm level changed to 0 +15:36:1 3/6/14 THU Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +15:36:19 3/6/14 THU User 7354634 presented tag at reader 2 +15:36:19 3/6/14 THU 15:36:19 3/6/14 THU User 20 authenticated. +15:36:19 3/6/14 THU User granted access at reader 2 +15:36:19 3/6/14 THU Alarm level changed to 0 +15:36:19 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:36:24 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:36:29 3/6/14 THU User 7354634 presented tag at reader 2 +15:36:30 3/6/14 THU 15:36:30 3/6/14 THU User 20 authenticated. +15:36:30 3/6/14 THU User granted access at reader 2 +15:36:30 3/6/14 THU Alarm level changed to 0 +15:36:30 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:36:35 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:36:36 3/6/14 THU User 7357456 presented tag at reader 2 +15:36:37 3/6/14 THU User not found +15:36:38 3/6/14 THU User denied access at reader 2 +15:36:38 3/6/14 THU User 7357456 presented tag at reader 2 +15:36:39 3/6/14 THU User not found +15:36:40 3/6/14 THU User denied access at reader 2 +15:36:40 3/6/14 THU User 7357456 presented tag at reader 2 +15:36:40 3/6/14 THU User not found +15:36:41 3/6/14 THU User denied access at reader 2 +15:36:42 3/6/14 THU User 7357456 presented tag at reader 2 +15:36:42 3/6/14 THU User not found +15:36:43 3/6/14 THU User denied access at reader 2 +15:36:44 3/6/14 THU User 11192164 presented tag at reader 2 +15:36:45 3/6/14 THU User not found +15:36:46 3/6/14 THU User denied access at reader 2 +15:37:15 3/6/14 THU User 7354634 presented tag at reader 2 +15:37:15 3/6/14 THU 15:37:15 3/6/14 THU User 20 authenticated. +15:37:15 3/6/14 THU User granted access at reader 2 +15:37:15 3/6/14 THU Alarm level changed to 0 +15:37:15 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:37:20 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:37:27 3/6/14 THU User 7354634 presented tag at reader 2 +15:37:28 3/6/14 THU 15:37:28 3/6/14 THU User 20 authenticated. +15:37:28 3/6/14 THU User granted access at reader 2 +15:37:28 3/6/14 THU Alarm level changed to 0 +15:37:28 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:37:33 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:37:44 3/6/14 THU User 7357456 presented tag at reader 1 +15:37:44 3/6/14 THU User not found +15:37:45 3/6/14 THU User denied access at reader 1 +15:37:46 3/6/14 THU User 7357456 presented tag at reader 1 +15:37:46 3/6/14 THU User not found +15:37:47 3/6/14 THU User denied access at reader 1 +15:37:49 3/6/14 THU User 7357456 presented tag at reader 1 +15:37:49 3/6/14 THU User not found +15:37:50 3/6/14 THU User denied access at reader 1 +15:37:51 3/6/14 THU User 7357456 presented tag at reader 1 +15:37:51 3/6/14 THU User not found +15:37:52 3/6/14 THU User denied access at reader 1 +15:37:54 3/6/14 THU User 7357456 presented tag at reader 1 +15:37:54 3/6/14 THU User not found +15:37:55 3/6/14 THU User denied access at reader 1 +15:37:55 3/6/14 THU User 7357456 presented tag at reader 1 +15:37:55 3/6/14 THU User not found +15:37:56 3/6/14 THU User denied access at reader 1 +15:37:57 3/6/14 THU User 7357456 presented tag at reader 1 +15:37:57 3/6/14 THU User not found +15:37:58 3/6/14 THU User denied access at reader 1 +15:38:1 3/6/14 THU User 7357456 presented tag at reader 1 +15:38:1 3/6/14 THU User not found +15:38:2 3/6/14 THU User denied access at reader 1 +15:38:5 3/6/14 THU User 7357456 presented tag at reader 1 +15:38:5 3/6/14 THU User not found +15:38:6 3/6/14 THU User denied access at reader 1 +15:38:7 3/6/14 THU User 7357456 presented tag at reader 1 +15:38:7 3/6/14 THU User not found +15:38:8 3/6/14 THU User denied access at reader 1 +15:38:9 3/6/14 THU User 7354634 presented tag at reader 2 +15:38:9 3/6/14 THU 15:38:9 3/6/14 THU User 20 authenticated. +15:38:9 3/6/14 THU User granted access at reader 2 +15:38:9 3/6/14 THU Alarm level changed to 0 +15:38:9 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:38:14 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:38:15 3/6/14 THU User 7357456 presented tag at reader 1 +15:38:15 3/6/14 THU User not found +15:38:16 3/6/14 THU User denied access at reader 1 +15:38:16 3/6/14 THU User 7354634 presented tag at reader 2 +15:38:17 3/6/14 THU 15:38:17 3/6/14 THU User 20 authenticated. +15:38:17 3/6/14 THU User granted access at reader 2 +15:38:17 3/6/14 THU Alarm level changed to 0 +15:38:17 3/6/14 THU Alarm armed level changed to 0 +Door 2 unlocked +15:38:22 3/6/14 THU Command 0 entered at reader 2 +Door 2 locked +15:43:49 3/6/14 THU User 7357456 presented tag at reader 2 +15:43:50 3/6/14 THU User not found +15:43:51 3/6/14 THU User denied access at reader 2 +15:43:51 3/6/14 THU User 7357456 presented tag at reader 2 +15:43:52 3/6/14 THU User not found +15:43:53 3/6/14 THU User denied access at reader 2 +15:43:57 3/6/14 THU User 7357456 presented tag at reader 1 +15:43:57 3/6/14 THU User not found +15:43:58 3/6/14 THU User denied access at reader 1 +15:44:0 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:0 3/6/14 THU User not found +15:44:1 3/6/14 THU User denied access at reader 1 +15:44:3 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:3 3/6/14 THU User not found +15:44:4 3/6/14 THU User denied access at reader 1 +15:44:4 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:4 3/6/14 THU User not found +15:44:5 3/6/14 THU User denied access at reader 1 +15:44:9 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:9 3/6/14 THU User not found +15:44:10 3/6/14 THU User denied access at reader 1 +15:44:10 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:10 3/6/14 THU User not found +15:44:11 3/6/14 THU User denied access at reader 1 +15:44:16 3/6/14 THU User 7354634 presented tag at reader 1 +15:44:16 3/6/14 THU 15:44:16 3/6/14 THU User 20 authenticated. +15:44:16 3/6/14 THU User granted access at reader 1 +15:44:16 3/6/14 THU Alarm level changed to 0 +15:44:16 3/6/14 THU Alarm armed level changed to 0 +Door 1 unlocked +Door 1 locked +15:44:26 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:26 3/6/14 THU User not found +15:44:27 3/6/14 THU User denied access at reader 1 +15:44:28 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:28 3/6/14 THU User not found +15:44:29 3/6/14 THU User denied access at reader 1 +15:44:30 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:30 3/6/14 THU User not found +15:44:31 3/6/14 THU User denied access at reader 1 +15:44:32 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:32 3/6/14 THU User not found +15:44:33 3/6/14 THU User denied access at reader 1 +15:44:39 3/6/14 THU User 7357456 presented tag at reader 1 +15:44:39 3/6/14 THU User not found +15:44:40 3/6/14 THU User denied access at reader 1 +Invalid elp. +re: +(d)Invalid elp. +UserNum:k: TagNu21 24 736 + +Invalid ?' for hInvalid Valid coate, (s)e set ){ ... } + +# если откроешь порт как дескриптор - он и будет всегда крутиться +# ну и запускаешь из крона например 2>&1 \ No newline at end of file diff --git a/script/db_gen/parse_in_db.pl b/script/db_gen/parse_in_db.pl new file mode 100755 index 0000000..6cc2e74 --- /dev/null +++ b/script/db_gen/parse_in_db.pl @@ -0,0 +1,100 @@ +#!/usr/bin/perl +use Tie::File; +use Data::Dumper; +use DBI; + +my $dbh = DBI->connect('DBI:mysql:openaccess', 'root', 'toor') || die "Could not connect to database: $DBI::errstr"; +my $sth = $dbh->prepare('SELECT * FROM log'); +$sth->execute(); +my $result = $sth->fetchall_hashref("created"); + +print "ALREADY IN DB: \n"; +warn Dumper $result; +print "\n\n"; + +# general syntax +#INSERT INTO table_name (column1,column2,column3,...) VALUES (value1,value2,value3,...); +# db: id, date (mysql_iso), tag (номер тега), user (0.200), reader (1.2), type (0 - checkin, 1 - entrance) + +$sth->finish(); + +#2009-06-04 19:14:20 sql timestamp format + +# 20:4:51 3/5/14 WED User 7359339 presented tag at reader 1 +# 20:4:51 3/5/14 WED 20:4:51 3/5/14 WED User 199 authenticated. +# 20:4:51 3/5/14 WED User granted access at reader 1 +# 20:4:51 3/5/14 WED Alarm level changed to 0 +# 20:4:51 3/5/14 WED Alarm armed level changed to 0 +# Door 1 unlocked +# Door 1 locked + +# 15:38:1 3/6/14 THU User 7357456 presented tag at reader 1 +# 15:38:1 3/6/14 THU User not found + +# http://stackoverflow.com/questions/14343914/how-to-look-at-the-next-line-of-a-file-in-perl +# http://habrahabr.ru/post/61391/ +#http://stackoverflow.com/questions/6978799/comparing-two-hashes-with-the-keys-and-values + + +tie my @file, 'Tie::File', "access_log_example.txt" or die $!; + +my $hash; +my @arr; +my $i=0; + +for my $linenr (0 .. $#file) { # loop over line numbers + if ($file[$linenr] =~ /^(\d{1,2}:\d{1,2}:\d{1,2})\s{2}(\d{1,2}\/\d{1,2}\/\d{1,2})\s([A-Z]{3})\sUser\s(\d{7})\spresented\stag\sat\sreader\s(\d{1})/) { + #print "date: ".$2." time :".$1." day : ".$3." user : ".$4." tag : ".$5."\n"; + my @date = split('/', $2); + if ( length $date[0] == 1 ) { $date[0] = "0".$date[0]; } + if ( length $date[1] == 1 ) { $date[1] = "0".$date[1]; } + my $true_date = "20".$date[2]."-".$date[0]."-".$date[1]; + #$true_date =~ s/\//\-/g; + my @time = split(':', $1); + for (@time) { + if (length $_ == 1) { $_ = "0".$_ ; } + } + + my $true_time = $time[0].":".$time[1].":".$time[2]; + + $hash->{'created'} = $true_date." ".$true_time; + $hash->{'tag'} = $4; + $hash->{'reader'} = $5; + + if ($file[$linenr+1] =~ /User\s(\d{1,3})\sauthenticated/) { + $hash->{'user'} = $1; + } + + if ($file[$linenr+1] =~ /User\snot\sfound/) { + $hash->{'user'} = "null"; + $hash->{'type'} = "0"; + } + + if ($file[$linenr+2] =~ /granted access/) { + $hash->{'type'} = "1"; # entrance + } + + push @arr, $hash; + $hash={}; + } + +} +untie @file; + +my $from_file = { map { $_->{'created'} => $_ } @arr }; + + +for (sort keys %$from_file ) { + if (exists $result->{$_} ) { + print "do nothing\n"; + } + else { + $sth = $dbh->prepare("INSERT into log (created,tag,user,reader,type) VALUES (?, ?, ?, ?, ?)") or die $dbh->errstr; + $sth->execute($from_file->{$_}->{'created'}, $from_file->{$_}->{'tag'}, $from_file->{$_}->{'user'}, $from_file->{$_}->{'reader'}, $from_file->{$_}->{'type'}) or die $sth->errstr; + print "insert"; + } +} + + +$dbh->disconnect(); +#print scalar @arr; \ No newline at end of file diff --git a/script/db_gen/users.sql b/script/db_gen/users.sql new file mode 100644 index 0000000..4dff2d5 --- /dev/null +++ b/script/db_gen/users.sql @@ -0,0 +1,47 @@ +-- phpMyAdmin SQL Dump +-- version 4.0.6deb1 +-- http://www.phpmyadmin.net +-- +-- Хост: localhost +-- Время создания: Мар 23 2014 г., 11:39 +-- Версия сервера: 5.5.35-0ubuntu0.13.10.2 +-- Версия PHP: 5.5.3-1ubuntu2.2 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; + +-- +-- База данных: `openaccess` +-- + +-- -------------------------------------------------------- + +-- +-- Структура таблицы `users` +-- + +CREATE TABLE IF NOT EXISTS `users` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) NOT NULL, + `surname` varchar(30) NOT NULL, + `tag` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; + +-- +-- Дамп данных таблицы `users` +-- + +INSERT INTO `users` (`id`, `name`, `surname`, `tag`) VALUES +(1, 'Ксения', 'Янкина', 7362919), +(2, 'Евгений', 'Дробин', 7362062); + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/script/open_access b/script/open_access new file mode 100755 index 0000000..7a01d10 --- /dev/null +++ b/script/open_access @@ -0,0 +1,21 @@ +#!/usr/bin/env perl +use Mojo::Base -strict; + +use File::Basename 'dirname'; +use File::Spec; + +use lib join '/', File::Spec->splitdir(dirname(__FILE__)), 'lib'; +use lib join '/', File::Spec->splitdir(dirname(__FILE__)), '..', 'lib'; + +# Check if Mojolicious is installed; +die <start; diff --git a/t/basic.t b/t/basic.t new file mode 100644 index 0000000..9049ed0 --- /dev/null +++ b/t/basic.t @@ -0,0 +1,10 @@ +#!/usr/bin/env perl +use Mojo::Base -strict; + +use Test::More tests => 4; +use Test::Mojo; + +use_ok 'OpenAccess'; + +my $t = Test::Mojo->new('OpenAccess'); +$t->get_ok('/welcome')->status_is(200)->content_like(qr/Mojolicious/i); diff --git a/templates/example/welcome.html.ep b/templates/example/welcome.html.ep new file mode 100644 index 0000000..5b00dd9 --- /dev/null +++ b/templates/example/welcome.html.ep @@ -0,0 +1,15 @@ +% layout 'default'; +% title 'Welcome'; + +
+
+
+

Кто здесь?

+
    + <% for (values %$users) { %> +
  • <%= $_->{'created'} =%><%= $_->{'name'} =%> <%= $_->{'surname'} =%>
  • + <% } %> +
+
+
+
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep new file mode 100644 index 0000000..76aad66 --- /dev/null +++ b/templates/layouts/default.html.ep @@ -0,0 +1,14 @@ + + + + + <%= title %> + + + + + + + <%= content %> + +