24 Commits

Author SHA1 Message Date
Sebastian Titz
63d289b6a9 markdown ready for repair 2021-08-26 09:19:32 +02:00
Sebastian Titz
6920c10d2d remove markdown 2021-08-26 09:18:43 +02:00
troy
c477afabb0 Merge branch 'master' of https://git.seemsleg.it/pub/php-func-lib
Conflicts:
	ips/crawler.php
2021-08-17 18:33:05 +02:00
troy
ea745b5dbb ip 2021-08-17 18:31:57 +02:00
1184d1415a Bing bot 2021-08-14 00:10:37 +02:00
2030fbce57 Mj12 2021-08-14 00:07:54 +02:00
troy
5f3879e48c . 2021-08-08 15:43:04 +02:00
troy
051747f114 linkify bugfix 2021-08-07 09:10:26 +02:00
Sebastian Titz
0a96927e50 seekport 2021-08-03 13:30:05 +02:00
Sebastian Titz
57f254ea39 google bot netz 2021-08-03 07:24:36 +02:00
Sebastian Titz
05903ce02d ips crawler 2021-07-28 08:34:37 +02:00
Sebastian Titz
9a024c5c88 Merge branch 'master' of https://git.seemsleg.it/pub/php-func-lib into
HEAD

Conflicts:
	ips/crawler.php
2021-07-26 15:23:00 +02:00
Sebastian Titz
f9a0e41889 bing bot 2021-07-26 12:33:58 +02:00
troy
e17e570114 crawler ips 2021-07-24 09:50:22 +02:00
50b3d192ba neue bot ips 2021-07-19 14:22:19 +02:00
Sebastian Titz
b2e6260dfb in string fkt 2021-07-15 08:56:38 +02:00
admin
ed87d341ab bot ips zentral sammeln 2021-07-14 20:09:48 +02:00
admin
df5d1447af Merge branch 'master' of https://git.seemsleg.it/pub/php-func-lib
Conflicts:
	string.php
2021-07-13 21:38:08 +02:00
admin
2352fd5396 linkify tool um urls in text in echte links zu verwandeln 2021-07-13 21:37:14 +02:00
Sebastian Titz
385a02c90f ? 2021-07-12 13:40:12 +02:00
admin
8638f28847 fix only alpha 2021-07-11 10:32:35 +02:00
home
5f2502877b . 2021-07-10 14:45:56 +02:00
admin
8eccdffb1e Merge branch 'master' of https://git.seemsleg.it/pub/php-func-lib
Conflicts:
	secret.php.example
2021-05-22 09:25:26 +02:00
admin
c858d5dd32 mail sender update 2021-05-22 09:24:33 +02:00
5 changed files with 150 additions and 116 deletions

1
.gitignore vendored
View File

@@ -3,3 +3,4 @@
/secret.php /secret.php
/config.php /config.php
/test.php /test.php
/_secret.php

18
ips/crawler.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
$_ips_crawler = array (
'40.77.167.', // bing bot
'66.249.',
'62.138.',
'62.210.149.60',
'92.118.160.37', // netsystem research bot
'104.155.85.', // google
'114.119.1', // petalbot
'185.191.171.', // semrush bot
'207.46.13.124', // bing bot
'54.36.148.', // ahrefbot
'216.244.66.196', // opensiteexplorer
'65.21.180.26', // seekport
'81.209.177.145', // website-datenbank.de
'2a01:4f8:190:4244::2' // mj12bot
);
?>

View File

@@ -1,8 +1,11 @@
<?php <?php
function send_mail($an, $betreff, $text, $ok = '', $error = '') {
function send_mail($an, $betreff, $text, $ok = '', $error = '') include 'secret.php';
{ $sender = 'noreply@troy-grunt.de';
$header = 'From: noreply@isleofhope.de' . "\r\n"; if (isset ( $_sendermail )) {
$sender = $_sendermail;
}
$header = 'From: ' . $sender . "\r\n";
$header .= 'To: ' . $an . "\r\n"; $header .= 'To: ' . $an . "\r\n";
$header .= 'Content-Type:text/html' . "\r\n"; $header .= 'Content-Type:text/html' . "\r\n";
$header .= 'Content-Transfer-Encoding: 8bit' . "\r\n"; $header .= 'Content-Transfer-Encoding: 8bit' . "\r\n";

View File

@@ -7,4 +7,6 @@ $_m['pass'] = '';
$_m['data'] = ''; $_m['data'] = '';
$_m['pre'] = 'efcms2_'; $_m['pre'] = 'efcms2_';
$_m['salt'] = ''; $_m['salt'] = '';
$_sendermail = 'noreply@troy-grunt.de';
?> ?>

View File

@@ -257,4 +257,14 @@ function onlySimpleHTML($s) {
return $s; return $s;
} }
function linkify($input) {
$pattern = '@(http(s)?://[a-zA-Z0-9/\.\#\-\_]*)@';
return $output = preg_replace ( $pattern, '<a href="$1">$1</a>', $input );
}
function inStr($needle, $haystack) {
if (strpos ( $haystack, $needle ) !== false) {
return true;
}
return false;
}
?> ?>