Title: Raz's Replies | WordPress.org

---

# Raz

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Webhooks - Automate repetitive tasks by creating powerful automation workflows directly within WordPress] Webhook not firing for contact forms 7 submission](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/#post-15789598)
 * Thanks Ironikus for the help.
    That was indeed the issue. When the host name 
   resolves to localhost, the host is considered to be “unsafe” unless there’s an
   explicit filter that overrides the behavior. Selecting “Allow unsafe URLs” also
   solves the issue.
 * Glad we’ve figured it out!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Webhooks - Automate repetitive tasks by creating powerful automation workflows directly within WordPress] Webhook not firing for contact forms 7 submission](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/#post-15772513)
 * Ironikus,
    looking at the wp_http_validate_url function, I see the following:
 *     ```
               if ( $ip ) {
                   $parts = array_map( 'intval', explode( '.', $ip ) );
                   if ( 127 === $parts[0] || 10 === $parts[0] || 0 === $parts[0]
                       || ( 172 === $parts[0] && 16 <= $parts[1] && 31 >= $parts[1] )
                       || ( 192 === $parts[0] && 168 === $parts[1] )
                   ) {
                       // If host appears local, reject unless specifically allowed.
                       /**
                        * Check if HTTP request is external or not.
                        *
                        * Allows to change and allow external requests for the HTTP request.
                        *
                        * @since 3.6.0
                        *
                        * @param bool   $external Whether HTTP request is external or not.
                        * @param string $host     Host name of the requested URL.
                        * @param string $url      Requested URL.
                        */
                       if ( ! apply_filters( 'http_request_host_is_external', false, $host, $url ) ) {
                           return false;
                       }
       ```
   
 * I confirm that the API resolves to the same host, perhaps this is why the URL
   is considered to be unsafe.
    How could I apply the “http_request_host_is_external”
   filter to test that out?
 * thanks,
    -raz
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Webhooks - Automate repetitive tasks by creating powerful automation workflows directly within WordPress] Webhook not firing for contact forms 7 submission](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/#post-15766385)
 * Hi Ironikus,
    I have found the issue. I had to select “Allow unsafe URLs” to 
   get it working. I have found this link in which you discuss the fix: > [https://wordpress.org/support/topic/a-valid-url-was-not-provided-5/](https://wordpress.org/support/topic/a-valid-url-was-not-provided-5/)
 * Can you tell me more as to why WordPress considers the domain to be unsafe? How
   does that work? The domain is legit, I had it for years and is properly configured.
 * -raz
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Webhooks - Automate repetitive tasks by creating powerful automation workflows directly within WordPress] Webhook not firing for contact forms 7 submission](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/#post-15754960)
 * Hi Ironikus,
    that is correct, even when selecting “Send Demo”, the data doesn’t
   land in to my backend. I have not set any proxy to reach the backend or anything
   like that. Nothing has changed, and it worked fine for a year or so. I will try
   to install an older version of the plug-in and see if that fixes the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Webhooks - Automate repetitive tasks by creating powerful automation workflows directly within WordPress] Webhook not firing for contact forms 7 submission](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [4 years ago](https://wordpress.org/support/topic/webhook-not-firing-for-contact-forms-7-submission/#post-15717768)
 * After enabling debug mode, I see the following error in the debug log every time
   I send a message:
 * > [07-Jun-2022 23:21:15 UTC] The incoming webhook content was sent as application/
   > json, but did not contain a valid JSON: A valid URL was not provided.
 * And in the hook setting, I have selected “Form Submit Data” in the “Customize
   Your Payload” section.
    I suspect that this is regression given that it worked
   fine for me for a year or so and I didn’t make any change to the backend.
 * -razique
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Integration for Salesforce and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms] Does the plugin integrate with Salesforce cases?](https://wordpress.org/support/topic/does-the-plugin-integrate-with-salesforce-cases/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [4 years ago](https://wordpress.org/support/topic/does-the-plugin-integrate-with-salesforce-cases/#post-15714307)
 * Hi Sam,
    thanks for the prompt reply. No I haven’t setup the plug-in yet, I wanted
   to know whether I could use it for cases before proceeding 🙂 I have checked 
   and I do have API enabled in Salesforce — reading more carefully the documentation,
   I see:
 * > First select any salesforce object then Map contact form fields to salesforce
   > object fields. There is No limitation on number of fields. You can map unlimited
   > fields.
 * Does that mean I can create mapping from CF fields to any object in SalesForce?
   Is this available with the free version of the plug-in?
    cheers.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Checkout Field Editor for WooCommerce - Checkout Manager] Translate the header in the order summary page](https://wordpress.org/support/topic/translate-the-header-in-the-order-summary-page/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/translate-the-header-in-the-order-summary-page/#post-14409609)
 * Sanesh was able to assist offline.
    We determined that those strings are not 
   managed by this plug-in. Follow-up here: > [https://wordpress.org/support/topic/translating-woocommerce-billing-field](https://wordpress.org/support/topic/translating-woocommerce-billing-field)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Checkout Field Editor for WooCommerce - Checkout Manager] Translate the header in the order summary page](https://wordpress.org/support/topic/translate-the-header-in-the-order-summary-page/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/translate-the-header-in-the-order-summary-page/#post-14395565)
 * Hi Sanesh, that is strange, because all the other fields are translated.
    This
   is the confirmation page: [https://www.ecobim.io/paiement/order-received/7981/?key=wc_order_Ms1N1E4oLib4d](https://www.ecobim.io/paiement/order-received/7981/?key=wc_order_Ms1N1E4oLib4d)
   You’ll be able to see what I am talking about 🙂
 * Thanks
    -  This reply was modified 5 years, 1 month ago by [Raz](https://wordpress.org/support/users/razique/).
      Reason: Provided the right link
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Webhooks - Automate repetitive tasks by creating powerful automation workflows directly within WordPress] Customer bearer token prefix](https://wordpress.org/support/topic/customer-bearer-token-prefix/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/customer-bearer-token-prefix/#post-14395380)
 * Hi [@ironikus](https://wordpress.org/support/users/ironikus/) I do see the new
   feature 😀
    Thank you so much, that is awesome, and will make my life easier 
   🙂 I will do some more testing and will get back to you if there’s any issue.
 * Have a nice day.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Regression in version 1.8.2](https://wordpress.org/support/topic/regression-in-version-182/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/regression-in-version-182/#post-7130969)
 * The development version (1.8.2.1 ) fixes the issues. No more redirects and 404.
 * Thanks Chouby 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Regression in version 1.8.2](https://wordpress.org/support/topic/regression-in-version-182/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/regression-in-version-182/#post-7130939)
 * Hi Chouby,
    thanks. Indeed, you are right, I’m using a static page as a homepage.
   I’m using this plugin as my homepage builder: [https://vc.wpbakery.com](https://vc.wpbakery.com)
   And it’s not fully compatible with Polylang, this is why I do a 301 to a static
   page. Thanks, I’ll setup the dev. env back and test this version 😀
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Regression in version 1.8.2](https://wordpress.org/support/topic/regression-in-version-182/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/regression-in-version-182/#post-7130870)
 * Check my original post, link is provided:
    [https://downloads.wordpress.org/plugin/polylang.1.8.1.zip](https://downloads.wordpress.org/plugin/polylang.1.8.1.zip)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Regression in version 1.8.2](https://wordpress.org/support/topic/regression-in-version-182/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/regression-in-version-182/#post-7130812)
 * Can you enable the debugging of PHP and paste us the output here while calling
   a page?
    Otherwise, I’ll do it later today
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Regression in version 1.8.2](https://wordpress.org/support/topic/regression-in-version-182/)
 *  Thread Starter [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/regression-in-version-182/#post-7130790)
 * Could it be related to that fix (what the changelog says for this version):
    –
   fix: canonical redirection of static front page when combining plain permalinks
   + default language hidden in url
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Language not working after update](https://wordpress.org/support/topic/language-not-working-after-update/)
 *  [Raz](https://wordpress.org/support/users/razique/)
 * (@razique)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/language-not-working-after-update/page/2/#post-7124521)
 * Instead of opening a new thread, same problem here 🙁
    Languages no longer works.
   Every page returns a 404. I re-updated the permalinks to “post name” to have 
   the .htaccess regenerated. But every page returns a 404. I polylang, the configuration
   I have is to use two different domains. I tried the other settings but that doesn’t
   work as well. thanks!

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

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