Web Hosting Vodahost    

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

Notices

Forms Discussion and help related to designing and implementing forms in the BlueVoda Website Builder.

Reply
 
LinkBack Thread Tools
  #1  
Old 06-11-2008, 10:48 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default How To Use Form With Aweber

Please i'll like to know if this naw form wizard'll allow me to use my aweber form name together with this form created in BV form wizard.

I've got a subsription list & account in aweber autoresponder setup. Is there any way i can creat a form with the form wizard & link or just add my subsription email list name to it so that contact details colected from costomer be sent & stored with aweber.

I've created a form in aweber but the form is too big in size to the one i whant to use on my page at fredpublishing.com

I'll like to delate this and create a simple small form in BV & link it to aweber.

Thank for assisting.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 06-11-2008, 11:21 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

Create a smaller form, as you like it, in BV. Make sure that yo include all the (eventual) hidden fields that the original aweber form had, and also make sure to have everything the same: field names, action, encoding type, etc, and it will work.
__________________
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!
Reply With Quote
  #3  
Old 06-11-2008, 11:56 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Thanks Naval,

But how willi know the same encoding type, form action,action and etc that the aweber form has. This seems to be a bit complicated.

Please can you guid me through to finding, working this out and linking it to aweber.

Many thanks to you.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 06-12-2008, 05:57 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

Please post here the aweber form code
__________________
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!
Reply With Quote
  #5  
Old 06-12-2008, 09:37 AM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Thanks Navel.
Below is the code:

<script type="text/javascript" src="http://forms.aweber.com/form/07/891694307.js"></script>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old 06-12-2008, 10:24 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

Hm... I retrieved the form code from aweber. It is created by a Javascript. Actually, what you posted above, is only the script source, which then creates the form in your page.

Now, this script is far more than a form creator, it also sets cookies (probably to avoid multiple signups). So a simple BV form can't do the job. You should modify the script, and then embed it in your own page, OR, which i think is much simpler, go back in the aweber form creation wizard, and create another form, smaller this time.

Anyway, here is the alternative way of doing it:

Insert a Script object in your BV page, select "Javascript" and paste the following code:

Code:
 
document.write("<center><form method=\"post\" action=\"http://www.aweber.com/scripts/addlead.pl\" target=\"_new\"><input type=\"hidden\" name=\"meta_web_form_id\" value=\"891694307\"><input type=\"hidden\" name=\"meta_split_id\" value=\"\"><input type=\"hidden\" name=\"unit\" value=\"fredpublishing\"><input type=\"hidden\" name=\"redirect\" value=\"http://www.aweber.com/form/thankyou_vo.html\" id=\"redirect_02b9a2d449d9de62dd19b45605ea6d4a\"><input type=\"hidden\" name=\"meta_redirect_onlist\" value=\"\"><input type=\"hidden\" name=\"meta_adtracking\" value=\"\"><input type=\"hidden\" name=\"meta_message\" value=\"1\"><input type=\"hidden\" name=\"meta_required\" value=\"from\"><input type=\"hidden\" name=\"meta_forward_vars\" value=\"0\"><table><tr><td colspan=2><center><p align=\"center\"><strong>Sign Up To Our Email List To Claim...<br /></strong><u><strong>Your Free Bonuses Now...<br /></strong></u><br />Sign up NOW And I'll Send YOU Your Gifts.<br /></p></center></td></tr><tr><td>Name:</td><td><input type=\"text\" name=\"name\" value=\"\" size=\"20\"></td></tr><tr><td>Email:</td><td><input type=\"text\" name=\"from\" value=\"\" size=\"20\"></td></tr><tr><td align=\"center\" colspan=\"2\"><input type=\"submit\" name=\"submit\" value=\"I've Signed Up, Send Them Now!\"></td></tr></table></form></center>");
function setCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
document.cookie = curCookie;
}
function getCookie(name) {
var dc = document.cookie;
var prefix = name + "=";
var begin = dc.indexOf("; " + prefix);
if (begin == -1) {
begin = dc.indexOf(prefix);
if (begin != 0) return null;
} else
begin += 2;
var end = document.cookie.indexOf(";", begin);
if (end == -1)
end = dc.length;
return unescape(dc.substring(begin + prefix.length, end));
}
 
unique_track = new Image();
unique_track.src = "http://forms.aweber.com/form/displays.htm?id=HJyMbJwszAzs";
This is practically the same form, without all those blank rows.

Another solution:

Create the form in BV. Here are the hidden fields and method etc as retrieved from your own Javascript from awever:

method="post" action="http://www.aweber.com/scripts/addlead.pl"
<input type="hidden" name="meta_web_form_id" value="891694307">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="fredpublishing">
<input type="hidden" name="redirect" value="http://www.aweber.com/form/thankyou_vo.html" id="redirect_02b9a2d449d9de62dd19b45605ea6d4a">
<input type="hidden" name="meta_redirect_onlist" value="">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="from">
<input type="hidden" name="meta_forward_vars" value="0">
<input type="text" name="name" value="" size="20">
<input type="text" name="from" value="" size="20">
<input type="submit" name="submit" value="I've Signed Up, Send Them Now!">

