Web Hosting Vodahost    
Home Take a Tour Testimonials Tutorials Features Products & Prices Search Engine Submission Help Me Order Now!
Go Back   Web Hosting > BlueVoda Website Builder Forums > BlueVoda Tips, Tricks and Shortcuts
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

BlueVoda Tips, Tricks and Shortcuts Know a great BlueVoda (or Web design) tip or trick? Share it with the world here. Become famous for your brilliance! Please, No Questions or Problems!

Welcome to VodaHost!

The official web hosting company for the BlueVoda Website Builder. You are currently viewing our support forum as a guest which gives you limited (read only) access. By joining support forum you will be able to ask questions and participate in discussions. Registration is fast and simple. Click Here To Join our support forum today! We look forward to helping you build and publish a fantastic website.

Reply
 
Thread Tools
  #91  
Old 01-23-2008, 11:46 PM
EricPSF's Avatar
EricPSF EricPSF is offline
Second Lieutenant
 
Join Date: Oct 2006
Location: Singapore
Posts: 106
Default Re: Tell A Friend Script

Hi George,

I have managed to create a link in the forum by linking it as http://domainname.com/TAF.html. But do you hv any ideas in as how to set the width=310 and height=170 of the window??

Thank you very much.

Regards,
Eric
__________________
Cheers,
Eric PSF
www.BabyandPapa.com
- A Place To Know Your Babies Well

BabyandPapa.com Forums
- It's FREE! Join now!

Papa Eric's Blog
- A Parenting Blog

Reply With Quote
  #92  
Old 01-24-2008, 07:02 AM
navaldesign's Avatar
navaldesign navaldesign is offline
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 8,552
Default Re: Tell A Friend Script

That is what i meant, you can't use the Javascript because the forum script strips it off. It works as entire page because there is no Javascript in a simple link.
__________________
Navaldesign
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!
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTS Logger: A DB driven, Multifeatured , Customized Login script
Reply With Quote
  #93  
Old 01-25-2008, 01:27 AM
EricPSF's Avatar
EricPSF EricPSF is offline
Second Lieutenant
 
Join Date: Oct 2006
Location: Singapore
Posts: 106
Default Re: Tell A Friend Script

Hi George,

Ic. Thank you for yr help and info.

Nice day!
__________________
Cheers,
Eric PSF
www.BabyandPapa.com
- A Place To Know Your Babies Well

BabyandPapa.com Forums
- It's FREE! Join now!

Papa Eric's Blog
- A Parenting Blog

Reply With Quote
  #94  
Old 03-01-2008, 05:10 AM
odavonline odavonline is offline
Private
 
Join Date: Feb 2008
Posts: 2
Default Re: Tell A Friend Script

Hi Naval,

Good Day.

I am using your form already for "Tell a Friend", however, when i tested &/or "submit" it, it doesn't show me the thank you message. I also try testing to input an error email address but it doest return me with my Error Link Messages. I followed exactly your procedure stated above however i am affraid i missed one. I already uploaded TAF in my control panel & edited some of the portion like names of link. Here's the TAF format i copied from my control panel:

<?php
# ----------------------------------------------------
# -----
# ----- This script was created by DB Technosystems.com
# -----
# ----- http://www.dbtechnosystems.com
# -----
# ----------------------------------------------------

// Receiving variables
@$Subject = addslashes($_POST['Subject']);
@$Mailbody = $_POST['Mailbody'];
@$Friendsemail = addslashes($_POST['Friendsemail']);
@$Youremail = addslashes($_POST['Youremail']);
@$Yourname = $_POST['Yourname'];
$Yourname = stripslashes($Yourname);
$$Friendname = stripslashes($Friendname);
$Mailbody = stripslashes($Mailbody);

// Validation

if (strlen($Friendsemail) == 0) {
header("Location: MailerError.html");
exit;
}
if (strlen($Youremail) == 0) {
header("Location: MailerError.html");
exit;
}
if (substr_count($Friendsname , '@') > 1) {
header("Location: SpammerError.html");
exit;
}
if (substr_count($Friendsname , 'www.') > 1) {
header("Location: SpammerError.html");
exit;
}
if (substr_count($Friendsname , 'http:') > 0) {
header("Location: SpammerError.html");
exit;
}
if (! ereg('[A-Za-z0-9_-]+\@[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+', $Friendsemail))
{
header("Location: MailerError.html");
exit;
}
if (! ereg('[A-Za-z0-9_-]+\@[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+', $Youremail))
{
header("Location: MailerError.html");
exit;
}
if (substr_count($Friendsemail , '@') > 1) {
header("Location: MailerError.html");
exit;
}
if (substr_count($Friendsemail , 'www.') > 0) {
header("Location: SpammerError.html");
exit;
}
if (substr_count($Friendsemail , 'http:') > 0) {
header("Location: SpammerError.html");
exit;
}

