🐘 config.inc.php (Php) 22.9 KB 2005-03-05
PHP module for config.inc
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
###############################################################
################ MYSQL CONFIGURATION #######################
################################################################
$MYSQL_HOST = "localhost";
$MYSQL_USER = "zoozle";
$MYSQL_PASS = "zoozle";
$MYSQL_DATABASE = "zoozle";
# um eine tabelle fr boolen mode zu machen
#a.)tabelle erstellen mit daten drin: zoozle.sql
#select name,filename from emule_test WHERE MATCH(name,filename) AGAINST ('Boys')
#select name,filename from emule_test WHERE MATCH(name,filename,hash) AGAINST ('Boys')
############### regex DO N O T MODIFY #########################################
$regex_good = "/[\+\-\*\"]{0,}[a-zA-Z0-9]{3,100}[\*\"]{0,}/x";
$regex_bad = "/[\'\`\'\%\&\/\?\!]/";
##################### funktionsdefinitionen ################
/*
header("referer: http://www.wanttosendthis.com");
header("Location: http://www.anothersite.com");
*/
function beQuiet() {
return "";
}
function echoHeader(){
$header_html =<<<END
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE">
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="content-type" content=" text/html; iso-8859-1">
<meta name="robots" content=" INDEX,FOLLOW">
<meta name="description" content=" zoozle.net - CRACK SERIAL COVER Suchmaschine suchen search engine Gstebuch, Guestbook">
<meta name="abstract" content=" Emule, Torrent, FTP, Crack, Serial, Songtext ,Cover , XXX, Ed2k, Bittorrent, Suchmaschine">
<meta name="keywords" content=" zoozle, CRACK, SERIAL, COVER, Suchmaschine, suchen, search engine, search, Gstebuch, Guestbook">
<meta name="author" content="Programming: TheCerial / Design: Leecher / Promo: a7">
... [truncated, 564 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "config.inc.php",
"description": "PHP module for config.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "22.9 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/config.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.apple.inc.php (Php) 11.4 KB 2005-03-05
PHP module for functions.apple.inc
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
set_error_handler("beQuiet");
global $SEARCH_IN_EMULE;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
function apple_doMySQLQuery(){
global $MYSQL_HOST;
global $MYSQL_USER;
global $MYSQL_PASS;
global $MYSQL_DATABASE;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#################################################################################
# mysql verbindung aufbauen -> fehlermeldung bei misserfolg
$db_link = mysql_pconnect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) OR die("Keine Verbindung zur Datenbank. Fehlermeldung:".mysql_error());
mysql_select_db($MYSQL_DATABASE, $db_link) OR die("Konnte Datenbank nicht benutzen, Fehlermeldung: ".mysql_error());
$sql = "SELECT DISTINCT
name,filename,cat,lang,found,link,id FROM zoozle_apple
WHERE
MATCH(name) AGAINST ('$secure_query' IN BOOLEAN MODE)
||
MATCH(filename) AGAINST ('$secure_query' IN BOOLEAN MODE)
GROUP BY link
ORDER BY id ASC LIMIT 15";
... [truncated, 276 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.apple.inc.php",
"description": "PHP module for functions.apple.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "11.4 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.apple.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.ddl.inc.php (Php) 11.0 KB 2005-03-05
PHP module for functions.ddl.inc
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
global $SEARCH_IN_ddl;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
function ddl_doMySQLQuery(){
global $MYSQL_HOST;
global $MYSQL_USER;
global $MYSQL_PASS;
global $MYSQL_DATABASE;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#################################################################################
# mysql verbindung aufbauen -> fehlermeldung bei misserfolg
$db_link = mysql_pconnect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) OR die("Keine Verbindung zur Datenbank. Fehlermeldung:".mysql_error());
mysql_select_db($MYSQL_DATABASE, $db_link) OR die("Konnte Datenbank nicht benutzen, Fehlermeldung: ".mysql_error());
$sql = "SELECT DISTINCT
name,id,found,anti,link,count(15) FROM zoozle_ddl
WHERE
MATCH(name) AGAINST ('$secure_query' IN BOOLEAN MODE)
GROUP BY name
ORDER BY id ASC LIMIT 15";
$result[] = 0;
$result = mysql_query($sql, $db_link);
... [truncated, 262 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.ddl.inc.php",
"description": "PHP module for functions.ddl.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "11.0 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.ddl.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.emule.inc.php (Php) 13.1 KB 2005-03-05
PHP module for functions.emule.inc
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
set_error_handler("beQuiet");
global $SEARCH_IN_EMULE;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
function emule_doMySQLQuery(){
global $MYSQL_HOST;
global $MYSQL_USER;
global $MYSQL_PASS;
global $MYSQL_DATABASE;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#################################################################################
# mysql verbindung aufbauen -> fehlermeldung bei misserfolg
$db_link = mysql_pconnect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) OR die("Keine Verbindung zur Datenbank. Fehlermeldung:".mysql_error());
mysql_select_db($MYSQL_DATABASE, $db_link) OR die("Konnte Datenbank nicht benutzen, Fehlermeldung: ".mysql_error());
if ( $search_special_cat == "ALL" ){ # wenn in der kategorie alle gesucht wird
$sql = "SELECT DISTINCT
name,filename,cat,lang,found,hash,id FROM zoozle_emule2
WHERE
MATCH(name) AGAINST ('$secure_query' IN BOOLEAN MODE)
GROUP BY hash
ORDER BY id ASC LIMIT 15";
... [truncated, 331 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.emule.inc.php",
"description": "PHP module for functions.emule.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "13.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.emule.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.en.ftp.inc.php (Php) 11.3 KB 2005-03-05
PHP module for functions.en.ftp.inc
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
set_error_handler("beQuiet");
###############################################
################ predefine important stuff here
// remote server
$host="64.191.126.30";
// remote port
$port=51001;
// full path to dir where cache files saved (must have permissions for read,write delete)
$local_cache="/www/server/apache/htdocs/tmp/ftpcache";
// full path to a dir where temp files stored (must have permissions for read,write delete)
$temp="/www/server/apache/htdocs/tmp/ftptemp";
// full path to log file
$logfile="/www/server/apache/htdocs/tmp/ftpsearch.log";
####################################################
###############end preconfig #########################
###################################################
global $host;
global $port;
global $local_cache;
global $temp;
global $logfile;
global $SEARCH_IN_EMULE;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query1;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
... [truncated, 381 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.en.ftp.inc.php",
"description": "PHP module for functions.en.ftp.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "11.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.en.ftp.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.ftp.inc.php (Php) 11.3 KB 2005-03-05
PHP module for functions.ftp.inc
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
set_error_handler("beQuiet");
###############################################
################ predefine important stuff here
// remote server
$host="64.191.126.30";
// remote port
$port=51001;
// full path to dir where cache files saved (must have permissions for read,write delete)
$local_cache="/www/server/apache/htdocs/tmp/ftpcache";
// full path to a dir where temp files stored (must have permissions for read,write delete)
$temp="/www/server/apache/htdocs/tmp/ftptemp";
// full path to log file
$logfile="/www/server/apache/htdocs/tmp/ftpsearch.log";
####################################################
###############end preconfig #########################
###################################################
global $host;
global $port;
global $local_cache;
global $temp;
global $logfile;
global $SEARCH_IN_EMULE;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query1;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
... [truncated, 381 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.ftp.inc.php",
"description": "PHP module for functions.ftp.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "11.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.ftp.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.serial.inc.php (Php) 12.1 KB 2005-03-05
PHP module for functions.serial.inc
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
global $SEARCH_IN_ddl;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
function serial_doMySQLQuery(){
global $MYSQL_HOST;
global $MYSQL_USER;
global $MYSQL_PASS;
global $MYSQL_DATABASE;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#################################################################################
# mysql verbindung aufbauen -> fehlermeldung bei misserfolg
$db_link = mysql_pconnect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) OR die("Keine Verbindung zur Datenbank. Fehlermeldung:".mysql_error());
mysql_select_db($MYSQL_DATABASE, $db_link) OR die("Konnte Datenbank nicht benutzen, Fehlermeldung: ".mysql_error());
$sql = "SELECT DISTINCT
name,id,found,link,count(15) FROM zoozle_serial
WHERE
MATCH(name) AGAINST ('$secure_query' IN BOOLEAN MODE)
GROUP BY name
ORDER BY id ASC LIMIT 15";
$result[] = 0;
$count = 0;
$result = mysql_query($sql, $db_link);
... [truncated, 310 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.serial.inc.php",
"description": "PHP module for functions.serial.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "12.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.serial.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.songtext.inc.php (Php) 10.4 KB 2005-03-05
PHP module for functions.songtext.inc
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
global $SEARCH_IN_songtext;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
function songtext_doMySQLQuery(){
global $MYSQL_HOST;
global $MYSQL_USER;
global $MYSQL_PASS;
global $MYSQL_DATABASE;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#################################################################################
# mysql verbindung aufbauen -> fehlermeldung bei misserfolg
$db_link = mysql_pconnect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) OR die("Keine Verbindung zur Datenbank. Fehlermeldung:".mysql_error());
mysql_select_db($MYSQL_DATABASE, $db_link) OR die("Konnte Datenbank nicht benutzen, Fehlermeldung: ".mysql_error());
$sql = "SELECT
name,link,id FROM zoozle_songtext
WHERE
MATCH(name) AGAINST ('$secure_query' IN BOOLEAN MODE)
GROUP BY name
ORDER BY id ASC LIMIT 15";
$result[] = 0;
$result = mysql_query($sql, $db_link);
if(!$result) { // prfen auf false
... [truncated, 254 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.songtext.inc.php",
"description": "PHP module for functions.songtext.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "10.4 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.songtext.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 functions.torrent.inc.php (Php) 11.3 KB 2005-03-05
PHP module for functions.torrent.inc
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
set_error_handler("beQuiet");
global $SEARCH_IN_EMULE;
global $SEARCH_IN_TORRENT;
global $SEARCH_IN_APPLE;
global $SEARCH_IN_DDL;
global $SEARCH_IN_SONGTEXT;
global $SEARCH_IN_COVER;
global $SEARCH_IN_SERIAL;
global $SEARCH_IN_FTP;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#######################################################################
###################### normaler mysql query , ohne SID gesetzt
#######################################################################
function torrent_doMySQLQuery(){
global $MYSQL_HOST;
global $MYSQL_USER;
global $MYSQL_PASS;
global $MYSQL_DATABASE;
global $search_version;
global $search_language;
global $search_in_cat;
global $search_special_cat;
global $secure_query;
#################################################################################
# mysql verbindung aufbauen -> fehlermeldung bei misserfolg
$db_link = mysql_pconnect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) OR die("Keine Verbindung zur Datenbank. Fehlermeldung:".mysql_error());
mysql_select_db($MYSQL_DATABASE, $db_link) OR die("Konnte Datenbank nicht benutzen, Fehlermeldung: ".mysql_error());
$sql = "SELECT
link,name,cat,id,lang,found FROM zoozle_torrent
WHERE
MATCH(name) AGAINST ('$secure_query' IN BOOLEAN MODE)
GROUP BY name
ORDER BY id ASC LIMIT 15";
... [truncated, 274 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "functions.torrent.inc.php",
"description": "PHP module for functions.torrent.inc",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "11.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/functions.torrent.inc.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🎨 styles.css (Css) 1.1 KB 2005-03-05
CSS styles for styles
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 | body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#FFFFFF;
}
.infobalken {
border-top: 1px solid #000099;
background-color:#EEEEEE;
width:100%;
}
.infotitel {
margin-left: 5px;
font-size: 16px;
font-weight: bold;
}
.werbefeld {
background-color:#EEEEEE;
}
.werbeheader {
font-size: 16px;
font-weight: bold;
color: #000099;
}
.werbetext {
color: #000000;
font-size: 12px;
}
.anzeigen {
color: #999999;
}
.werbeurl {
color: #008000;
}
.seitenwerbung {
background-color:#EEEEEE;
border-color: #000099;
border-width: thin;
}
.ergebnishead {
font-size: 16px;
color: #000099;
}
.beschreibungen {
font-size: 12px;
}
.ergebnisurl {
... [truncated, 24 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "styles.css",
"description": "CSS styles for styles",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "1.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/styles.css",
"encodingFormat": "text/css",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Css"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🐘 zoozle.php (Php) 10.3 KB 2005-03-05
PHP module for zoozle
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 ("neuesuche/config.inc.php");
require ("neuesuche/functions.emule.inc.php");
header("Content-type: text/html");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: public"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: use-cache");
# 5.)checke ob jmd mehr als 50 mal pro tag zugreift, wenn ja dann sperre ihn fr 12h aus: check_accessed_times;
check_accessed_times();
#checke das zugriffsintervall, mindestens 3 sekunden zwischen 2 suchrequests: &check_interval;
check_intervall();
# wichtige informationen auslesen
$secure_query = del_special_char(stripcslashes(trim($_REQUEST["q"])));
$search_in_cat = del_special_char(stripcslashes(trim($_REQUEST["s"])));
$search_special_cat = del_special_char(stripcslashes(trim($_REQUEST["c"])));
$search_version = del_special_char(stripcslashes(trim($_REQUEST["v"])));
$search_language = del_special_char(stripcslashes(trim($_REQUEST["lg"])));
$search_sid = del_special_char(stripcslashes(trim($_REQUEST["sid"])));
$secure_query1 = $secure_query;
$secure_query = preg_replace("/ /"," +",$secure_query);
$secure_query = "+" . $secure_query;
markSearchCategory();
$html_header = echoHeader();
$search_stats = echoSearchStats();
$search_results = echoSearchedPart1();
$search_results2 = echoSearchedPart2();
#######################################################################
###################### wenn die seite ohne wichtige parameter aufgerufen wird
#######################################################################
if (!isset( $_REQUEST["q"] ) ) {
#erstmal alles ausgeben, das die startseite ausmacht
$zoozle_index_page = echoZoozleIndexPage();
echo "$html_header";
echo "$zoozle_index_page<br>";
exit(0);
#######################################################################
... [truncated, 288 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "zoozle.php",
"description": "PHP module for zoozle",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "10.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/zoozle.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}
🖼️ zoozle_small.gif (Image) 2.9 KB 2005-03-05
Image file: zoozle_small
{
"@context": "https://schema.org",
"@type": "ImageObject",
"name": "zoozle_small.gif",
"description": "Image file: zoozle_small",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "2.9 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/zoozle_small.gif",
"encodingFormat": "image/gif",
"thumbnail": {
"@type": "ImageObject",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/zoozle_small.gif"
}
}
🎨 zoozle_suche.css (Css) 1.1 KB 2005-03-05
CSS styles for zoozle suche
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 | body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#FFFFFF;
}
.infobalken {
border-top: 1px solid #000099;
background-color:#EEEEEE;
width:100%;
}
.infotitel {
margin-left: 5px;
font-size: 16px;
font-weight: bold;
}
.werbefeld {
background-color:#EEEEEE;
}
.werbeheader {
font-size: 16px;
font-weight: bold;
color: #000099;
}
.werbetext {
color: #000000;
font-size: 12px;
}
.anzeigen {
color: #999999;
}
.werbeurl {
color: #008000;
}
.ergebnishead {
font-size: 16px;
color: #000099;
}
.beschreibungen {
font-size: 12px;
}
.ergebnisurl {
color: #008000;
}
.ergebnisoptionen {
color: #7777CC;
}
... [truncated, 24 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "zoozle_suche.css",
"description": "CSS styles for zoozle suche",
"dateModified": "2005-03-05",
"dateCreated": "2025-03-23",
"contentSize": "1.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/zoozle_suche.css",
"encodingFormat": "text/css",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Css"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/zoozle-download-search-engine/2005-zoozle/neuesuche/"
}