🐘 index - Kopie.php (Php) 11.0 KB 2016-01-08
PHP module for index Kopie
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
// enable GZIP output
ob_start ("ob_gzhandler");
$seconds_to_cache = 75000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("Content-Type: text/html; 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");
//later: geo ip und spracheinstellungen
//error_reporting(E_ALL);
ini_set('display_errors', '0');
require_once( "/home/wwwbuzzerstar/library/Template.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Config.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Functions.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Connection.inc.php");
require_once( "/home/wwwbuzzerstar/library/Texts.inc.php" );
require_once( "/home/wwwbuzzerstar/library/mobile/Mobile_Detect.php");
$detect = new Mobile_Detect();
$texts = new Texts();
$func = new Functions();
$config = new Config();
$design = new Template();
$conn = new Connection();
$pdo = $conn->prepareQuery();
$table = $config->sql_tablename_publish_de();
$table_img = $config->sql_tablename_pictures();
$shortcode_passkey = $config->shortcode_passkey();
$pdo = $conn->prepareQuery();
$picpath = $config->picture_storepath();
$maxPageCount = $config->catg_max_results();
$page = $func->stripHtml($_REQUEST['p']);
$CategoryName = strtolower($func->stripHtml($_REQUEST['i']));
$CategoryID = $func->categoryNametoID($CategoryName);
$catgN = ucfirst($CategoryName);
$GoogleUserID = md5($_SERVER['HTTP_USER_AGENT'] . $_SERVER['REMOTE_ADDR']);
$deviceTypeMobile = $detect->isMobile();
$deviceTypeTablet = $detect->isTablet();
$robots = "INDEX,FOLLOW,ALL";
... [truncated, 184 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "index - Kopie.php",
"description": "PHP module for index Kopie",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "11.0 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/index - Kopie.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/"
}
🐘 index dd dd.php (Php) 11.0 KB 2016-01-08
PHP module for index dd dd
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
// enable GZIP output
ob_start ("ob_gzhandler");
$seconds_to_cache = 75000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("Content-Type: text/html; 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");
//later: geo ip und spracheinstellungen
//error_reporting(E_ALL);
ini_set('display_errors', '0');
require_once( "/home/wwwbuzzerstar/library/Template.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Config.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Functions.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Connection.inc.php");
require_once( "/home/wwwbuzzerstar/library/Texts.inc.php" );
require_once( "/home/wwwbuzzerstar/library/mobile/Mobile_Detect.php");
$detect = new Mobile_Detect();
$texts = new Texts();
$func = new Functions();
$config = new Config();
$design = new Template();
$conn = new Connection();
$pdo = $conn->prepareQuery();
$table = $config->sql_tablename_publish_de();
$table_img = $config->sql_tablename_pictures();
$shortcode_passkey = $config->shortcode_passkey();
$pdo = $conn->prepareQuery();
$picpath = $config->picture_storepath();
$maxPageCount = $config->catg_max_results();
$page = $func->stripHtml($_REQUEST['p']);
$CategoryName = strtolower($func->stripHtml($_REQUEST['i']));
$CategoryID = $func->categoryNametoID($CategoryName);
$catgN = ucfirst($CategoryName);
$GoogleUserID = md5($_SERVER['HTTP_USER_AGENT'] . $_SERVER['REMOTE_ADDR']);
$deviceTypeMobile = $detect->isMobile();
$deviceTypeTablet = $detect->isTablet();
$robots = "INDEX,FOLLOW,ALL";
... [truncated, 184 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "index dd dd.php",
"description": "PHP module for index dd dd",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "11.0 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/index dd dd.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/"
}
🐘 index.php (Php) 1.7 KB 2016-07-13
Main entry point for web interface
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 | <?php
//error_reporting(E_ALL);
ini_set('display_errors', '0');
$seconds_to_cache = 2592000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("Content-Type: text/html; charset=UTF-8");
header("Expires: $ts");
header('Cache-Control: public, max-age=2592000, pre-check=2592000');
header('X-UA-Compatible: IE=edge,chrome=1');
header("Pragma: cache");
require_once("/home/www/wwwbuzzerstar/library/Functions.inc.php");
require_once("/home/www/wwwbuzzerstar/library/HTMLSolution.inc.php");
require_once("/home/www/wwwbuzzerstar/library/Template.inc.php");
$func = new Functions();
$design = new Template();
$html = new HTML();
$header = $html->StartpageGenerateHeader(0);
$ReturnContentArray = $html->TrendingPageGenerateContent();
$content = array_merge(
array('robots'=>$ReturnContentArray["robots"]),
array('title'=>"Die beliebtesten Artikel von BuzzerStar.COM!"),
array('description'=>"Die beliebtesten, neusten, trendigsten Online Neuigkeiten und Top News auf BuzzerStar.COM"),
array('HtmlPageHeader'=>$header),
array('HtmlInlineCSS'=>$func->getIndexNewInlineCSS()),
array('image'=>"https://www.buzzerstar.com/images/logo_header.png"),
array('keywords'=>"Trending News, News Trends, News Magazine Trends, News Magazine Trending, hot buzz, buzzerstar, news, neuigkeiten, bild, heftig, cool, klick stark, click"),
array('canonical'=>"https://www.buzzerstar.com/trendings/"),
array('HtmlPageContent'=>$ReturnContentArray["returncontent"])
);
$design->setPath( "/home/www/wwwbuzzerstar/tpl-new" );
$design->display_cache('trending_new', $content, true, 3600*24*3);
//<link rel="stylesheet" type="text/css" href="https://www.buzzerstar.com/cdn/css2-loader.php" media="all" />
exit(0);
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "index.php",
"description": "Main entry point for web interface",
"dateModified": "2016-07-13",
"dateCreated": "2025-03-23",
"contentSize": "1.7 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/index.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/"
}
📄 new 1.txt (Text) 1.8 KB 2016-01-08
Source code file for new 1
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "new 1.txt",
"description": "Source code file for new 1",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "1.8 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/new 1.txt",
"encodingFormat": "text/plain",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Text"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/trending/"
}