if (substr_count($Youremail , '@') > 1) {
header("Location: MailerError.html");
exit;
}
if (substr_count($Youremail , 'www.') > 0) {
header("Location: SpammerError.html");
exit;
}
if (substr_count($Youremail , 'http:') > 0) {
header("Location: SpammerError.html");
exit;
}

if (substr_count($Subject , '@') > 0) {
header("Location: MailerError.html");
exit;
}
if (substr_count($Subject , 'http:') > 0) {
header("Location: MailerError.html");
exit;
}
if (substr_count($Subject , 'www') > 0) {
header("Location: MailerError.html");
exit;
}
if (substr_count($Mailbody , '@') > 0) {
header("Location: SpammerError.html");
exit;
}
if (substr_count($Mailbody , 'http:') > 1) {
header("Location: SpammerError.html");
exit;
}
if (substr_count($Mailbody , 'www.') > 1) {
header("Location: SpammerError.html");
exit;
}



//Sending Email to the Friend's email address
$header = "From: $Yourname < $Youremail >" . "\r\n";
$subject = $Subject;
$email_to = $Friendsemail;
$message = "Hi $Friendsname,\n"
. "$Mailbody\n"
. "\n"
. "Bye, \n"
. $Yourname;
*****($email_to, $subject ,$message ,$header ) ;
header("Location: Return.html");
?>


I am glad to receive feedback from you. Thanks & God Bless.

Best regards,


Dimz
Reply With Quote
  #95  
Old 03-01-2008, 06:26 AM
navaldesign's Avatar
navaldesign navaldesign is offline
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 8,552
Default Re: Tell A Friend Script

Did you upload the error pages?
if yes, please provide a link to the page with the TAF buton.
__________________
Navaldesign
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!
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTS Logger: A DB driven, Multifeatured , Customized Login script
Reply With Quote
  #96  
Old 03-16-2008, 08:34 PM
JackJack JackJack is offline
Private
 
Join Date: Jan 2008
Posts: 4
Red face Re: Tell A Friend Script

Hi
My name is jackjack and I must be really dumb because I want to use this tell a friend form. I can't seem to get the knack of it. I need step by step Instructions. I am completly lost. I downloaded the TAF.php and that is as far as I got I am struck. Can someone please help.

Any and all help is greatly appreciated.

jackjack
__________________

Reply With Quote
  #97  
Old 03-17-2008, 07:28 AM
navaldesign's Avatar
navaldesign navaldesign is offline
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 8,552
Default Re: Tell A Friend Script

If you read the very first post in this thread, you will see that it does contain step by step instructions
__________________
Navaldesign
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!
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTS Logger: A DB driven, Multifeatured , Customized Login script
Reply With Quote
  #98  
Old 04-17-2008, 10:13 PM
adele1972's Avatar
adele1972 adele1972 is offline
Captain
 
Join Date: Nov 2007
Posts: 244
Default Re: Tell A Friend Script

hi Navaldesign
thanks for the script....works a treat!!!! :)
__________________
Organic Baby
www.little-butterfly.co.uk
Please review my site: Thank You :)
www.qype.co.uk/place/113508-little-butterfly-Huddersfield
Reply With Quote
  #99  
Old 04-22-2008, 08:45 PM
sbrown1211's Avatar
sbrown1211 sbrown1211 is offline
Corporal
 
Join Date: Apr 2008
Location: Annapolis, Maryland
Posts: 9
Default Re: Tell A Friend Script

What exactly is TAF used for? To notify people when your site is debuting? Thanks,
Sandi
Reply With Quote
  #100  
Old 04-22-2008, 08:52 PM
navaldesign's Avatar
navaldesign navaldesign is offline
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 8,552
Default Re: Tell A Friend Script

To let spread the word about your website. An easy way to let more people know about your site.
__________________
Navaldesign
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!
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTS Logger: A DB driven, Multifeatured , Customized Login script
Reply With Quote
  #101  
Old 04-23-2008, 02:53 AM
sbrown1211's Avatar
sbrown1211 sbrown1211 is offline
Corporal
 
Join Date: Apr 2008
Location: Annapolis, Maryland
Posts: 9
Default Re: Tell A Friend Script

Is there any way I can share my work so far with my sister in another state? I've tried copying the pages and emailing them to her but she can't open them. She was going to help me with the design and give suggestions. Does she have to download Blue Voda and if she does, can she then access my work so far? Thanks for your help,
Sandi
www.ourenchantedchildren.com
Reply With Quote
  #102  
Old 04-23-2008, 05:50 AM
navaldesign's Avatar
navaldesign navaldesign is offline
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 8,552
Default Re: Tell A Friend Script

Yes, she can download BV and then she will be able to open the pages. She might have to re-establish the path to the images.

