dmt4566
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Forms] 404 page generated after sending formHi Michael
I’ve done the update to 1.1.1, and it no longer has an error message, and does come up with the green bar (Your information has been submitted.) Looks OK, BUT
1: submitted to where? The address doesn’t go to our Constant Contact account!
2: <form class=”ctct-form” id=ctct-form-853724547 action=”” method=”post”> is the form action!
I suspect this isn’t what you expected?Dan
Forum: Plugins
In reply to: [Constant Contact Forms] 404 page generated after sending formI couldn’t try that – it shows as a black box (literally) and no code etc.
Figured it was blocked for only 1 or 2 users.
D
Forum: Plugins
In reply to: [Constant Contact Forms] 404 page generated after sending formI’m also having this issue sort-of.
Somewhere, the code is not picking up the “Base” url, and adding only the page:
For page is: http://www.beadfx.com/index.php/about-beadfx/contact-us/
action created is: “http://www.beadfx.com/about-beadfx/contact-us”missing the index.php in the middle. Where in the code is this created?
Posted the edit that fixes this for 4.6.1 and likely others in another thread here
edit file wordpress/wp-content/plugins/blogger-importer-extended/includes/client.php
line 33 or so
Change timeout to 30 from 0
Forum: Plugins
In reply to: [Blogger Importer Extended] It doesn't work on 4.6It’s a problem changed by the newest curl include in WP
Simple fix!!!
in a TEXT editor
edit file: wordpress/wp-content/plugins/blogger-importer-extended/includes/client.php
‘timeout’ => 30,Around line 33 is:
‘timeout’ => 0,Change it to:
‘timeout’ => 30,Fully successful on 4.6.1 after the change