Can't Send Email from Mobius form - 2sxc

I'm trying to create a simple form, but not getting very far.
I deleted all the extensions etc and then reinstalled so I just had the basic setup.
I select a Contact Form, and updated the owner email. Yet it gave me an error saying sender address not specified.
Any help would be appreciated.
Screenshot 1 at https://www.screencast.com/t/PgpsPn0P8mrb
Screenshot 2 at https://www.screencast.com/t/G9cKnRN2
I couldn't find any log entries for the sending. In the DNN logs there were lots of errors with HttpClient not found from MailChimps.cs, but I'm not wanting to use MailChimp. In my previous attempt I tried removing mailchimp references from the code and still got these errors.
I like the concept, but I find the help very unhelpful, often out of date and it assumes way to much. I'm willing to persist, but I'm under time contrainsts and it may be just easier to build my own module in C#.

You can set this globally, or on each form in the normal form configuration:

Related

Can not save transformation changes in Kentico Portal engine - errors in the console

I have a running Kentico 11 portal engine site and need to update the transformations in my navigation menu control. Something I have done many times before.
Today I went through all of the steps and the save button does not update the code. It never displays the change were saved messaging.
When I open the browser dev tools I see several errors on the page:
errors
A couple of things to check.
Is this happening in different browsers, also?
Can you save other transformations?
On this particular web part, if you select a different transformation, will that save successfully?
And, is the event log registering any errors?
Sounds like it may be a caching issue. What I'd suggest is the following:
restarting IIS
Open a private browser window and log in
attempt to make an edit to the code in question
If this does not resolve the issue, have you made any changes recently to the web.config, in particular the CMSHashstringsalt value? If so, this will cause your macros to become invalidated. You'll need to go to System > Macros > Signatures and check both boxes and resign the macros. It may take some time depending on your site but this could also help resolve your issue.

contact form 7 wordpress not sending mails when use recaptcha extension

I am using Contact Form 7 in my word press website.
CF-7 Working properly but when I use Recaptcha extension with it, it shows error and not sending mails.
I know this is old. But better late than never. Right? You might have already figured it out by yourself. But in case you or someone else runs into the same problem:
I just had the same problem. CF7 sent the mail without reCAPTCHA. When using reCAPTCHA, the verification said I'm human, but when clicking Send I got the same error message
Failed to send your message. Please try later or contact the administrator by another method.
However, after unsuccessfully trying to figure out whats wrong in the code or file / directory permissions, I rechecked the API keys provided by Google and saw my mistake.
Sometimes, the keys can have a dash - in them. So if you (like me) just double clicked the field to copy-paste the key, it will only copy a portion of it.
Like this one: ltrnA15pKhyzPJU9sSvh6gh-nFEWvDgC
If you double-click it, it will only copy the first part before the - like ltrnA15pKhyzPJU9sSvh6gh. And if you then use this key on your site, it will be invalid and you will get the error message.
So make sure you carefully copy all of the key.
Here is my the solution that worked for me.
When I created the first recaptcha, I chose invisible recaptcha and that's what generated the problem in the form.
I deleted the created recaptcha and created a new one with the type recpatcha v2. I copied the keys and everything worked correctly.
google reCAPTCHA ver 2.x with contact form7 is not working anymore as ver 2.x is deprecated. You should have to update the api key and site key for the google recaptcha. I had the same issue and I have updated the key but its not working. So finally I removed the reCAPTCHA tag from the form and its working fine and sending the email.
reCAPTCHA is not working with contact form 7 so you can use 'Advanced noCaptcha & invisible Captcha' and add shortcode [anr_nocaptcha g-recaptcha-response]

How does Spring work with apparently no code?

