Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Upgrading 3.3.13 to 3.3.14
#51
Quote:I uploaded 3.3.15

3.3.15 seems to work fine with PHP 7.2. Thank you! Smile

One thing in template_functions.php: Perhaps the ask.com part for sitemap pinging could be removed, since ask.com does not support URL pinging anymore?

PHP Code:
if( $fp=@fsockopen($ask80) ) {
 
     $req  'GET /ping?sitemap=' .
 
             urlencode$url_xml ) . " HTTP/1.1\r\n" .
 
             "Host: $ask\r\n" .
 
             "User-Agent: Mozilla/5.0 (compatible; " .
 
             PHP_OS ") PHP/" PHP_VERSION "\r\n" .
 
             "Connection: Close\r\n\r\n";
 
     fwrite$fp$req );
 
     while( !feof($fp) ) {
 
        if( @preg_match('~^HTTP/\d\.\d (\d+)~i'fgets($fp128), $m) ) {
 
           $status intval$m[1] );
 
           break;
 
        

Hypertexter
Reply


Messages In This Thread
Upgrading 3.3.13 to 3.3.14 - by acenda - 2018-09-01, 17:24:29
RE: Upgrading 3.3.13 to 3.3.14 - by Carlos - 2018-09-01, 20:01:24
RE: Upgrading 3.3.13 to 3.3.14 - by acenda - 2018-09-02, 16:57:17
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-02, 23:26:51
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-03, 00:46:52
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-03, 01:09:34
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-03, 08:45:28
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-04, 00:12:13
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-04, 00:26:33
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-04, 00:33:55
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-04, 00:45:26
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-04, 01:01:38
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-04, 07:58:42
RE: Upgrading 3.3.13 to 3.3.14 - by SoHo22 - 2018-09-04, 21:32:12
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-05, 22:03:40
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-06, 23:16:29
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-06, 23:26:48
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-07, 02:26:30
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-07, 03:55:23
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-07, 04:09:30
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-07, 17:21:13
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-07, 19:04:52
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-07, 23:14:58
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-07, 23:18:00
RE: Upgrading 3.3.13 to 3.3.14 - by SoHo22 - 2018-09-07, 23:49:21
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-07, 23:56:15
RE: Upgrading 3.3.13 to 3.3.14 - by SoHo22 - 2018-09-08, 00:05:35
RE: Upgrading 3.3.13 to 3.3.14 - by SoHo22 - 2018-09-08, 00:15:22
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 00:18:32
RE: Upgrading 3.3.13 to 3.3.14 - by SoHo22 - 2018-09-08, 00:30:20
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 00:38:49
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-08, 01:16:03
RE: Upgrading 3.3.13 to 3.3.14 - by SoHo22 - 2018-09-08, 01:46:02
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-08, 01:56:24
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 02:06:11
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-08, 02:27:36
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 03:34:23
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-08, 03:37:38
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 03:48:28
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 03:50:42
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-08, 03:52:21
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 04:02:13
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-08, 04:11:32
RE: Upgrading 3.3.13 to 3.3.14 - by acenda - 2018-09-13, 02:28:21
RE: Upgrading 3.3.13 to 3.3.14 - by acenda - 2018-09-13, 02:42:54
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-13, 17:54:08
RE: Upgrading 3.3.13 to 3.3.14 - by wdburgdorf - 2018-09-25, 18:20:17
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-25, 23:00:17
RE: Upgrading 3.3.13 to 3.3.14 - by Timbow - 2018-09-27, 00:20:14
RE: Upgrading 3.3.13 to 3.3.14 - by shawn_a - 2018-09-27, 10:22:43
RE: Upgrading 3.3.13 to 3.3.14 - by Hypertexter - 2018-09-28, 01:40:02



Users browsing this thread: 1 Guest(s)