The three lines in red, are the ones taht correspond to the Name field, Email field and Submit button. These will be built in BV. The hidden fields, with the exact above values, MUSt be inserted as hidden fields in the form.
You can see yourself the action .

However, this is not enough. You also need to insert a Script object, and paste ONLY the following part of code (as the part that creates the form MUST be left out):



Code:
 
function setCookie(name, value, expires, path, domain, secure) {
     var curCookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + expires.toGMTString() : "") +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      ((secure) ? "; secure" : "");
     document.cookie = curCookie;
   }
   function getCookie(name) {
      var dc = document.cookie;
      var prefix = name + "=";
      var begin = dc.indexOf("; " + prefix);
      if (begin == -1) {
  begin = dc.indexOf(prefix);
  if (begin != 0) return null;
      } else
  begin += 2;
      var end = document.cookie.indexOf(";", begin);
   if (end == -1)
      end = dc.length;
      return unescape(dc.substring(begin + prefix.length, end));
   }
 
      unique_track = new Image();
      unique_track.src = "http://forms.aweber.com/form/displays.htm?id=HJyMbJwszAzs";
Good luck.
__________________
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!
Reply With Quote
  #7  
Old 06-12-2008, 05:41 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Thanks Naval,

I've cloned the page & tried the easier option you gave above & it worked.
But still that big and with ActiveX, can't open imidietly on screen onless you click to allow it.

In aweber form creation, you can only creat one size of form, which is this, and i can't see an option to make it simple. Aweber said i can only mudify it with my editor. But how? no idea...

Any way to create the form in bv & link it to my aweber autopesponder email list, without creating the form at all in aweber.

Again, how can i center my page in the browser. I did start the buiding the site from farest left & ticked to center it in the browser, as i was told here, but it never centered at all after creating it. you can see it here:

fredpublishing.com

Thank for helping.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old 06-12-2008, 06:10 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

I already modified it for you, in the code i posted above. To further modify, you can either do it in a html editor (even Notepad) if you have the knowledge, or follow the second solution creating the form in BV.

Tha Active X warning will only display in Preview, should not show when published.

Your page will never center because you have set the width to be 820 px. BUT, the top image 8which i can't see, is that a BV shape that has not published ?) is 1046 px wide.
__________________
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!
Reply With Quote
  #9  
Old 06-12-2008, 06:25 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Thank Naval,
I've given up for now. Yes it did't show now that i've published it.

Any idea on centering the page? It looks so odd to view.

Thanks for your wonderful assistance.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old 06-12-2008, 06:29 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

Please read above about centering.

And, i DID explain the way of making the form in BV, in my post with the codes. Please read it again.
__________________
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!
Reply With Quote
  #11  
Old 06-12-2008, 06:52 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Sorry i didn't see it b4, There's no image there yet. It's a bv shape that i'll add image to later.

I did made the width 800px, it did'nt center so i increased it to 820, still the same. Don't know what to put it at to center properly.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old 06-12-2008, 06:54 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

Since your header is 1046, that's what you need to put in there. of course, the page will only center if you have a monitor with more than 1046 resolution, and you have an active window larger than 1046 (some times, side bars "steal" width). If it is less, it will all come to the left
__________________
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!
Reply With Quote
  #13  
Old 06-12-2008, 08:56 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Thanks again Naval,

I've increased the width, & it's fine now. Thanks for your assistance.

Just b4 i leave you, (4 now) please i just want to join vodahost affiliate, but on the form which says "your paypal.com" what goes there. Is it my paypal user name or my paypal user email address.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #14  
Old 06-12-2008, 09:04 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

Your PayPal Username IS your PayPal user email address.
__________________
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!
Reply With Quote
  #15  
Old 06-12-2008, 09:27 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Thanks you're such a great friend in need!!!!!

Thanks for your prompt responses....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #16  
Old 06-12-2008, 09:39 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

You are very welcome !
__________________
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!
Reply With Quote
  #17  
Old 06-18-2008, 04:13 PM
First Sergeant
 
Join Date: Apr 2008
Location: LONDON
Posts: 70
Default Re: How To Use Form With Aweber

Hi Naval,

It's me again. I just wanted to know if there is a script or a way that i can use to insert subsciption email forms i created in aweber that'll remove the empty line and make it simple.

I've been building some web pages with Morzila compozer, but don't know how to remove the empty spaces either in Bv or Morzila composer.They sound too technical for me to accomplish.

Just wanted to know if there is probablly a script or template that can help make this more simple. Am not good at html....

Any suggestions will help. Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #18  
Old 06-18-2008, 04:19 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: How To Use Form With Aweber

You can't. I mean, Aweber forms do NOT exist on your site, they are dynamically created by the Javascript that aweber provides you.
In order to modify the code, as i did, you need to download the entire source Javascript from aweber, open it, modify the Javascript code, and embedd it in your site as i already explained in my above posts.
Alternatively, you can analyze the code, create a BV form that EXACTLY reflects the code from aweber, but with the visual that you want.

I'm afraid that is NOT a simple drag and drop operation as using BlueVoda.
__________________