Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > BlueVoda Website Builder Forums > BlueVoda - General Issues

Notices

BlueVoda - General Issues All BlueVoda support issues that are not covered in the below forums.

Closed Thread
 
Thread Tools
  #1  
Old 07-04-2005, 07:57 AM
rdensford's Avatar
Sergeant
 
Join Date: Jun 2005
Posts: 33
Cool Help with Forms

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #2  
Old 07-04-2005, 08:12 AM
Pablo's Avatar
Moderator
 
Join Date: May 2005
Posts: 507
Default

Read this:
http://www.vodahost.com/vodatalk/forms/246-email-forms.html
__________________
Forum Moderator
BlueVoda Specialist
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old 07-05-2005, 06:45 AM
rdensford's Avatar
Sergeant
 
Join Date: Jun 2005
Posts: 33
Red face Form help

My form is just for a lot of info (name, phone number etc). Should I still save it as a feedback form like mentioned in the thread? Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old 07-05-2005, 08:18 AM
rdensford's Avatar
Sergeant
 
Join Date: Jun 2005
Posts: 33
Exclamation Forms still not working

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?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #5  
Old 07-05-2005, 09:28 AM
Pablo's Avatar
Moderator
 
Join Date: May 2005
Posts: 507
Default

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old 07-05-2005, 04:15 PM
rdensford's Avatar
Sergeant
 
Join Date: Jun 2005
Posts: 33
Default Form help

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.......
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #7  
Old 07-05-2005, 04:35 PM
rdensford's Avatar
Sergeant
 
Join Date: Jun 2005
Posts: 33
Default Form help

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #8  
Old 07-05-2005, 05:18 PM
Pablo's Avatar
Moderator
 
Join Date: May 2005
Posts: 507
Default

It looks fine to me, except that all your &lt; should be changed to <
__________________
Forum Moderator
BlueVoda Specialist
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #9  
Old 07-05-2005, 05:48 PM
rdensford's Avatar
Sergeant
 
Join Date: Jun 2005
Posts: 33
Default

Quote:
Originally Posted by Pablo
It looks fine to me, except that all your &lt; should be changed to <
You mean delete the &lt; and just add <
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #10  
Old 07-05-2005, 05:58 PM
rdensford's Avatar
Sergeant
 
Join Date: Jun 2005
Posts: 33
Thumbs up

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #11  
Old 07-05-2005, 06:55 PM
Pablo's Avatar
Moderator
 
Join Date: May 2005
Posts: 507
Default

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
$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);
?>
4. Do the usual page formatting.
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #12  
Old 12-07-2006, 07:30 PM
thepurplebutterfly's Avatar
Sergeant Major
 
Join Date: Aug 2006
Posts: 97
Default Re: Help with Forms

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #13  
Old 12-07-2006, 08:29 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,052
Default Re: Help with Forms

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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #14  
Old 12-07-2006, 10:55 PM
thepurplebutterfly's Avatar
Sergeant Major
 
Join Date: Aug 2006
Posts: 97
Default Re: Help with Forms

I think I got that, but I don't get any email! I've tested it a hundred times and still email is recieved in my inbox.

I am submitting a support ticket.

Thanks Naval!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #15  
Old 12-08-2006, 07:32 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,052
Default Re: Help with Forms

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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #16  
Old 07-16-2007, 10:00 PM
Private First Class
 
Join Date: Jul 2007
Posts: 8
Default Re: Help with Forms

Quote:
Originally Posted by navaldesign View Post
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 .
Naval can you help me too? My problem is almost the same. I created two form pages,one works one doesnt.

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);
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #17  
Old 07-16-2007, 10:57 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,052
Default Re: Help with Forms

<?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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #18  
Old 07-19-2007, 03:26 AM
Private First Class
 
Join Date: Jul 2007
Posts: 8
Default Re: Help with Forms

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #19  
Old 07-19-2007, 08:55 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,052
Default Re: Help with Forms

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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #20  
Old 07-19-2007, 09:11 PM
Private First Class
 
Join Date: Jul 2007
Posts: 8
Default Re: Help with Forms

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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #21  
Old 07-19-2007, 09:45 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,052
Default Re: Help with Forms

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!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


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


All times are GMT +1. The time now is 01:24 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203