🐘 1111js2-loader.php (Php) 4.2 KB 2016-01-08
PHP module for 1111js2 loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/home/www/wwwbuzzerstar/library/phpfastcache.php");
require_once("/home/www/wwwbuzzerstar/library/Minify.inc.php");
$seconds_to_cache = 315360000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: application/javascript; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/* Fastcache START: */
$configCache = array(
"storage" => "files",
"path" => "/home/compress/", //path for cache files
"htaccess" => true, //set htaccess protection (default: true)
"fallback" => array(
"memcache" => "files", //if memcached isn't installed use file system instead
"apc" => "files", //if apc isn't installed use file system instead
),
);
phpFastCache::setup($configCache);
$cache = new phpFastCache();
$HtmlOutputCache = $cache->get("JS2LOADER");
if (strlen($HtmlOutputCache) > 100){
echo $HtmlOutputCache;
exit(0);
}
/* Fastcache END: */
/*
include("/home/www/wwwbuzzerstar/js-new/jquery-buzzerstar.js");
include("/home/www/wwwbuzzerstar/js-new/bootstrap.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.simplyCountable.js");
include("/home/www/wwwbuzzerstar/js-new/ajax_functions_compressed_v2.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints-sticky.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.addListener.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.zaccordion.min.js");
// include("/home/www/wwwbuzzerstar/js-new/enquire.min.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.matchHeight-min.js");
... [truncated, 44 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "1111js2-loader.php",
"description": "PHP module for 1111js2 loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "4.2 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/1111js2-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 css-loader.php (Php) 1.1 KB 2016-01-08
PHP module for css loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 | <?php
$seconds_to_cache = 31536000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: text/css; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/*
include("/home/www/wwwbuzzerstar/css/basic-style.css");
include("/home/www/wwwbuzzerstar/css/normalize.css");
include("/home/www/wwwbuzzerstar/css/cssDroid.css");
*/
$buffer = "";
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css/basic-style.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css/normalize.css");
//$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css/cssDroid.css");
//Remove comments
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
//Remove space after colons
$buffer = str_replace(": ", ":", $buffer);
//Remove whitespace
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
echo $buffer;
exit(0);
?>
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "css-loader.php",
"description": "PHP module for css loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "1.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/css-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 css2-loader-simple.php (Php) 2.6 KB 2016-01-08
PHP module for css2 loader simple
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/home/www/wwwbuzzerstar/library/phpfastcache.php");
require_once("/home/www/wwwbuzzerstar/library/JavascriptMinify.inc.php");
$seconds_to_cache = 315360000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: text/css; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/* Fastcache START: */
$configCache = array(
"storage" => "files",
"path" => "/home/compress/", //path for cache files
"htaccess" => true, //set htaccess protection (default: true)
"fallback" => array(
"memcache" => "files", //if memcached isn't installed use file system instead
"apc" => "files", //if apc isn't installed use file system instead
),
);
phpFastCache::setup($configCache);
$cache = new phpFastCache();
$HtmlOutputCache = $cache->get("CSS2LOADERSIMPLE");
if (strlen($HtmlOutputCache) > 1000){
echo $HtmlOutputCache;
exit(0);
}
/* Fastcache END: */
$buffer = "";
/*
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style-color3.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/bootstrap.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/font-awesome.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/superfish.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/megafish.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/jquery.navgoco.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/owl.carousel.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/owl.theme.css");
*/
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style-color3.css");
//$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/bootstrap.css");
... [truncated, 18 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "css2-loader-simple.php",
"description": "PHP module for css2 loader simple",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "2.6 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/css2-loader-simple.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 css2-loader.php (Php) 2.6 KB 2016-01-08
PHP module for css2 loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/home/www/wwwbuzzerstar/library/phpfastcache.php");
require_once("/home/www/wwwbuzzerstar/library/JavascriptMinify.inc.php");
$seconds_to_cache = 315360000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: text/css; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/* Fastcache START: */
$configCache = array(
"storage" => "files",
"path" => "/home/compress/", //path for cache files
"htaccess" => true, //set htaccess protection (default: true)
"fallback" => array(
"memcache" => "files", //if memcached isn't installed use file system instead
"apc" => "files", //if apc isn't installed use file system instead
),
);
phpFastCache::setup($configCache);
$cache = new phpFastCache();
$HtmlOutputCache = $cache->get("CSS2LOADER");
if (strlen($HtmlOutputCache) > 100){
echo $HtmlOutputCache;
exit(0);
}
/* Fastcache END: */
$buffer = "";
/*
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style-color3.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/bootstrap.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/font-awesome.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/superfish.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/megafish.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/jquery.navgoco.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/owl.carousel.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/owl.theme.css");
*/
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style-color3.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/bootstrap.css");
... [truncated, 18 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "css2-loader.php",
"description": "PHP module for css2 loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "2.6 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/css2-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 css2-theme.php (Php) 1.6 KB 2016-01-08
PHP module for css2 theme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/home/www/wwwbuzzerstar/library/phpfastcache.php");
require_once("/home/www/wwwbuzzerstar/library/JavascriptMinify.inc.php");
$seconds_to_cache = 315360000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: text/css; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/* Fastcache START: */
$configCache = array(
"storage" => "files",
"path" => "/home/compress/", //path for cache files
"htaccess" => true, //set htaccess protection (default: true)
"fallback" => array(
"memcache" => "files", //if memcached isn't installed use file system instead
"apc" => "files", //if apc isn't installed use file system instead
),
);
phpFastCache::setup($configCache);
$cache = new phpFastCache();
$HtmlOutputCache = $cache->get("CSS2THEME");
if (strlen($HtmlOutputCache) > 100){
echo $HtmlOutputCache;
exit(0);
}
/* Fastcache END: */
$buffer = "";
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/dark-bottom.css");
$css = new Minifier();
$buffer = $css->minifyCSS($buffer);
//Remove comments
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
//Remove space after colons
$buffer = str_replace(": ", ":", $buffer);
//Remove whitespace
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
$cache->set("CSS2THEME", $buffer,3600*24*356);
... [truncated, 4 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "css2-theme.php",
"description": "PHP module for css2 theme",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "1.6 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/css2-theme.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 css2games-loader.php (Php) 1.8 KB 2016-01-08
PHP module for css2games loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 | <?php
require_once("/home/www/wwwbuzzerstar/library/JavascriptMinify.inc.php");
$css = new Minifier();
$seconds_to_cache = 31536000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: text/css; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
$buffer = "";
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/style-color3.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/bootstrap.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/font-awesome.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/superfish.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/megafish.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/jquery.navgoco.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/owl.carousel.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/owl.theme.css");
// games follow here:
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/sudoku/sudoku.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/mahjong/modal.css");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/css-new/mahjong/style.css");
$buffer = $css->minifyCSS($buffer);
//Remove comments
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
//Remove space after colons
$buffer = str_replace(": ", ":", $buffer);
//Remove whitespace
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
echo $buffer;
exit(0);
?>
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "css2games-loader.php",
"description": "PHP module for css2games loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "1.8 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/css2games-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 js-loader.php (Php) 783 bytes 2016-01-08
PHP module for js loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | <?php
$seconds_to_cache = 31536000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: application/javascript; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
include("/home/www/wwwbuzzerstar/js/jquery-buzzerstar.js");
include("/home/www/wwwbuzzerstar/js/modernizr.js");
//include("/home/www/wwwbuzzerstar/js/ajax_functions_post.js"); // wirft error
include("/home/www/wwwbuzzerstar/js/jquery.simplyCountable.js");
include("/home/www/wwwbuzzerstar/js/ajax_functions_compressed_v2.js");
//include("/home/www/wwwbuzzerstar/js/analytics.js");
exit(0);
?>
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "js-loader.php",
"description": "PHP module for js loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "783 bytes",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/js-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 js-sudoku-loader.php (Php) 833 bytes 2016-01-08
PHP module for js sudoku loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 | <?php
//require_once("/home/www/wwwbuzzerstar/library/JavascriptMinify.inc.php");
//$js = new Minifier();
$seconds_to_cache = 31536000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: application/javascript; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
//include("/home/www/wwwbuzzerstar/js-new/sudoku/board.games.js");
include("/home/www/wwwbuzzerstar/js-new/sudoku/DLX.js");
include("/home/www/wwwbuzzerstar/js-new/sudoku/jq.extentions.gz.js");
include("/home/www/wwwbuzzerstar/js-new/sudoku/main.js");
include("/home/www/wwwbuzzerstar/js-new/sudoku/sudoku.v2.6.min.js");
exit(0);
?>
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "js-sudoku-loader.php",
"description": "PHP module for js sudoku loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "833 bytes",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/js-sudoku-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 js2-loader v1.php (Php) 4.3 KB 2016-01-08
PHP module for js2 loader v1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/home/www/wwwbuzzerstar/library/phpfastcache.php");
$seconds_to_cache = 315360000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: application/javascript; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/* Fastcache START: */
$configCache = array(
"storage" => "files",
"path" => "/home/compress/", //path for cache files
"htaccess" => true, //set htaccess protection (default: true)
"fallback" => array(
"memcache" => "files", //if memcached isn't installed use file system instead
"apc" => "files", //if apc isn't installed use file system instead
),
);
phpFastCache::setup($configCache);
$cache = new phpFastCache();
$HtmlOutputCache = $cache->get("JS2LOADER");
if (strlen($HtmlOutputCache) > 100){
echo $HtmlOutputCache;
exit(0);
}
/* Fastcache END: */
/*
include("/home/www/wwwbuzzerstar/js-new/jquery-buzzerstar.js");
include("/home/www/wwwbuzzerstar/js-new/bootstrap.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.simplyCountable.js");
include("/home/www/wwwbuzzerstar/js-new/ajax_functions_compressed_v2.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints-sticky.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.addListener.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.zaccordion.min.js");
// include("/home/www/wwwbuzzerstar/js-new/enquire.min.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.matchHeight-min.js");
// include("/home/www/wwwbuzzerstar/js-new/bootstrap-slider.min.js");
// include("/home/www/wwwbuzzerstar/js-new/owl.carousel.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.navgoco.min.js");
//include("/home/www/wwwbuzzerstar/js-new/superfish.min.js");
... [truncated, 41 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "js2-loader v1.php",
"description": "PHP module for js2 loader v1",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "4.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/js2-loader v1.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 js2-loader-simple.php (Php) 4.3 KB 2016-01-08
PHP module for js2 loader simple
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/home/www/wwwbuzzerstar/library/phpfastcache.php");
$seconds_to_cache = 315360000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: application/javascript; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/* Fastcache START: */
$configCache = array(
"storage" => "files",
"path" => "/home/compress/", //path for cache files
"htaccess" => true, //set htaccess protection (default: true)
"fallback" => array(
"memcache" => "files", //if memcached isn't installed use file system instead
"apc" => "files", //if apc isn't installed use file system instead
),
);
phpFastCache::setup($configCache);
$cache = new phpFastCache();
$HtmlOutputCache = $cache->get("JS2LOADER");
if (strlen($HtmlOutputCache) > 100){
echo $HtmlOutputCache;
exit(0);
}
/* Fastcache END: */
/*
include("/home/www/wwwbuzzerstar/js-new/jquery-buzzerstar.js");
include("/home/www/wwwbuzzerstar/js-new/bootstrap.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.simplyCountable.js");
include("/home/www/wwwbuzzerstar/js-new/ajax_functions_compressed_v2.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints-sticky.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.addListener.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.zaccordion.min.js");
// include("/home/www/wwwbuzzerstar/js-new/enquire.min.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.matchHeight-min.js");
// include("/home/www/wwwbuzzerstar/js-new/bootstrap-slider.min.js");
// include("/home/www/wwwbuzzerstar/js-new/owl.carousel.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.navgoco.min.js");
//include("/home/www/wwwbuzzerstar/js-new/superfish.min.js");
... [truncated, 37 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "js2-loader-simple.php",
"description": "PHP module for js2 loader simple",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "4.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/js2-loader-simple.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 js2-loader.php (Php) 4.3 KB 2016-01-08
PHP module for js2 loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/home/www/wwwbuzzerstar/library/phpfastcache.php");
$seconds_to_cache = 315360000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: application/javascript; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/* Fastcache START: */
$configCache = array(
"storage" => "files",
"path" => "/home/compress/", //path for cache files
"htaccess" => true, //set htaccess protection (default: true)
"fallback" => array(
"memcache" => "files", //if memcached isn't installed use file system instead
"apc" => "files", //if apc isn't installed use file system instead
),
);
phpFastCache::setup($configCache);
$cache = new phpFastCache();
$HtmlOutputCache = $cache->get("JS2LOADER");
if (strlen($HtmlOutputCache) > 100){
echo $HtmlOutputCache;
exit(0);
}
/* Fastcache END: */
/*
include("/home/www/wwwbuzzerstar/js-new/jquery-buzzerstar.js");
include("/home/www/wwwbuzzerstar/js-new/bootstrap.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.simplyCountable.js");
include("/home/www/wwwbuzzerstar/js-new/ajax_functions_compressed_v2.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints.js");
// include("/home/www/wwwbuzzerstar/js-new/waypoints-sticky.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.js");
// include("/home/www/wwwbuzzerstar/js-new/matchMedia.addListener.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.zaccordion.min.js");
// include("/home/www/wwwbuzzerstar/js-new/enquire.min.js");
// include("/home/www/wwwbuzzerstar/js-new/jquery.matchHeight-min.js");
// include("/home/www/wwwbuzzerstar/js-new/bootstrap-slider.min.js");
// include("/home/www/wwwbuzzerstar/js-new/owl.carousel.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.navgoco.min.js");
//include("/home/www/wwwbuzzerstar/js-new/superfish.min.js");
... [truncated, 37 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "js2-loader.php",
"description": "PHP module for js2 loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "4.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/js2-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
🐘 js2games-loader.php (Php) 3.5 KB 2016-01-08
PHP module for js2games loader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
//require_once("/home/www/wwwbuzzerstar/library/JavascriptMinify.inc.php");
//$js = new Minifier();
$seconds_to_cache = 31536000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("content-type: application/javascript; charset: UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
/*
$buffer = "";
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/bootstrap.min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/jquery.simplyCountable.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/ajax_functions_compressed_v2.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/waypoints.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/waypoints-sticky.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/matchMedia.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/matchMedia.addListener.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/jquery.zaccordion.min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/enquire.min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/jquery.matchHeight-min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/bootstrap-slider.min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/owl.carousel.min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/jquery.navgoco.min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/superfish.min.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/custom.js");
$buffer .= file_get_contents("/home/www/wwwbuzzerstar/js-new/modernizr.js");
$buffer1 = file_get_contents("/home/www/wwwbuzzerstar/js-new/jquery-buzzerstar.js");
$buffer2 = file_get_contents("/home/www/wwwbuzzerstar/js-new/lazyload.js");
$buffer = $js->minify($buffer);
echo $buffer1.$buffer2.$buffer;
exit(0);
*/
include("/home/www/wwwbuzzerstar/js-new/jquery-buzzerstar.js");
include("/home/www/wwwbuzzerstar/js-new/bootstrap.min.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.simplyCountable.js");
include("/home/www/wwwbuzzerstar/js-new/ajax_functions_compressed_v2.js");
include("/home/www/wwwbuzzerstar/js-new/waypoints.js");
include("/home/www/wwwbuzzerstar/js-new/waypoints-sticky.js");
include("/home/www/wwwbuzzerstar/js-new/matchMedia.js");
include("/home/www/wwwbuzzerstar/js-new/matchMedia.addListener.js");
include("/home/www/wwwbuzzerstar/js-new/jquery.zaccordion.min.js");
... [truncated, 17 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "js2games-loader.php",
"description": "PHP module for js2games loader",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "3.5 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/js2games-loader.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
📄 new 2.txt (Text) 946 bytes 2016-01-08
Source code file for new 2
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "new 2.txt",
"description": "Source code file for new 2",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "946 bytes",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/new 2.txt",
"encodingFormat": "text/plain",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Text"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
📄 new 3.txt (Text) 48 bytes 2016-01-08
Source code file for new 3
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "new 3.txt",
"description": "Source code file for new 3",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "48 bytes",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/new 3.txt",
"encodingFormat": "text/plain",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Text"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}
📄 new 4.txt (Text) 60 bytes 2016-01-08
Source code file for new 4
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "new 4.txt",
"description": "Source code file for new 4",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "60 bytes",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/new 4.txt",
"encodingFormat": "text/plain",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Text"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/cdn/bak/"
}