elementor / wp2static

WordPress static site generator for security, performance and cost benefits
https://wp2static.com
The Unlicense
1.41k stars 263 forks source link

How To Exclude A Directory? #712

Closed designgrande closed 3 years ago

designgrande commented 3 years ago

Is there any way - programmatically or otherwise to exclude a directory or directories from site generation?

leonstafford commented 3 years ago

Hi @designgrande,

There is a WordPress filter available to manipulate the list of initially detected URLs, wp2static_modify_initial_crawl_list.

There are some hooks/filters available further along processing, too, in case that file gets detected along the way: https://wp2static.com/developers/extending-wp2static/

Let me know if you need help with implementing any of those, documentation is poor currently, but you can look at the source code for an idea.

Another static plugin, Static HTML Output has Exclusions as a first class concept and a different approach happening there. I'd expect things to improve here, too, with better exclusions possible.

designgrande commented 3 years ago

Hi,

I need to make sure my site's cache folder is not included. Why do I need a cache plugin - for webp purposes.

Is this the correct way to do it?

function removing_wp_cache_folder ( $url_queue ) {
    $array = $url_queue;
    if (($key = array_search('/wp-content/cache/cache-enabler/', $array)) !== false) {
        unset($array[$key]);
    }
}
add_filter( 'wp2static_modify_initial_crawl_list', 'removing_wp_cache_folder' );
leonstafford commented 3 years ago

That looks about right!

My friend, @fransallen makes https://statically.io which may be worth investigating for your WebP needs.

leonstafford commented 3 years ago

@designgrande, I should also mention the other plugin, https://github.com/leonstafford/static-html-output, which shouldn't try to add the whole cache dir, only the files within which it finds actually linked from somewhere

designgrande commented 3 years ago
function removing_wp_cache_folder ( $url_queue ) {
    $array = $url_queue;
    if (($key = array_search('/wp-content/cache/cache-enabler/', $array)) !== false) {
        unset($array[$key]);
    }
}
add_filter( 'wp2static_modify_initial_crawl_list', 'removing_wp_cache_folder' );

The code isn't working - causing a 503 error on my server.

https://github.com/leonstafford/static-html-output - Isn't working!

There some issue with / being not added. Please check the logs below:

2020-12-05 11:55:31      2020-12-05 06:25:31
PHP VERSION 7.3.20
OS VERSION Windows NT DESKTOP-JQ1FTHP 10.0 build 19042 (Windows 10) AMD64
WP VERSION 5.5.3
WP URL http://testingserver.io
WP SITEURL http://testingserver.io
WP HOME http://testingserver.io
WP ADDRESS http://testingserver.io
PLUGIN VERSION 6.6.23-dev
VIA WP-CLI? 
STATIC EXPORT URL https://testingserver.com
PERMALINK STRUCTURE /%postname%/
SERVER SOFTWARE Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.3.20     
2020-12-05 11:55:31      WP Site Info:  
2020-12-05 11:55:31      Site Path: D:/XAMPP/htdocs/testingserver/
WP Uploads URL: http://testingserver.io/wp-content/uploads
WP Uploads Path: D:/XAMPP/htdocs/testingserver/wp-content/uploads
WP Uploads ??: D:/XAMPP/htdocs/testingserver/wp-content/uploads
WP Site Path: D:/XAMPP/htdocs/testingserver/
WP Site Subdirectory: 
Uploads URL: http://testingserver.io/wp-content/uploads
Site URL: http://testingserver.io
Parent Theme URL: http://testingserver.io/wp-content/themes/testingserver
Parent Theme Path: D:/XAMPP/htdocs/testingserver/wp-content/themes/testingserver
Child Theme Path: D:/XAMPP/htdocs/testingserver/wp-content/themes/testingserver
Child Theme Active: 
Theme Root Path: D:/XAMPP/htdocs/testingserver/wp-content/themes
Themes ??: /wp-content/themes
Active Theme ??: /wp-content/themes/testingserver
WP Content URL: http://testingserver.io/wp-content
WP Content Path: D:/XAMPP/htdocs/testingserver/wp-content
WP Content ??: D:/XAMPP/htdocs/testingserver/wp-content
Plugins Path: D:/XAMPP/htdocs/testingserver/wp-content/plugins
WP Plugins ??: /wp-content/plugins
WP Includes Path: D:/XAMPP/htdocs/testingserver/wp-includes
Permalink Structure: /%postname%/
WP Inc Path: /wp-includes
Subdirectory install?: 

