Title: macsolve's Replies | WordPress.org

---

# macsolve

  [  ](https://wordpress.org/support/users/macsolve/)

 *   [Profile](https://wordpress.org/support/users/macsolve/)
 *   [Topics Started](https://wordpress.org/support/users/macsolve/topics/)
 *   [Replies Created](https://wordpress.org/support/users/macsolve/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/macsolve/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/macsolve/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/macsolve/engagements/)
 *   [Favorites](https://wordpress.org/support/users/macsolve/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/macsolve/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/macsolve/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Use query string value for cache key](https://wordpress.org/support/topic/use-query-string-value-for-cache-key/)
 *  Thread Starter [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/use-query-string-value-for-cache-key/#post-18420467)
 * ”Accepted query strings” doesn’t help that case. They just enable the page cache
   even if one of those query parameters are present, but they don’t separate the
   cache for different parameter values, which is exactly what I want. The query
   parameters are just accepted but ignored.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Use query string value for cache key](https://wordpress.org/support/topic/use-query-string-value-for-cache-key/)
 *  Thread Starter [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/use-query-string-value-for-cache-key/#post-18420111)
 * (duplicate comment)
    -  This reply was modified 1 year, 2 months ago by [macsolve](https://wordpress.org/support/users/macsolve/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Use query string value for cache key](https://wordpress.org/support/topic/use-query-string-value-for-cache-key/)
 *  Thread Starter [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/use-query-string-value-for-cache-key/#post-18420108)
 * Yes that is correct. Certain query parameter values affect the contents of the
   page, for example currency
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Protect WordPress Uploads] Can’t view protected files in a browser](https://wordpress.org/support/topic/cant-view-protected-files-in-a-browser/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/cant-view-protected-files-in-a-browser/#post-14326571)
 * Not really comfortable to change the code of a published plugin since changes
   are gone when plugin is updated
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Protect WordPress Uploads] Can’t view protected files in a browser](https://wordpress.org/support/topic/cant-view-protected-files-in-a-browser/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/cant-view-protected-files-in-a-browser/#post-14325827)
 * I’d be happy to supply a merge request
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Protect WordPress Uploads] Can this plugin be used with JWT authentication](https://wordpress.org/support/topic/can-this-plugin-be-used-with-jwt-authentication/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/can-this-plugin-be-used-with-jwt-authentication/#post-14323505)
 * The plugin checks is_user_logged_in() to allow access, so the user must be logged
   in with WP
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Protect WordPress Uploads] Can’t view protected files in a browser](https://wordpress.org/support/topic/cant-view-protected-files-in-a-browser/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/cant-view-protected-files-in-a-browser/#post-14323451)
 * I have the same issue.
 * We need to show pdf documents inline instead of downloading them by setting headers
   Content-Type: application/pdf and Content-Disposition: inline.
    I looked at the
   PWPF_handle_private_download function and it seems easy to conditionally set 
   these headers if filename ends with .pdf, but can this function be overridden
   easily with our own code?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Brilliant Web-to-Lead for Salesforce] Prevent submission](https://wordpress.org/support/topic/prevent-submission/)
 *  Thread Starter [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/prevent-submission/#post-12839284)
 * Having salesforce_w2l_post_data return an empty array effectively prevents submission,
   since there is no organization id that tells Salesforce where the submission 
   belongs. So this is a usable solution.
 * return array();
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Brilliant Web-to-Lead for Salesforce] Prevent submission](https://wordpress.org/support/topic/prevent-submission/)
 *  Thread Starter [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/prevent-submission/#post-12836449)
 * I have a function that sends relevant fields to Akismet API, and if the result
   is spam the submission should be stopped. It sounds like return false from salesforce_w2l_before_submit
   should do that by making sure there is no data to post.
 * Using sfwp2l_validate_field filter seems to only have access to one field at 
   a time, but Akismet needs access to multiple fields for the spam filtering.
 * Thanks for the tip to filter the success message to provide proper feedback!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Members - Membership & User Role Editor Plugin] Fatal error on Members > Settings menu](https://wordpress.org/support/topic/fatal-error-on-members-settings-menu/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-on-members-settings-menu/#post-12683937)
 * I have this problem too when WordPress language is set to other than English (
   Swedish for example).
    Settings page gives error message and the Roles list is
   empty even if it shows the number of available roles at the top.
 * This is the error message from the settings page:
    Uncaught Error: Call to a 
   member function template() on bool in /var/www/sites/ptl/webroot/wp-content/plugins/
   members/admin/class-settings.php:325 Stack trace: #0 /var/www/sites/ptl/webroot/
   wp-includes/class-wp-hook.php(288): Members\Admin\Settings_Page->settings_page(”)#
   1 /var/www/sites/ptl/webroot/wp-includes/class-wp-hook.php(312): WP_Hook->apply_filters(”,
   Array) #2 /var/www/sites/ptl/webroot/wp-includes/plugin.php(478): WP_Hook->do_action(
   Array) #3 /var/www/sites/ptl/webroot/wp-admin/admin.php(254): do_action(‘medlemmar_page_…’)#
   4 {main}
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Not creating table wp-blogmeta](https://wordpress.org/support/topic/not-creating-table-wp-blogmeta/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/not-creating-table-wp-blogmeta/page/3/#post-11420326)
 * It seems this can be fixed with wp-cli
    `wp core update-db`
 * (as previously mentioned by Jeremy Felt [https://wordpress.org/support/topic/not-creating-table-wp-blogmeta/page/2/#post-11265255](https://wordpress.org/support/topic/not-creating-table-wp-blogmeta/page/2/#post-11265255))
    -  This reply was modified 7 years, 3 months ago by [macsolve](https://wordpress.org/support/users/macsolve/).
      Reason: added reference to previous mention
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields: Font Awesome Field] 3.0.2: Error when showing edit field](https://wordpress.org/support/topic/3-0-2-error-when-showing-edit-field/)
 *  Thread Starter [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/3-0-2-error-when-showing-edit-field/#post-11064419)
 * Confirmed, works as it should with ACF Pro 5.7.9. Sorry about that.
    -  This reply was modified 7 years, 6 months ago by [macsolve](https://wordpress.org/support/users/macsolve/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Slow calls to noc4.wordfence.com](https://wordpress.org/support/topic/slow-calls-to-noc4-wordfence-com/)
 *  Thread Starter [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/slow-calls-to-noc4-wordfence-com/#post-9476250)
 * Since we’ve redirected the calls to 127.0.0.1 (serverside using the hosts file)
   we can’t tell if it’s still happening.
 * Can’t tell if the calls timed out or succeeded. Can we tell from the Wordfence
   control panel somehow? The calls came from 109.74.11.91.
 * We’ll try to boil down a test case and get back about that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Verify Google Webmaster Tools] Code in body not in meta tag](https://wordpress.org/support/topic/code-in-body-not-in-meta-tag/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/code-in-body-not-in-meta-tag/#post-5415768)
 * You need to copy the meta tag found under Alternate methods, not the html filename.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Black Studio TinyMCE Widget] Widget name change](https://wordpress.org/support/topic/widget-name-change/)
 *  [macsolve](https://wordpress.org/support/users/macsolve/)
 * (@macsolve)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/widget-name-change/#post-4692173)
 * Allow me to contribute with a Swedish translation:
 * [black-studio-tinymce-widget-sv_SE.zip](https://dl.dropboxusercontent.com/u/4922/black-studio-tinymce-widget-sv_SE.zip)

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/macsolve/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/macsolve/replies/page/2/?output_format=md)