This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Wed Feb 22 01:19:20.356158 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 13369344 | |
[Wed Feb 22 01:19:20.626534 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 13369344 | |
[Wed Feb 22 01:19:25.449852 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 13893632 | |
[Wed Feb 22 01:19:30.349786 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 14155776 | |
[Wed Feb 22 01:19:35.371166 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 14155776 | |
[Wed Feb 22 01:19:39.386531 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 14417920 | |
[Wed Feb 22 01:19:43.461118 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 14680064 | |
[Wed Feb 22 01:19:47.408901 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 14942208 | |
[Wed Feb 22 01:19:51.338597 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 14942208 | |
[Wed Feb 22 01:19:54.673032 2017] [:error] [pid 8173] [client 10.0.2.2:60532] memory usage: 15204352 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once __DIR__ . '/engine/start.php'; | |
echo 'tail your log file'; | |
// Ignore user aborts and allow the script to run forever | |
ignore_user_abort(true); | |
session_write_close(); | |
set_time_limit(0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Piwik --> | |
<script type="text/javascript"> | |
var _paq = _paq || []; | |
_paq.push(["trackPageView"]); | |
_paq.push(["enableLinkTracking"]); | |
(function() { | |
var u= "https://dev.griffingroups.com/piwik/"; | |
_paq.push(["setTrackerUrl", u+"piwik.php"]); | |
_paq.push(["setSiteId", 1]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$html = <<<HTML | |
<html> | |
<head> | |
<script src="http://example.com"></script> | |
</head> | |
<body> | |
<div> | |
<script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function au_landing_init(){ | |
// provide custom video handling for au.teacherstv and slideshare | |
// these hooks are provided by my latest pull request | |
// custom_patterns gathers regex patterns to select urls | |
// custom_embed provides the embed code if a pattern is matched | |
elgg_register_plugin_hook_handler('embed_extender', 'custom_patterns', 'au_landing_embed_patterns'); | |
elgg_register_plugin_hook_handler('embed_extender', 'custom_embed', 'au_landing_embed'); | |
} |