I am trying to understand the example described here.
What is puzzling to me is that there is apparently no code. I run the spring-security-samples-insecuremvc-3.2.x within Tomcat and a form is presented to interact with but there is no Java code whatsoever as far as I can see. I can't even find the form. I realize that the code must be in one of the dependencies but I am baffled at how this all works.
Spring does generate/provide a default login form if it's configured to do form-based login and no custom login form is configured.
Sidenote: how to create and configure a custom login form is, for example, explained here: http://docs.spring.io/spring-security/site/docs/3.2.x/guides/form.html (to long to be copy/pasted here).
I have been looking at this sample today with the same questions as you - where the heck is the source? I finally found the answer I think you're looking for. Take a look at the pom.xml and in the dependencies you'll see spring-security-samples-messages-jc. Assuming you downloaded all the samples, import that project into STS and you'll find the files you're looking for.
BTW, I've been following the instructions on the spring security website to add security to this sample and I have not yet been able to get it to work - the login screen does not appear. Let me know if you have better luck than me.
The default spring security login form is generated by the class org.springframework.security.web.ui.DefaultLoginPageGeneratingFilter which is in spring-security-web-$version.jar
The method is generateLoginPageHtml()

Impletmenting a custom meteor accounts package

I have been writing my own meteor accounts package and I seem to be missing something. I am not getting any errors in the browser or in the terminal so it's difficult for me to troubleshoot. The only error I get is from the accounts-ui package itself which is saying 'No login services configured.' The code can be seen at https://github.com/khamoud/meteor-accounts-stripe if anyone could take a look. Thanks in advance.
I created a accounts package myself a while ago and my advice would be to stick to whatever is done in the base accounts packages of the same service (in this case OAuth 2 it looks like) as closely as possible. I can see you have done that but there are minor differences.
I downloaded your package and tried it out myself. While I can't get it working (I haven't used the Stripe API so I wont be digging into it completely) I think I can make more progress than you have had.
First of all I don't get a 'No login services configured' error. Did you add your package? I did 'meteor add accounts-ui', created a packages folder in the my project's root and pasted your package folder into it, renamed it 'accounts-stripe' and did 'meteor add accounts-stripe'.
I then added a {{loginButtons}} helper to the page. With this I got the configure Stripe login buttons but it wouldn't open a pop-up when I clicked on it. I got an error message in the js console 'Uncaught Error: Duplicate service: stripe'. The problem seems to be you have the line:
Accounts.oauth.registerService('stripe');
in both accounts_stripe.js and stripe_client.js. Removing it from stripe_client.js fixed it for me. I could then add my API keys from stripe.
The next problem is once these are submitted you store them in 'clientId' in stripe_configure.js but then retrieve them using appId from the config object in stripe_client.js and stripe_server.js. I noticed this because the login URL in the pop-up after submitting the API keys had a undefined client_id. Changing 'clientId' to 'appId' in stripe_configure.js will fix that.
Unfortunately it still doesn't work. I get
{"error":{"message":"No application matches the supplied client identifier"}}
from the pop-up window. This could be for any number of reasons, perhaps I submitted the wrong thing in the API keys window, maybe it's because I'm using a test project on Stripe, or maybe you have implemented the login workflow incorrectly. A quick google of the Stripe OAuth docs suggests that I have submitted the wrong things for the client_id and secret. Like I said I haven't used the Stripe API before.
I hope I have got you started on fixing it though.

ASP.NET Browser Debug (support information) page

So one of the many many tasks I'm faced with daily as a developer is trying to get our support department to get as much information about the end users environment as possible.
Browser version, current cookies, plugins, etc etc and it would be handy to point people to a specific page on our site and say "copy paste this to support".
In the past I've always written these by hand, and used third party tools (such as BrowserHawk) to get as much info as possible.
How does everyone else deal with getting this information from end users, is there a nice package I'm unaware of to give a detailed dump a users env without having to get the users to run an app?
Just to clarify I'm not looking at an elmah style reporting (which is very helpful as well!) but this mainly for the client side stuff.
Some months ago I have see the googles ads page have a cool nice report button. What this button do is that capture using javacript the page as it is and send you the report, with all the details, and an image of the actually page.
So I have found this library http://html2canvas.hertzen.com/ that make the same think.
And here are some example pages with this feedback.
http://hertzen.com/experiments/jsfeedback/
So I add this feedback option, and I ask from the users to point out the issue, and send the feedback, so for pages I have a very nice image for what is not going well.
The next think is that I log and check all errors, and I fix them soon.

Resources