![]() |
|
| |||||||
| Notices |
| BlueVoda - General Issues All BlueVoda support issues that are not covered in the below forums. |
![]() |
| | Thread Tools |
|
#1
| ||||
| ||||
| http://www.platinumrealtysellsjax.com/contactinfo.html I have watched the tutorials several times and have searched and read the FAQ's but I can not seem to get the info I'm requesting on this form. I double checked everything (I think) and nothing works. I get a blank email with a blank attachment! The info doesn't get to me. Any suggestions? Thanks. Ronda |
|
#2
| ||||
| ||||
|
__________________ Forum Moderator BlueVoda Specialist |
|
#4
| ||||
| ||||
|
Thanks, Pablo, for your help. I tried your suggestions and it still didn't work. I don't get it. If you watch the tutorial, it doesn't help at all. Even if you follow the instructions to the letter, it doesn't work. This is very frustrating because this contact info is the MOST important part of my site!! HELP!!! anyone? |
|
#5
| ||||
| ||||
|
It seems to be working fine for most other users. Please double check your configuration and follow the instruction carefully. If you only leave one thing out it will not work.
__________________ Forum Moderator BlueVoda Specialist |
|
#6
| ||||
| ||||
|
Just to be sure... I created the new folder (FEEDBACK.PHP) using my FTP manager. I uploaded the file to my public_html file. I wonder if I'm missing a step? I will double check everything. I wonder if I'm getting the spaces exactly right. I printed the thread, and then printed my notepad entry and they match perfect. I'll keep trying....... |
|
#7
| ||||
| ||||
|
Do you see any obvious errors? I esp wonder if my spacing is correct? Thanks! <HTML> <HEAD> <TITLE>Thank you for your feedback</TITLE> </HEAD> <BODY> <H2>Thank you for your feedback!</H2> <?PHP $email = $HTTP_POST_VARS[email]; $mailto = "feedback@platinumrealtysellsjax.com"; $mailsubj = "Feedback form"; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form:\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; } mail($mailto, $mailsubj, $mailbody, $mailhead); ?> <BODY> </HEAD> [QUOTE=rdensford]Just to be sure... I created the new folder (FEEDBACK.PHP) using my FTP manager. I uploaded the file to my public_html file. I wonder if I'm missing a step? I will double check everything. I wonder if I'm getting the spaces exactly right. I printed the thread, and then printed my notepad entry and they match perfect. I'll keep trying |
|
#10
| ||||
| ||||
|
I think I (finally) fixed it Pablo. Now, one last question. Can I change it from feedback to something else (like property inquiry or whatever) by going through and changing everything that says feedback to inquiry? would that work? for example. after a client submits a search/inquiry, instead of "thank you for your feedback", i'd like for it to say something like, thanks for your inquiry, we'll be in touch. or whatever. is that doable? thanks for your help. ronda |
|
#11
| ||||
| ||||
|
Yes, you can change the HTML part of the page to anything you want. Here's the instruction (again) how to make feedback.php with BlueVoda: 1. Create a new page with BlueVoda and save is as 'feedback.bvp'. 2. Select View->Page HTML from the menu 3. Select the Inside Body tag and enter this code: <?PHP 4. Do the usual page formatting.$email = $HTTP_POST_VARS[email]; $mailto = "feedback@yourdomain.com"; $mailsubj = "Feedback form"; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form:\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; } mail($mailto, $mailsubj, $mailbody, $mailhead); ?> 5. Select View->Page Properties from the menu 6. Set the file extension to php 5. Publish the page to your VodaHost account. Notes: - Instead of feedback you can give it any name you like. - The blue text in the code above can be changed to anything you like, but be sure you keep the double quotes. - Make sure the Action property of your form is set to feedback.php
__________________ Forum Moderator BlueVoda Specialist |
|
#12
| ||||
| ||||
|
Hi Pablo, my questions is this... I have a form in my Holiday Joy page and Christmas wish. I just want people to be able to submit their name, email and a short bit in the text area. Now, I have put all this in and published under both html and php and still get either no response or my outlook pops OR explorer says "can't find page." All I want is a simple submit form (in the Holiday Joy and Christmas wish current pages). I've been at this for too long now and have gotten overly frustrated. Tell me what I can do? The Butterfly Lady www.thebutterflypoem.org |
|
#13
| ||||
| ||||
|
Just read this: BlueVoda Form Tutorial 1 , it explains everything.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#15
| ||||
| ||||
|
I'm Afraid this is not an issue for which VH can help you. VH support is intended more for functionality problems, not for applications created or installed by the clients. If you wish, send me your login details (IP, username, password) and i'll have a look .
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#16
| |||
| |||
| Quote:
www.handdrawnportraitprogram.com The page in question is called presentation. code I entered on thank you page is below. <?PHP $mailto = karen@handdrawnportraitprogram.com; $email = $HTTP_POST_VARS['email']; if ($email == "") { $email = $mailto; } $mailsubj = appointment; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form :\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { if ($key!="submit") { $mailbody .= "$key : $val\n"; } } mail($mailto, $mailsubj, $mailbody, $mailhead); ?> |
|
#17
| ||||
| ||||
|
<?PHP $mailto = karen@handdrawnportraitprogram.com; $email = $HTTP_POST_VARS['email']; if ($email == "") { $email = $mailto; } $mailsubj = "Appointment"; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form :\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { if ($key!="submit") { $mailbody .= "$key : $val\n"; } } mail($mailto, $mailsubj, $mailbody, $mailhead); ?> The main problem is that the submit button is outside the form are. You have mail.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#18
| |||
| |||
|
Naval, I'm still having the same problem. The submit button is well in the form lines. When I click on the nav button frm the homepage the submit button on my "presentation" page is way down the bottom. www.handdrawnportraitprogram.com |
|
#19
| ||||
| ||||
|
Karen, as i told you in the emails i have sent you, the misplacing of the two buttons, of the Submit button, and of the bottom link, is due to the fact that the code you have placed in the html box in the right part of your page (the one that links to xoospace.com) IS MISSING THE CLOSING TAG. The correct code to place in there is: <a href="http://www.xoospace.com/" title="Myspace Graphics - Hi" target="_blank"><img src="http://xs2.xoospace.com/myspace/graphics/17858.gif" alt="Myspace Graphics - Hi" > You are missing that closing tag in RED In the page that I HAVE SENT YOU this problem had been fixed. So i don't understand how it is still wrong, unless you have NOT published the page i sent you.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#20
| |||
| |||
|
I did publish the page you sent me. See for yourself. The submit button is still on the bottom of presentation page. My password to publish has stopped working now. I have a support ticket in to reset.
|
|
#21
| ||||
| ||||
|
Hi Karen, this is NOT the page i sent you. The one i senr you has the code edited and is absolutely ok. Look here: http://www.dbtechnosystems.com/Tips/Presentation.php
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| another forms question | rdensford | Forms | 39 | 04-11-2006 04:53 PM |
| question with forms | GoldDraco13 | Forms | 4 | 02-09-2006 03:49 AM |
| more option on forms | Maddog | Wish List & Idea Bin | 3 | 11-24-2005 08:52 AM |
| Website Forms | udoitnow | BlueVoda - General Issues | 7 | 08-16-2005 12:25 AM |
| Registration and Login forms | rabbit | General Support Issues | 1 | 07-30-2005 09:50 AM |