***UPDATED*** DB Technosystems Form Processor 02/09/2011
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Maybe the encoding type of the form is wrong ?
Do the fields belong to the form ?
A Link to the published page please ?
Do the fields belong to the form ?
A Link to the published page please ?
www.dbtechnosystems.com
- Patrik iden
-
- Posts: 513
- Joined: Wed Mar 24, 2010 9:07 pm
- Location: Sweden
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Now i come to the error page.Navaldesign wrote:1.Maybe the encoding type of the form is wrong ?
2.Do the fields belong to the form ?
A Link to the published page please ?
1. Encoding: multipart/form-data
2. Yes
Last edited by Patrik iden on Sat Oct 13, 2012 11:07 am, edited 1 time in total.
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Please add the text ##error## somewhere in your error page (see WWB manual) so the actual error will be displayed and you will understand what is going wrong.
www.dbtechnosystems.com
- Patrik iden
-
- Posts: 513
- Joined: Wed Mar 24, 2010 9:07 pm
- Location: Sweden
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
OK, i did that, and the error code shows "The entered code is wrong!" but i figuerd it out, the problem was that i named the field that shows the random code to captcha_code. I changed it to captcha_kod and it worked.Navaldesign wrote:Please add the text ##error## somewhere in your error page (see WWB manual) so the actual error will be displayed and you will understand what is going wrong.
Thank you for your help.
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Try placing this in the DBTS Form processor autoresponder Body Start:Redneckheaven wrote:Now if I may ask how do I get the person's name in the Body Start of the Auto responder email. Where it says Hello, this is to confirm you email has been received. Would like to have it say Hello first_name last_name, this is etc........If that is possible could you lend a helping hand.
My text boxs are named first_name and last_name
Thanks
Kevin
Hello '.$_POST["first_name"].' '.$_POST["last_name"].', this email is to confirm that your info has been received.
www.dbtechnosystems.com
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
ABVFP is not the same as the DBTS Form Processor.
I suggest that you use the DBTS Form Processor and use the built in function that detects existance of a record in the database. You will need, however, to add the necessary code in the "ustom processing" section, "After form data reception" property, like this:
$error = check_unique_in_db($_POST["username", "table name", "username", "message to display");
I suggest that you use the DBTS Form Processor and use the built in function that detects existance of a record in the database. You will need, however, to add the necessary code in the "ustom processing" section, "After form data reception" property, like this:
$error = check_unique_in_db($_POST["username", "table name", "username", "message to display");
www.dbtechnosystems.com
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
The visitor's email address field is named "mail_addy"
Have you declared it correctly in DBTS Form Processor ?
Have you declared it correctly in DBTS Form Processor ?
www.dbtechnosystems.com
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
You can use the DBTS MySQL Login tools that allow all fields to be managable through the Admin area.
DBTS Form Processor is a form PROCESSOR extension, not a form BUILDER.
And, although it has a function to check for duplicate usernames / passwords, you need to add some lines of code to:
1. Check for duplicates
2. Encrypt passwords (as the WWB Login tools do)
3. Create the email verification string
4. include the verification URL in the mail.
It is far easier to use the DBTS Login tools together with the standard WWB signup form.
DBTS Form Processor is a form PROCESSOR extension, not a form BUILDER.
And, although it has a function to check for duplicate usernames / passwords, you need to add some lines of code to:
1. Check for duplicates
2. Encrypt passwords (as the WWB Login tools do)
3. Create the email verification string
4. include the verification URL in the mail.
It is far easier to use the DBTS Login tools together with the standard WWB signup form.
www.dbtechnosystems.com
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
No!
The DBTS Login extensions are dedicated for the purposes declared by the name.
the signup form is the standard WWB Signup form. You can add whatever fields you need in this form.
The Edit profile tool is also the standard WWB tool.
For the Login instead, as well as for the Admin tool, you can use the DBTS Login tools (please read related thread) that allows you to take advantage of additional features that are built in, to check automatically for unique username and password, and to manage (in the Admin area) all fields (standard ones as well as additional fields that you may add).
Of course, at that point, you don't need ABVFP anymore, at least not for this purpose.
Related thread viewtopic.php?t=29083
The DBTS Login extensions are dedicated for the purposes declared by the name.
the signup form is the standard WWB Signup form. You can add whatever fields you need in this form.
The Edit profile tool is also the standard WWB tool.
For the Login instead, as well as for the Admin tool, you can use the DBTS Login tools (please read related thread) that allows you to take advantage of additional features that are built in, to check automatically for unique username and password, and to manage (in the Admin area) all fields (standard ones as well as additional fields that you may add).
Of course, at that point, you don't need ABVFP anymore, at least not for this purpose.
Related thread viewtopic.php?t=29083
www.dbtechnosystems.com
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
If you read again my posts, I have clearly mentioned that in order to use the DBTS Form Processor you will need to add some PHP code. So, if you have no such knowledge, you should NOT use the DBTS Form Processor.
You should, instead, use the WWB Signup tool, and then use the DBTS MySQL Admin extension and the DBTS Login extension.
You should, instead, use the WWB Signup tool, and then use the DBTS MySQL Admin extension and the DBTS Login extension.
www.dbtechnosystems.com
- iamafireman
-
- Posts: 91
- Joined: Mon May 26, 2008 2:41 am
- Location: Tennessee
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Naval
Whats the correct way to use DTBS with godaddy? I have a site that a couple weeks ago started giving an error on submit. I'm using an email that goes with the domain also through godaddy.
Whats the correct way to use DTBS with godaddy? I have a site that a couple weeks ago started giving an error
Code: Select all
'; exit; } } ?>
- Patrik iden
-
- Posts: 513
- Joined: Wed Mar 24, 2010 9:07 pm
- Location: Sweden
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Hello, i'. tryimg to make an own captcha, and i hav this code in an external file (verify.php)
Ware shold i include the file in the Form processor?
Thank you.
Ware shold i include the file in the Form processor?
Thank you.
Code: Select all
<?php
session_start();
if($_POST['s3capcha'] == $_SESSION['s3capcha'] && $_POST['s3capcha'] != '') {
unset($_SESSION['s3capcha']);
header('location: thankyou.html');
} else {
header('location: error.html');
}
?>
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
I don't know what your "verify.php" file does, nor how you are passing the verification value to the processor. In all cases, the verification routine should go in the "Before Error Reporing Custom Processing".
www.dbtechnosystems.com
- Patrik iden
-
- Posts: 513
- Joined: Wed Mar 24, 2010 9:07 pm
- Location: Sweden
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Thank you. Dat did not work. I'm getting redirected to thanks.html page even if i put in the wrong captcha.
Now i got it to work if i set the WWB form action to verify.php, but then of course the email process is not functioning.
thank you.
Regards.
//Patrik.
Now i got it to work if i set the WWB form action to verify.php, but then of course the email process is not functioning.
thank you.
Regards.
//Patrik.
Last edited by Patrik iden on Sun Apr 14, 2013 10:12 pm, edited 1 time in total.
- Navaldesign
-
- Posts: 903
- Joined: Sat Mar 01, 2008 8:08 pm
- Location: Italy
- Contact:
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
I'm sorry, I don't have the time to impement third party scripts in my processor, you will need to find out yourself what you are doing wrong. The instructions I gave you (implementing the vrification routine just before the Error Reporing) is correct.
www.dbtechnosystems.com