Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
No, not currently. It makes a little more sense when looking at the parameters though. There is also a few usages for CB Query Field query validation posted around the forums.Do you have any tutorials on it?
You need to create a new database table in your Joomla database that'll store all your token keys. 1 key per row. This will allow you to query for them and make sure the value the user supplied matches one.The largest confusion I have is where do I place the valid token keys? Do I have to create a new database or can it be placed "inline" in the query.
Correct.That field would have query enabled and would check the data entered in that field against a database.
It will only allow registration to save if the value they supplied is valid. So if the field has no value or a valid value they can register, which would cover your 2 needed usages.The query would only allow the field to populate if the entered data matched that database information, (ie, Select "tokens" from, validate.)
They would get a registration validation error, which you can supply to inform them why they can't register.if the user enters a string that isn't in the database the form would not accept the entry and deny access.
Yup.If however the string was acceptable it would populate the field and my new auto action would see that the field IsNotEmpty and allow the registration to progress. Right?
Yes, you need to create a new database table to store your tokens so you have something to query against.I guess it all makes sense except where do I enter the valid token information. Do I have to create a field in a DB somewhere?
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.