test failures on the salseforce validation - validation

I have Drupal as frontend and salesforce as backend. I need to check if the field is getting populated in backend or not. Because it is not being saved when the front-end page is submitted. how to check that.
Thanks in advance.
I just want to know how to achienve this.enter image description here

Related

Does passing data from blade to vue component is safe from hackers?

I want to know if it's safe to pass data from blade to vue component knowing that we can see the code in source code.Example:
<project
id="{{$project->id}}"
title="{{$project->title}}"
desc="{{$project->desc}}">
</project>
Do users or people with bad intentions can change these in client? If yes what can I do to protect my website? Thanks.
Can the data be changed by a user? Yes.
Can you stop users from changing the data? No.
Vue is JavaScript and JavaScript is ran on the client side. You have no way of stopping a user from changing code on the client side.
The best thing you can do is never trust any input that is sent back to the server. ALWAYS check if the data that has been sent to the server is valid. This is not only true for JavaScript, but any data that is being sent to your server.
Yes, it is safe. The blade is rendered together , and then the data is part of the HTML/CSS/JS when rendered. And project component will be rendered into Vue HTML, so the data passed is hidden as well.

Contactform7 not working

My contact7 form is not working, none of the functionality is working, tha ajax and after post validation aren't working. I checked the console for a conflict but there's none. The html is the same i've used on other forms.
This is my form:
disennio.com/clients/lunata/reservaciones/
Looks like you are trying to manually insert the form code on your page. Instead, you'll need to use Contact Form 7's insert a form feature while you are editing that particular page in the WordPress dashboard.
It was mobile plugin related issue, will find another solution for mobile validations. Sorry.

Using securesocial services without using its views

I started integrating SecureSocial in my play/scala app, but I don't really like all the redirects it does between it's different views.
example - try to login from it's default login page and if you put in a wrong pass you will be redirected to a different page (url) but with the same login form. the only thing that is different is that there is an error message...
I want a simple login form (user/password provider) at the corner of my main page that submits it's data using ajax, this data is validated on the server and a response is made to either display error message/s or change the window.location.
Next to this form I will put a link to go to a more advanced login page that adds the option to use other providers like fb/twitter etc..
But from that page I also want to use ajax to submit the details and get the response.
I tried to browse into the SecureSocial source but got a little lost in there.
Can any one give me an idea how to use SecureSocial's but without using any of it's views?
NOTE: I'm not interested in customizing their views, It's not just a CSS/design issue, I want to handle the login details Ajaxly and not with normal form submission followed by redirects...
After some more rummaging around in SecureSocial code I got a better understanding of how it operates.
You can use any of the providers you listed in the play.plugins file seperatly to authenthicate the user's info from your own login/auth code. just make sure you send the right parameters that the provider needs.
I liked the way SecureSocial's ProviderController class dynamically decided what provider to use, based on a parameter. But I didn't like the responses it made - redirect.. I wanted to respond to an ajax request with some data and let the client side js handle it.
This is my solution:
pretty much copy all of ProviderController code to my own Auth.scala file (a Controller).
Changed the redirects related to "case ex, case _", kept the redirect on successful auth as it adds the SecureSocial session key related to the user.
Removed all the SecureSocial related routes from my routes file.
Put an additional hidden field with the logintype (userpass/google/fb/etc...) and configured my login ajax post to sent this along with the post to my Auth controller.
If you need more info comment here and I'll edit the answer.

Using Yii CHtml::ClientChange to Update A Page Element With Form Input Event

I want to upgrade my current website with Yii Framework.
In the registration form of my application, there is an ajax validation process while let the user know whether the requested ID is available, when user types an ID. Currently it works with onChange attribute of the text input.
I want have the example of the code where anyone did same type of work with Yii framework using CHtml::ClientChange and Form Builder.
Thanks in advance.
You should do the blog tutorial from Yii, it explains step by step how Yii works, and it also has an ajax validation for forms.

Virtuemart Display Page after Remote redirect

I am aiming to create a payment module. Its users shall be redirected away from the site's URL in order for the transaction to be processed by a third party at a different URL. I would then like customers to be redirected back to a generic 'success' page that notifies them the order was a success. I have tried redirecting to the default success page (checkout.thankyou.php), but I get lots of errors; all the constants etc. that the application requires have obviously been lost during the redirect.
I would like to be able to retrieve the theme currently enabled in the configuration and use it to insert some basic HTML into the view. I would also like to access the database to perform some queries.
Can anybody advise? I am very stuck, and cannot find anything useful in the documentation! Thank you.
Can you be more specific about what type of information you want in your success page? If you just want basic HTML, then there's no reason you can't just write a basic Joomla article and redirect to that instead of trying to redirect to a VM partial. Again, if it's just basic HTML (no data from the transaction), then you can simply use a code inspector (like FireFox Inspect Element) to track down the CSS classes you like from the template and simply use them in your Joomla article to make it look like the VM template. You can find most of them in components/com_virtuemart/themes/default/themes.css.
If you need to display actual transaction data in your Thank You message, be prepared for a bit more work. You're probably going to have to write a cookie containing the record data BEFORE it gets sent offsite, and then read the cookie just prior to rendering the Thank You page.

Resources