Please open new threads about your issues, this thread (as any other existing) is for a a different subject.
__________________
Navaldesign
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!
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTS Logger: A DB driven, Multifeatured , Customized Login script
Reply With Quote
  #103  
Old 04-23-2008, 03:04 PM
sbrown1211's Avatar
sbrown1211 sbrown1211 is offline
Corporal
 
Join Date: Apr 2008
Location: Annapolis, Maryland
Posts: 9
Default Re: Tell A Friend Script

Sorry, I couldn't figure out how to open a new thread.
Reply With Quote
  #104  
Old 04-23-2008, 04:01 PM
sedona sedona is offline
Brigadier General
 
Join Date: Jun 2007
Location: Sedona. Arizona
Posts: 1,205
Default Re: Tell A Friend Script

Find the proper category for your question. At the top left you will see the new thread button.

If you are in the right category however if you look through the posts already there before posting you may well find the answer you seek.
__________________
Ken

If there hadn't been women we'd still be squatting in a cave eating raw meat, because we made civilization in order to impress our girl friends. And they tolerated it and let us go ahead and play with our toys. Orson Wells
Reply With Quote
  #105  
Old 04-30-2008, 03:47 AM
1alvinnewton 1alvinnewton is offline
Sergeant
 
Join Date: Nov 2007
Location: San Diego Ca.
Posts: 25
Default Re: Tell A Friend Script

The script works great!

However I cannot open up the ATF.PHP form page in BV, I had to upload itthrough FTP. The questio I have is when somebody puts in there name email and then there friends name and e-mail, how do I get that info? The whole pupose of haveing a form like that is to see who is submitting leads and captureing prospects? I would assume an email address needs to be put in the PHP page somewhere, and I do I do it?

I tested the form and it did send the email to the friends email adress, but where do I as the web designer get that info sent to me?
__________________
Alvin Newton
President
Newton Digital Marketing
MTBAlvin******.com

OneShopAuto.com
TahoeHybrid.com
TheChevyMalibu.com
SimpleGirlz.com
Reply With Quote
  #106  
Old 04-30-2008, 06:19 AM
navaldesign's Avatar
navaldesign navaldesign is offline
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 8,552
Default Re: Tell A Friend Script

Quote:
Originally Posted by 1alvinnewton View Post
The script works great!

However I cannot open up the ATF.PHP form page in BV, I had to upload itthrough FTP. The questio I have is when somebody puts in there name email and then there friends name and e-mail, how do I get that info? The whole pupose of haveing a form like that is to see who is submitting leads and captureing prospects? I would assume an email address needs to be put in the PHP page somewhere, and I do I do it?

I tested the form and it did send the email to the friends email adress, but where do I as the web designer get that info sent to me?
The TAF script is NOT for you to collect email addresses, it is for site visitors to let some of their friends know about your website. So it only sends the email to the "friend".

Also, the TAF.php file is NOT intended for opening in BV (read the instructions) but only for uploading to the site. It is the php script that processes the mail request
__________________
Navaldesign
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!
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTS Logger: A DB driven, Multifeatured , Customized Login script
Reply With Quote
  #107  
Old 04-30-2008, 09:15 PM
1alvinnewton 1alvinnewton is offline
Sergeant
 
Join Date: Nov 2007
Location: San Diego Ca.
Posts: 25
Default Re: Tell A Friend Script

Thank you,

By the way this script is Awsome!!!
__________________
Alvin Newton
President
Newton Digital Marketing
MTBAlvin******.com

OneShopAuto.com
TahoeHybrid.com
TheChevyMalibu.com
SimpleGirlz.com
Reply With Quote
  #108  
Old 05-01-2008, 07:44 PM
Grumpy68 Grumpy68 is offline
Private First Class
 
Join Date: Apr 2008
Location: East Coast
Posts: 6
Question Re: Tell A Friend Script

Hi all,

I must be dumb. I downloaded The TAF file and found it in my computer. Now I go and try and open them in BV and all I get is a blank page with that box asking to open in new window or existing page, I can't figure out what to do am I missing something. I have spent the last 2 days trying this and I can not get anywhere.
Please can someone help. I'm missing something, I just know it.

Best Regards

Chuck
__________________
www.grumpyscountrystore.com Still a work in progress.

www.yourwaterfountains.com Also am still working on it.
Reply With Quote
  #109  
Old 05-01-2008, 08:26 PM
navaldesign's Avatar
navaldesign navaldesign is offline
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 8,552
Default Re: Tell A Friend Script

Only open the pages with the .bvp extension. The others, which are php need to be uploaded on the site. Please follow the instructions included in the Word Tutorial included in the zip.
__________________
Navaldesign
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!
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTS Logger: A DB driven, Multifeatured , Customized Login script
Reply With Quote
Reply


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Forum Jump


All times are GMT +1. The time now is 06:47 AM.


Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.0.0 RC2
2007 VodaHost.com - 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