2020-12-05 11:55:31      Active plugins:    
2020-12-05 11:55:31      absolute-reviews/absolute-reviews.php  
2020-12-05 11:55:31      advanced-custom-fields/acf.php     
2020-12-05 11:55:31      ajax-thumbnail-rebuild/ajax-thumbnail-rebuild.php  
2020-12-05 11:55:31      cache-enabler/cache-enabler.php    
2020-12-05 11:55:31      cdn-enabler/cdn-enabler.php    
2020-12-05 11:55:31      classic-editor/classic-editor.php  
2020-12-05 11:55:31      disable-wordpress-updates/disable-updates.php  
2020-12-05 11:55:31      enable-media-replace/enable-media-replace.php  
2020-12-05 11:55:31      ewww-image-optimizer/ewww-image-optimizer.php  
2020-12-05 11:55:31      insert-post-ads/insert-post-ads.php    
2020-12-05 11:55:31      plugin-organizer/plugin-organizer.php  
2020-12-05 11:55:31      seo-by-rank-math/rank-math.php     
2020-12-05 11:55:31      simple-local-avatars/simple-local-avatars.php  
2020-12-05 11:55:31      soil/soil.php  
2020-12-05 11:55:31      static-html-output/static-html-output.php  
2020-12-05 11:55:31      thumbnail-cleaner/thumbnail-cleaner.php    
2020-12-05 11:55:31      updraftplus/updraftplus.php    
2020-12-05 11:55:31      webp-express/webp-express.php  
2020-12-05 11:55:31      wordpress-importer/wordpress-importer.php  
2020-12-05 11:55:31      wp-faq-schema-markup-for-seo/index.php     
2020-12-05 11:55:31      wp-user-avatar/wp-user-avatar.php  
2020-12-05 11:55:31      wp2static-addon-advanced-crawler/wp2static-addon-advanced-crawling.php     
2020-12-05 11:55:31      wp2static-addon-netlify/wp2static-addon-netlify.php    
2020-12-05 11:55:31      wp2static-addon-zip/wp2static-addon-zip.php    
2020-12-05 11:55:31      wp2static/wp2static.php    
2020-12-05 11:55:31      Plugin options:    
2020-12-05 11:55:31      additionalUrls:    
2020-12-05 11:55:31      baseUrl: https://testingserver.com     
2020-12-05 11:55:31      baseUrl-bitbucket:     
2020-12-05 11:55:31      baseUrl-bunnycdn:      
2020-12-05 11:55:31      baseUrl-github:    
2020-12-05 11:55:31      baseUrl-gitlab:    
2020-12-05 11:55:31      baseUrl-netlify: https://testingserver.com     
2020-12-05 11:55:31      baseUrl-s3:    
2020-12-05 11:55:31      baseUrl-zip: https://testingserver.com     
2020-12-05 11:55:31      basicAuthPassword: *******************     
2020-12-05 11:55:31      basicAuthUser:     
2020-12-05 11:55:31      bbBranch:      
2020-12-05 11:55:31      bbRepo:    
2020-12-05 11:55:31      bbToken: *******************   
2020-12-05 11:55:31      bunnycdnStorageZoneAccessKey: *******************  
2020-12-05 11:55:31      bunnycdnPullZoneAccessKey: *******************     
2020-12-05 11:55:31      bunnycdnPullZoneID:    
2020-12-05 11:55:31      bunnycdnStorageZoneName:   
2020-12-05 11:55:31      bunnycdn_api_host: *******************     
2020-12-05 11:55:31      cfDistributionId:      
2020-12-05 11:55:31      completionEmail:   
2020-12-05 11:55:31      crawl_delay: 0     
2020-12-05 11:55:31      crawl_increment: 999999    
2020-12-05 11:55:31      crawlPort:     
2020-12-05 11:55:31      delayBetweenAPICalls: 0    
2020-12-05 11:55:31      deployBatchSize: 999999    
2020-12-05 11:55:31      excludeURLs:   
2020-12-05 11:55:31      ghBranch:      
2020-12-05 11:55:31      ghCommitMessage:   
2020-12-05 11:55:31      ghRepo:    
2020-12-05 11:55:31      ghToken: *******************   
2020-12-05 11:55:31      glBranch:      
2020-12-05 11:55:31      glProject:     
2020-12-05 11:55:31      glToken: *******************   
2020-12-05 11:55:31      netlifyHeaders:    
2020-12-05 11:55:31      netlifyPersonalAccessToken: *******************    
2020-12-05 11:55:31      netlifyRedirects:      
2020-12-05 11:55:31      netlifySiteID: fd65c669-34ef-4b68-a5ff-52c18fc1e0aa    
2020-12-05 11:55:31      removeConditionalHeadComments: 1   
2020-12-05 11:55:31      removeHTMLComments: 1  
2020-12-05 11:55:31      removeWPLinks:     
2020-12-05 11:55:31      removeWPMeta:      
2020-12-05 11:55:31      rewrite_rules:     
2020-12-05 11:55:31      rename_rules:      
2020-12-05 11:55:31      s3Bucket:      
2020-12-05 11:55:31      s3Key:     
2020-12-05 11:55:31      s3Region:      
2020-12-05 11:55:31      s3Secret: *******************  
2020-12-05 11:55:31      selected_deployment_option: netlify    
2020-12-05 11:55:31      targetFolder:      
2020-12-05 11:55:31      useBasicAuth:      
2020-12-05 11:55:31      Installed extensions:  
2020-12-05 11:55:31      Core,bcmath,calendar,ctype,date,filter,hash,iconv,json,SPL,pcre,readline,Reflection,session,standard,mysqlnd,tokenizer,zip,zlib,libxml,dom,PDO,bz2,SimpleXML,xml,wddx,xmlreader,xmlwriter,apache2handler,openssl,curl,fileinfo,gd,gettext,mbstring,exif,mysqli,pdo_mysql,pdo_sqlite,Phar,ftp   
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/    
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/05/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/05/28/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/06/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/06/20/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/07/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/07/03/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/07/10/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/07/12/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/07/25/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/07/29/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/08/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/08/01/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/08/21/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/12/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/12/31/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2017    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2017/page/2/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/    
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/01/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/01/01/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/01/02/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/01/05/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/05/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/05/12/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/06/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/06/17/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/07/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/07/17/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/07/25/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/08/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/08/21/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/10/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/10/24/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/12/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/12/05/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/12/08/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/12/11/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/12/13/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/12/20/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/12/23/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2018    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2018/page/2/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/    
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/04/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/06/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/07/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/08/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/09/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/10/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/16/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/18/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/21/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/27/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/28/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/31/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/01/page/2/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/02/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/02/01/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/02/09/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/02/21/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/02/28/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/03/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/03/05/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/03/07/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/03/15/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/03/22/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/04/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/04/23/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/05/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/05/28/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/06/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/06/10/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/06/25/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/09/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/09/24/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/09/26/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/09/27/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/09/29/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/10/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/10/07/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/10/09/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/11/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/11/21/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/11/30/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/12/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/12/02/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/12/05/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/12/13/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/12/16/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/page/2/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/page/3/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2019    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2019/page/4/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/    
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/08/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/08/05/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/08/07/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/08/25/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/08/page/2/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/09/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/09/21/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/09/22/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/10/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/10/02/  
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io2020    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /2020/page/2/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io4-reasons-why-bluetooth-sucks-1-way-to-fix-it   
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /4-reasons-why-bluetooth-sucks-1-way-to-fix-it/   
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io4g-mobiles-under-5000   
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /4g-mobiles-under-5000/   
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.io8-reasons-why-technology-has-ruined-relationships-friendships-and-lives     
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /8-reasons-why-technology-has-ruined-relationships-friendships-and-lives/     
2020-12-05 11:55:32      cURL error:Could not resolve host: testingserver.ioabout-us    
2020-12-05 11:55:32      BAD RESPONSE STATUS (0): /about-us/    
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.ioad-created-on-august-9-2020-239-am  
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /ad-created-on-august-9-2020-239-am/  
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.ioads.txt     
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /ads.txt  
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.ioai-tools-and-frameworks-you-need-to-know-in-2020    
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /ai-tools-and-frameworks-you-need-to-know-in-2020/    
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.ioalienware-aw768-pro-gaming-mechanical-keyboard-review   
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /alienware-aw768-pro-gaming-mechanical-keyboard-review/   
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.ioamazon-affiliate-disclosure     
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /amazon-affiliate-disclosure/     
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.ioasus-zenfone-max-m2-review  
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /asus-zenfone-max-m2-review/  
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.ioautocad-2020-software   
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /autocad-2020-software/   
2020-12-05 11:55:33      cURL error:Could not resolve host: testingserver.iobenq-mw632st-projector-review   
2020-12-05 11:55:33      BAD RESPONSE STATUS (0): /benq-mw632st-projector-review/   
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-android-apps-for-2020  
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-android-apps-for-2020/  
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-android-phones-under-300   
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-android-phones-under-300/   
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-android-phones-under-400   
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-android-phones-under-400/   
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-backpage-alternative-websites  
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-backpage-alternative-websites/  
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-blenders-for-ice   
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-blenders-for-ice/   
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-bluetooth-speakers-under-2000-1000-5000-3000-1500-10000-in-india   
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-bluetooth-speakers-under-2000-1000-5000-3000-1500-10000-in-india/   
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-camera-phones-under-15000  
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-camera-phones-under-15000/  
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-crowdfunding-platforms-in-2020     
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-crowdfunding-platforms-in-2020/     
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-earbuds-under-50   
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-earbuds-under-50/   
2020-12-05 11:55:34      cURL error:Could not resolve host: testingserver.iobest-google-chrome-extensions   
2020-12-05 11:55:34      BAD RESPONSE STATUS (0): /best-google-chrome-extensions/   
2020-12-05 11:55:35      cURL error:Could not resolve host: testingserver.iobest-headphones-under-3000-rupees   
2020-12-05 11:55:35      BAD RESPONSE STATUS (0): /best-headphones-under-3000-rupees/   
2020-12-05 11:55:35      cURL error:Could not resolve host: testingserver.iobest-laptops-for-engineering-students   
2020-12-05 11:55:35      BAD RESPONSE STATUS (0): /best-laptops-for-engineering-students/   
2020-12-05 11:55:35      cURL error:Could not resolve host: testingserver.iobest-laptops-under-40000    
2020-12-05 11:55:35      BAD RESPONSE STATUS (0): /best-laptops-under-40000/    
2020-12-05 11:55:35      cURL error:Could not resolve host: testingserver.iobest-leather-laptop-bags-under-50   
2020-12-05 11:55:35      BAD RESPONSE STATUS (0): /best-leather-laptop-bags-under-50/   
2020-12-05 11:55:35      cURL error:Could not resolve host: testingserver.iobest-pcie-ssd-for-desktop-and-laptop    
2020-12-05 11:55:35      BAD RESPONSE STATUS (0): /best-pcie-ssd-for-desktop-and-laptop/    
2020-12-05 11:55:35      cURL error:Could not resolve host: testingserver.iobest-phones-under-8000  
2020-12-05 11:55:35      BAD RESPONSE STATUS (0): /best-phones-under-8000/  
2020-12-05 11:55:35      cURL error:Could not resolve host: testingserver.iobest-power-banks-in-india   
2020-12-05 11:55:35      BAD RESPONSE STATUS (0): /best-power-banks-in-india/   
2020-12-05 11:55:36      cURL error:Could not resolve host: testingserver.iobest-power-banks-under-50-dollars   
2020-12-05 11:55:36      BAD RESPONSE STATUS (0): /best-power-banks-under-50-dollars/   
2020-12-05 11:55:36      cURL error:Could not resolve host: testingserver.iobest-smartphones-under-rs-7000  
2020-12-05 11:55:36      BAD RESPONSE STATUS (0): /best-smartphones-under-rs-7000/  
2020-12-05 11:55:36      cURL error:Could not resolve host: testingserver.iobest-vpn-for-android    
2020-12-05 11:55:36      BAD RESPONSE STATUS (0): /best-vpn-for-android/    
2020-12-05 11:55:36      cURL error:Could not resolve host: testingserver.iobest-wireless-keyboard-and-mouse-combo  
2020-12-05 11:55:36      BAD RESPONSE STATUS (0): /best-wireless-keyboard-and-mouse-combo/  
2020-12-05 11:55:36      cURL error:Could not resolve host: testingserver.iobohm-b76-review     
2020-12-05 11:55:36      BAD RESPONSE STATUS (0): /bohm-b76-review/     
2020-12-05 11:55:36      cURL error:Could not resolve host: testingserver.iocan-you-have-a-desktop-computer-with-too-many-cpu-cores     
2020-12-05 11:55:36      BAD RESPONSE STATUS (0): /can-you-have-a-desktop-computer-with-too-many-cpu-cores/     
2020-12-05 11:55:37      cURL error:Could not resolve host: testingserver.iocontact-us  
2020-12-05 11:55:37      BAD RESPONSE STATUS (0): /contact-us/  
2020-12-05 11:55:37      cURL error:Could not resolve host: testingserver.iocontent-com-android-browser-home    
2020-12-05 11:55:37      BAD RESPONSE STATUS (0): /content-com-android-browser-home/    
2020-12-05 11:55:37      cURL error:Could not resolve host: testingserver.iocuisinart-dfp-14bcny-food-processor-review  
2020-12-05 11:55:37      BAD RESPONSE STATUS (0): /cuisinart-dfp-14bcny-food-processor-review/  
2020-12-05 11:55:37      cURL error:Could not resolve host: testingserver.iodell-g7-7590-rtx-2070-mq-review     
2020-12-05 11:55:37      BAD RESPONSE STATUS (0): /dell-g7-7590-rtx-2070-mq-review/     
2020-12-05 11:55:37      cURL error:Could not resolve host: testingserver.iodownload-windows-10-iso     
2020-12-05 11:55:37      BAD RESPONSE STATUS (0): /download-windows-10-iso/     
2020-12-05 11:55:37      cURL error:Could not resolve host: testingserver.iodragon-city-breeding-guide  
2020-12-05 11:55:37      BAD RESPONSE STATUS (0): /dragon-city-breeding-guide/  
2020-12-05 11:55:37      cURL error:Could not resolve host: testingserver.ioeatx-vs-atx     
2020-12-05 11:55:37      BAD RESPONSE STATUS (0): /eatx-vs-atx/     
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.ioerr_cache_miss  
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /err_cache_miss/  
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.iofavicon.ico     
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /favicon.ico  
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.iofix-discord-not-picking-up-mic  
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /fix-discord-not-picking-up-mic/  
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.iohonor-10-lite-review    
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /honor-10-lite-review/    
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.iohow-to-choose-smartphone-in-2020    
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /how-to-choose-smartphone-in-2020/    
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.iohow-to-delete-naukri-account    
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /how-to-delete-naukri-account/    
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.iohow-to-delete-paytm-account-permanently     
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /how-to-delete-paytm-account-permanently/     
2020-12-05 11:55:38      cURL error:Could not resolve host: testingserver.iohow-to-fix-the-nvidia-control-panel-missing-issue   
2020-12-05 11:55:38      BAD RESPONSE STATUS (0): /how-to-fix-the-nvidia-control-panel-missing-issue/   
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.iohow-to-logout-of-skinhub    
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /how-to-logout-of-skinhub/    
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.iohow-to-play-windows-games-on-linux-system   
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /how-to-play-windows-games-on-linux-system/   
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.iohow-to-tell-if-your-graphics-card-is-dying  
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /how-to-tell-if-your-graphics-card-is-dying/  
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.iohow-to-uninstall-epic-games-launcher    
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /how-to-uninstall-epic-games-launcher/    
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.iohuawei-matebook-x-pro-review    
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /huawei-matebook-x-pro-review/    
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.iohuawei-p20-pro-review   
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /huawei-p20-pro-review/   
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.ioimpact-of-technology-on-internet-marketing  
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /impact-of-technology-on-internet-marketing/  
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.ioimprove-windows-computer-performance    
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /improve-windows-computer-performance/    
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.ioinsertpostads   
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /insertpostads/   
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.ioinsertpostads   
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /insertpostads/10/    
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.ioinsertpostads   
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /insertpostads/3rd-paragraph/     
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.ioinsertpostads   
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /insertpostads/6/     
2020-12-05 11:55:39      cURL error:Could not resolve host: testingserver.ioios-emulator-for-android    
2020-12-05 11:55:39      BAD RESPONSE STATUS (0): /ios-emulator-for-android/    
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.iois-it-dangerous-to-sit-too-close-to-screen  
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /is-it-dangerous-to-sit-too-close-to-screen/  
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.iolearn-how-to-whisper-in-the-town-of-salem   
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /learn-how-to-whisper-in-the-town-of-salem/   
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.iomachine-learning-in-ecommerce   
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /machine-learning-in-ecommerce/   
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.iomacos-mojave-a-much-better-functional-experience    
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /macos-mojave-a-much-better-functional-experience/    
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.iomake-money-from-youtube     
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /make-money-from-youtube/     
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.iomonster-legends-breeding-guide-with-charts  
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /monster-legends-breeding-guide-with-charts/  
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.ioplantronics-backbeat-fit-review     
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /plantronics-backbeat-fit-review/     
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.ioplugin_filter   
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /plugin_filter/   
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.ioplugin_filter   
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /plugin_filter/disable-on-homepage/   
2020-12-05 11:55:40      cURL error:Could not resolve host: testingserver.ioquetext-review-is-it-a-reliable-plagiarism-checker  
2020-12-05 11:55:40      BAD RESPONSE STATUS (0): /quetext-review-is-it-a-reliable-plagiarism-checker/  
2020-12-05 11:55:41      cURL error:Could not resolve host: testingserver.iorazer-blade-stealth-ultrabook-review    
2020-12-05 11:55:41      BAD RESPONSE STATUS (0): /razer-blade-stealth-ultrabook-review/    
2020-12-05 11:55:41      cURL error:Could not resolve host: testingserver.iorobots.txt  
2020-12-05 11:55:41      BAD RESPONSE STATUS (0): /robots.txt   
2020-12-05 11:55:41      cURL error:Could not resolve host: testingserver.iosample-page     
2020-12-05 11:55:41      BAD RESPONSE STATUS (0): /sample-page/     
2020-12-05 11:55:41      cURL error:Could not resolve host: testingserver.iosamsung-galaxy-on-max-review    
2020-12-05 11:55:41      BAD RESPONSE STATUS (0): /samsung-galaxy-on-max-review/    
2020-12-05 11:55:41      cURL error:Could not resolve host: testingserver.iosaturday-23rd-november-2019-074136-pm   
2020-12-05 11:55:41      BAD RESPONSE STATUS (0): /saturday-23rd-november-2019-074136-pm/   
2020-12-05 11:55:41      cURL error:Could not resolve host: testingserver.iosaturday-23rd-november-2019-074149-pm   
2020-12-05 11:55:41      BAD RESPONSE STATUS (0): /saturday-23rd-november-2019-074149-pm/   
2020-12-05 11:55:41      cURL error:Could not resolve host: testingserver.iosaturday-23rd-november-2019-074210-pm   
2020-12-05 11:55:41      BAD RESPONSE STATUS (0): /saturday-23rd-november-2019-074210-pm/   
2020-12-05 11:55:42      cURL error:Could not resolve host: testingserver.iosaturday-23rd-november-2019-074241-pm   
2020-12-05 11:55:42      BAD RESPONSE STATUS (0): /saturday-23rd-november-2019-074241-pm/   
2020-12-05 11:55:42      cURL error:Could not resolve host: testingserver.iosaturday-23rd-november-2019-074323-pm   
2020-12-05 11:55:42      BAD RESPONSE STATUS (0): /saturday-23rd-november-2019-074323-pm/   
2020-12-05 11:55:42      cURL error:Could not resolve host: testingserver.iosaturday-23rd-november-2019-074359-pm   
2020-12-05 11:55:42      BAD RESPONSE STATUS (0): /saturday-23rd-november-2019-074359-pm/   
2020-12-05 11:55:42      cURL error:Could not resolve host: testingserver.iosearch  
2020-12-05 11:55:42      BAD RESPONSE STATUS (0): /search/  
2020-12-05 11:55:42      cURL error:Could not resolve host: testingserver.iosennheiser-gsp-300-review   
2020-12-05 11:55:42      BAD RESPONSE STATUS (0): /sennheiser-gsp-300-review/   
2020-12-05 11:55:42      cURL error:Could not resolve host: testingserver.iosennheiser-hd-598-special-edition-review    
2020-12-05 11:55:42      BAD RESPONSE STATUS (0): /sennheiser-hd-598-special-edition-review/    
2020-12-05 11:55:42      cURL error:Could not resolve host: testingserver.iosennheiser-ie-80-review     
2020-12-05 11:55:42      BAD RESPONSE STATUS (0): /sennheiser-ie-80-review/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iositemap.xml     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /sitemap.xml  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iosmart-bulb-vs-smart-switch  
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /smart-bulb-vs-smart-switch/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iosome-basic-seo-tips-for-bloggers    
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /some-basic-seo-tips-for-bloggers/    
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/4g/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/android-phones/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/android/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/apple/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/atx/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/best-camera-phones/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/browser/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/camera/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/conhost/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/csrss/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/eatx/    
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/games-on-linux/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/gaming-keyboards/    
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/gaming-laptop/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/google-chrome-extension/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/google-chrome/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/google/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/headphones/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/honor-10-lite/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/how-to/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/huawei-p20-pro/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/ipad/    
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/iphone/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/laptop-bags/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/laptops/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/linux/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/macos/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/movies/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/nokia-8-1/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/nokia/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/power-banks/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/razer-blade-stealth/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/review/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/samsung-galaxy-on-max/   
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/sennheiser/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/seo/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/smart-bulb/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/smart-light/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/ssd/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/technology/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/top-10/  
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/under-40000/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/vpn/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/windows/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.iotag     
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /tag/youtube/     
2020-12-05 11:55:43      cURL error:Could not resolve host: testingserver.ioteam    
2020-12-05 11:55:43      BAD RESPONSE STATUS (0): /team/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotechnology-can-improve-your-business    
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /technology-can-improve-your-business/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.ioterms-and-conditions    
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /terms-and-conditions/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iothe-digital-marketing-trends-that-can-help-your-business-grow   
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /the-digital-marketing-trends-that-can-help-your-business-grow/   
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iothe-increased-importance-of-technology-in-the-21st-century  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /the-increased-importance-of-technology-in-the-21st-century/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iothewatchseries  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /thewatchseries/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/bags/     
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/collection/   
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/dll/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/games/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/guide/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/headphones/   
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/headphones/noise-canceling-headphones/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/how-to/   
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/keyboards/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/laptops/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/mobiles/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/power-bank/   
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/projector/    
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/reviews/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/storage/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.iotopics  
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /topics/vpn/  
2020-12-05 11:55:44      cURL error:Could not resolve host: testingserver.ioturn-off-assistive-touch    
2020-12-05 11:55:44      BAD RESPONSE STATUS (0): /turn-off-assistive-touch/    
2020-12-05 11:55:45      cURL error:Could not resolve host: testingserver.iounlock-your-pc-with-your-android-smartphone     
2020-12-05 11:55:45      BAD RESPONSE STATUS (0): /unlock-your-pc-with-your-android-smartphone/     
2020-12-05 11:55:45      cURL error:Could not resolve host: testingserver.iowhat-is-an-api-and-why-were-they-created    
2020-12-05 11:55:45      BAD RESPONSE STATUS (0): /what-is-an-api-and-why-were-they-created/    
2020-12-05 11:55:45      cURL error:Could not resolve host: testingserver.iowhat-is-conhost-exe     
2020-12-05 11:55:45      BAD RESPONSE STATUS (0): /what-is-conhost-exe/     
2020-12-05 11:55:45      cURL error:Could not resolve host: testingserver.iowhat-is-hyperconvergence    
2020-12-05 11:55:45      BAD RESPONSE STATUS (0): /what-is-hyperconvergence/    
2020-12-05 11:55:45      cURL error:Could not resolve host: testingserver.iowhat-is-the-impact-of-technology-on-our-lives   
2020-12-05 11:55:45      BAD RESPONSE STATUS (0): /what-is-the-impact-of-technology-on-our-lives/   
2020-12-05 11:55:45      cURL error:Could not resolve host: testingserver.iowhat-is-vulkanrt    
2020-12-05 11:55:45      BAD RESPONSE STATUS (0): /what-is-vulkanrt/    
2020-12-05 11:55:45      cURL error:Could not resolve host: testingserver.iowhat-you-should-expect-in-nokia-8one    
2020-12-05 11:55:45      BAD RESPONSE STATUS (0): /what-you-should-expect-in-nokia-8one/    
2020-12-05 11:55:46      cURL error:Could not resolve host: testingserver.iowhy-security-cameras-are-important  
2020-12-05 11:55:46      BAD RESPONSE STATUS (0): /why-security-cameras-are-important/  
2020-12-05 11:55:46      cURL error:Could not resolve host: testingserver.iowldcore-dll     
2020-12-05 11:55:46      BAD RESPONSE STATUS (0): /wldcore-dll/     
2020-12-05 11:55:46      cURL error:Could not resolve host: testingserver.iowrite-for-us    
2020-12-05 11:55:46      BAD RESPONSE STATUS (0): /write-for-us/    
2020-12-05 11:55:46      cURL error:Could not resolve host: testingserver.ioyeelight-aurora-lightstrip-plus-review  
2020-12-05 11:55:46      BAD RESPONSE STATUS (0): /yeelight-aurora-lightstrip-plus-review/  
2020-12-05 11:55:46      cURL error:Could not resolve host: testingserver.ioauthor  
2020-12-05 11:55:46      BAD RESPONSE STATUS (0): /author/john/     
2020-12-05 11:55:46      cURL error:Could not resolve host: testingserver.ioauthor  
2020-12-05 11:55:46      BAD RESPONSE STATUS (0): /author/team/     
2020-12-05 11:55:47      cURL error:Could not resolve host: testingserver.iopage    
2020-12-05 11:55:47      BAD RESPONSE STATUS (0): /page/2/  
2020-12-05 11:55:47      cURL error:Could not resolve host: testingserver.iopage    
2020-12-05 11:55:47      BAD RESPONSE STATUS (0): /page/3/  
2020-12-05 11:55:47      cURL error:Could not resolve host: testingserver.iopage    
2020-12-05 11:55:47      BAD RESPONSE STATUS (0): /page/9/  

:  Cannot modify header information - headers already sent by (output started at D:\XAMPP\htdocs\testingserver\wp-content\plugins\static-html-output\static-html-output.php:45) in  on line 

:  Cannot modify header information - headers already sent by (output started at D:\XAMPP\htdocs\testingserver\wp-content\plugins\static-html-output\static-html-output.php:45) in  on line 

:  Cannot modify header information - headers already sent by (output started at D:\XAMPP\htdocs\testingserver\wp-content\plugins\static-html-output\static-html-output.php:45) in  on line 
leonstafford commented 3 years ago

I think you'll need a return at the end of your function, to return the modified array.

I see the Windows environment. Static HTML Output's latest version does work with Windows filepaths (ie D:\....). I can't vouch for WP2Static working in XAMPP.

If you can install some UNIX filesystem path WordPress in your Windows, like Microsoft's own WSL, it will make life easier.

If familiar/interested to try Docker, https://lokl.dev is a new thing I'm building which can run in Windows 10 Pro, but requires few more steps than on Mac or Linux.