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.

Closed Thread
 
Thread Tools
  #1  
Old 05-20-2006, 08:22 AM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Cool video/image upload script?

I have assigned the following values to my form:
- Action: upload.php
- Method: POST
- EncodingType: multipart/form-data
I have tried for the last 8 hours to use scripts from various threads and they all fail... I am sure that I am missing a critical step. Is there anyone who can walk me thru to the next step... the form is here: www.lost-angelz.com/submit.html I assume the next steps= create an upload folder in the public direct, create an upload.php page on the same public directory. what is the magical php script to make my form work?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #2  
Old 05-20-2006, 10:01 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

<?php

// Receiving variables
@$userfile_Name = $_FILES['userfile']['name'];
@$userfile_Size = $_FILES['userfile']['size'];
@$userfile_Temp = $_FILES['userfile']['tmp_name'];
@$userfile_Mime_Type = $_FILES['userfile']['type'];
@$Name = addslashes($_POST['Name']);
@$E-mail = addslashes($_POST['E-mail']);
@$comment = addslashes($_POST['comment']);
function RecursiveMkdir($path)
{
if (!file_exists($path))
{
RecursiveMkdir(dirname($path));
mkdir($path, 0777);
}
}
if ($userfile_Size>0)
{
// Validation
if( $userfile_Size == 0)
{
header("Location: errorpage.html");
exit;
}
if( $userfile_Size >50000)
{
//delete file
unlink($userfile_Temp);
header("Location: errorpage.html");
exit;
}
$uploadFile = "upload/".$userfile_Name ;
if (!is_dir(dirname($uploadFile)))
{
@RecursiveMkdir(dirname($uploadFile));
}
else
{
@chmod(dirname($uploadFile), 0777);
}
@move_uploaded_file( $userfile_Temp , $uploadFile);
chmod($uploadFile, 0644);
$userfile_URL = "http://www.lost-angelz.com/upload/".$userfile_Name ;
}

//Sending Email to form owner
$pfw_header = "From: $E-mail\n"
. "Reply-To: $E-mail\n";
$pfw_subject = "New File Upload";
$pfw_email_to = "youremail@yourdomain.com";
$pfw_message = "There is a new file uploaded.\n"
. "-----------------------------------\n"
. "File Link: $userfile_URL\n"
. "Name: $Name\n"
. "E-mail: $E-mail\n"
. "Comment: $comment\n";
*****($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ;
header("Location: thankyoupage.html");
?>


Create a folder in your public_html directory, call it "upload" and give it permissions 777.
Copy the code, paste it in notepad, change youremail@yourdomain.com with the real email in your Vodahost account. If you wish the file size limit different than the 50000 bytes i have put in the script, just change it. Go to Save as, choose File Type: All files, and save it as "upload.php" Upload it in your public_html folder.

Create two simple pages in BV, one called "errorpage" (for letting them know that the file is bigger than the allowed limit) and the second one "thankyoupage". Publish them. You are done.
Please note that in the email you will have the file link, so just click on it to openit in your browser. If the file name has blank spaces, then the link will be broken, and you will need to copy the whiole link and paste it in your browser's address bar. If the file is of a type that can't be opened in your browser, just use Blue FTP to download it from your site to your computer and then open it using the appropriate software.
__________________
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!
  #3  
Old 05-20-2006, 05:28 PM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Default Re: video/image upload script?

I copied and pasted the code listed below. I followed all instructions as far as creating folder and php page, thanx and error... I tested the form out, I did a test upload and it seemed to be working but instead of getting a thanks page or an error page i got this:

Parse error: syntax error, unexpected '=' in /home/myusername/public_html/upload.php on line 9

I replaced the correct directory path user name with "myusername" just to protect the account... below is the code I used, Did I mess up with an extra '=' or something?

<?php
// Receiving variables
@$userfile_Name = $_FILES['userfile']['name'];
@$userfile_Size = $_FILES['userfile']['size'];
@$userfile_Temp = $_FILES['userfile']['tmp_name'];
@$userfile_Mime_Type = $_FILES['userfile']['type'];
@$Name = addslashes($_POST['Name']);
@$E-mail = addslashes($_POST['E-mail']);
@$comment = addslashes($_POST['comment']);
function RecursiveMkdir($path)
{
if (!file_exists($path))
{
RecursiveMkdir(dirname($path));
mkdir($path, 0777);
}
}
if ($userfile_Size>0)
{
// Validation
if( $userfile_Size == 0)
{
header("Location: errorpage.html");
exit;
}
if( $userfile_Size >100000)
{
//delete file
unlink($userfile_Temp);
header("Location: errorpage.html");
exit;
}
$uploadFile = "upload/".$userfile_Name ;
if (!is_dir(dirname($uploadFile)))
{
@RecursiveMkdir(dirname($uploadFile));
}
else
{
@chmod(dirname($uploadFile), 0777);
}
@move_uploaded_file( $userfile_Temp , $uploadFile);
chmod($uploadFile, 0644);
$userfile_URL = "<A href="http://www.lost-angelz.com/upload/".$userfile_Name">http://www.lost-angelz.com/upload/".$userfile_Name ;
}
//Sending Email to form owner
$pfw_header = "From: $E-mail\n"
. "Reply-To: $E-mail\n";
$pfw_subject = "New File Upload";
$pfw_email_to = "mye-mail@lost-angelz.com";
$pfw_message = "There is a new file uploaded.\n"
. "-----------------------------------\n"
. "File Link: $userfile_URL\n"
. "Name: $Name\n"
. "E-mail: $E-mail\n"
. "Comment: $comment\n";
*****($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ;
header("Location: thankyoupage.html");
?>

Last edited by navaldesign; 05-20-2006 at 10:35 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old 05-20-2006, 09:21 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

No, the problem seems to be (sorry i didn't see it before) the email field. Take the "-" off both your form and your script. Name the field "Email", and change accordingly all the necessary lines in the script, turning "E-mail" to "Email"
__________________
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!
  #5  
Old 05-20-2006, 09:55 PM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Default Re: video/image upload script?

Navel Design, thanks... I finally got the Thankyou page after testing, so thanks.. funny how 1 little character can throw off the entire form process. EVERYTHING WORKS,thanx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old 05-20-2006, 10:10 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

You are 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!
  #7  
Old 05-20-2006, 10:20 PM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Default Re: video/image upload script?

umm, the script works but in the email I am missing the file link... I even went into the file manager via cpanel x to search... and the folder has no files even though the email says I have a new file upload... here is a copy and paste from the test upload:

There is a new file uploaded.
-----------------------------------
File Link:
Name: Daleon
Email: scar_mega@lost-angelz.com
Comment: my kicks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #8  
Old 05-20-2006, 10:34 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

Sorry, one more mistake on my side. Change the $upload1_Size (blue colour) to $userfile_Size . Copying and pasting from my own scripts sometimes make me forget to correct the variable names. Sorry 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!
  #9  
Old 05-20-2006, 11:23 PM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Default Re: video/image upload script?

Yep, that worked.... but ummm ran into another road block. I got this message when I clicked the link in the e-mail:


There is a new file uploaded.
-----------------------------------
File Link: http://www.lost-angelz.com/upload/airjordaniv.jpg
Name: Daleon
Email: scar_mega@lost-angelz.com
Comment: kicks


the above file link lead to this message:
Forbidden

You don't have permission to access /upload/airjordaniv.jpg on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

also in cpanelx file manager:

Show File Contents <--- this actually opens the file that the link says is forbidden
Delete File
Edit File
Change Permissions
Rename File
Copy File
Move File

File Url: http://www.lost-angelz.com/upload/airjordaniv.jpg <-- leads to forbidden message
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #10  
Old 05-21-2006, 07:24 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

Click on http://www.lost-angelz.com/upload then on airjordaniv.jpg I can see, and i can download the ***** pic, which means that the file permissions are ok. Check the permissions of your "upload" folder.
__________________
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!


Last edited by navaldesign; 05-21-2006 at 08:58 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #11  
Old 05-21-2006, 06:21 PM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Default Re: video/image upload script?

ok... that works, thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #12  
Old 05-21-2006, 06:28 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

So everything ok ?
__________________
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!
  #13  
Old 05-22-2006, 12:59 AM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Default Re: video/image upload script?

It appears so... I have tested the new upload links... sometimes they connect.. sometimes they lead to the forbidden message so what i do when I get the forbidden message is break the link down to: http:lost-angelz.com/upload which takes me to a root directory for the upload folder.. i just click the relating upload file ... its a longer route to get the upload rather than just clicking the link in the e-mails but i can live with it... but like I said, sometimes the link in the e-mail actually opens the file but when i get the forbidden message I just break the link down to the root directory of the folder... So yes.. everything is good..thanks for the script
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #14  
Old 05-22-2006, 06:51 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

You are 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!
  #15  
Old 06-03-2006, 05:23 AM
Private
 
Join Date: May 2006
Posts: 2
Default Re: video/image upload script?

I was trying out this upload script. Everytime I run it I only get the Thank You Page and an email with no infofor link, file etc. Any help will do.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #16  
Old 06-03-2006, 06:58 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

Quote:
Originally Posted by zangoo
I was trying out this upload script. Everytime I run it I only get the Thank You Page and an email with no infofor link, file etc. Any help will do.
Please upload your php script.
__________________
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!
  #17  
Old 06-06-2006, 08:22 PM
bannacom's Avatar
Sergeant
 
Join Date: Jun 2006
Posts: 26
Default Re: video/image upload script?

i used above mentioned instruction and adjusted it for my needs. everything works great except last line "comment". i dont know where is the problem, there is no comment text in email. My form: http://www.bannerclickmania.com/form1.php



<?php

// Receiving variables
@$userfile_Name = $_FILES['userfile']['name'];
@$userfile_Size = $_FILES['userfile']['size'];
@$userfile_Temp = $_FILES['userfile']['tmp_name'];
@$userfile_Mime_Type = $_FILES['userfile']['type'];
@$Name = addslashes($_POST['Name']);
@$Email = addslashes($_POST['Email']);
@$comment = addslashes($_POST['comment']);
function RecursiveMkdir($path)
{
if (!file_exists($path))
{
RecursiveMkdir(dirname($path));
mkdir($path, 0777);
}
}
if ($userfile_Size>0)
{
// Validation
if( $userfile_Size == 0)
{
header("Location: errorpage.html");
exit;
}
if( $userfile_Size >5000000)
{
//delete file
unlink($userfile_Temp);
header("Location: errorpage.html");
exit;
}
$uploadFile = "upload/".$userfile_Name ;
if (!is_dir(dirname($uploadFile)))
{
@RecursiveMkdir(dirname($uploadFile));
}
else
{
@chmod(dirname($uploadFile), 0777);
}
@move_uploaded_file( $userfile_Temp , $uploadFile);
chmod($uploadFile, 0644);
$userfile_URL = "http://www.bannerclickmania.com/upload/".$userfile_Name ;
}

//Sending Email to form owner
$pfw_header = "From: $Email\n"
. "Reply-To: $Email\n";
$pfw_subject = "New File Upload";
$pfw_email_to = "addbanner@bannerclickmania.com";
$pfw_message = "There is a new file uploaded.\n"
. "-----------------------------------\n"
. "File Link: $userfile_URL\n"
. "Name: $name\n"
. "Email: $Email\n"
. "Webpage: $webpage\n"
. "Numbercell: $numbercell\n"
. "Micetext: $micetext\n"
. "Password: $password\n"
. "Comment: $comment\n";
*****($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ;
header("Location: thankyoupage.html");
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #18  
Old 06-06-2006, 08:50 PM
bannacom's Avatar
Sergeant
 
Join Date: Jun 2006
Posts: 26
Default Re: video/image upload script?

I forgot to ask. How to add my option butons to the code?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #19  
Old 06-06-2006, 10:02 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

The two radio buttons should belong to the same group. I don't know why you don't receive the comment textarea content. It looks ok.
__________________
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 06-09-2006, 09:36 PM
VodaHost's Avatar
General & Forum Administrator
 
Join Date: Mar 2005
Location: Wilmington, Delaware USA
Posts: 8,658
Default Re: video/image upload script?

click the below...

http://www.vodahost.com/vodatalk/for...maker-pro.html
__________________
VodaHost
Your Website People!
1-302-283-3777 North America / International
07092887580 / United Kingdom

Military Ranking System Explained


Click Here to take the royal VodaHost Tour
Click Here for the VodaHost Help Centre & Tutorials
Got a question? - Try a forum search! Available at the top of every page!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #21  
Old 10-19-2006, 11:50 PM
lost-angel's Avatar
Sergeant First Class
 
Join Date: Mar 2006
Posts: 54
Default Re: video/image upload script?

Was getting alot of test submissions... blank forms sumitted. This webpage (video upload) has been removed from http://www.lost-angelz.com and replaced with a standard contact form, The script supplied by naval design does work. Page was removed from website only because uploading files was no longer needed. If you do use the script you may want to ad a validator code string to stop blank submissions.
__________________
Lost-Angelz.com ****: http://www.lost-angelz.com/Lost-Angelz****off.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #22  
Old 07-03-2007, 07:15 AM
Private
 
Join Date: Jul 2007
Posts: 3
Smile Re: video/image upload script?

Quote:
Originally Posted by navaldesign View Post
<?php

// Receiving variables
@$userfile_Name = $_FILES['userfile']['name'];
@$userfile_Size = $_FILES['userfile']['size'];
@$userfile_Temp = $_FILES['userfile']['tmp_name'];
@$userfile_Mime_Type = $_FILES['userfile']['type'];
@$Name = addslashes($_POST['Name']);
@$E-mail = addslashes($_POST['E-mail']);
@$comment = addslashes($_POST['comment']);
function RecursiveMkdir($path)
{
if (!file_exists($path))
{
RecursiveMkdir(dirname($path));
mkdir($path, 0777);
}
}
if ($userfile_Size>0)
{
// Validation
if( $userfile_Size == 0)
{
header("Location: errorpage.html");
exit;
}
if( $userfile_Size >50000)
{
//delete file
unlink($userfile_Temp);
header("Location: errorpage.html");
exit;
}
$uploadFile = "upload/".$userfile_Name ;
if (!is_dir(dirname($uploadFile)))
{
@RecursiveMkdir(dirname($uploadFile));
}
else
{
@chmod(dirname($uploadFile), 0777);
}
@move_uploaded_file( $userfile_Temp , $uploadFile);
chmod($uploadFile, 0644);
$userfile_URL = "http://www.lost-angelz.com/upload/".$userfile_Name ;
}

//Sending Email to form owner
$pfw_header = "From: $E-mail\n"
. "Reply-To: $E-mail\n";
$pfw_subject = "New File Upload";
$pfw_email_to = "youremail@yourdomain.com";
$pfw_message = "There is a new file uploaded.\n"
. "-----------------------------------\n"
. "File Link: $userfile_URL\n"
. "Name: $Name\n"
. "E-mail: $E-mail\n"
. "Comment: $comment\n";
*****($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ;
header("Location: thankyoupage.html");
?>


Create a folder in your public_html directory, call it "upload" and give it permissions 777.
Copy the code, paste it in notepad, change youremail@yourdomain.com with the real email in your Vodahost account. If you wish the file size limit different than the 50000 bytes i have put in the script, just change it. Go to Save as, choose File Type: All files, and save it as "upload.php" Upload it in your public_html folder.

Create two simple pages in BV, one called "errorpage" (for letting them know that the file is bigger than the allowed limit) and the second one "thankyoupage". Publish them. You are done.
Please note that in the email you will have the file link, so just click on it to openit in your browser. If the file name has blank spaces, then the link will be broken, and you will need to copy the whiole link and paste it in your browser's address bar. If the file is of a type that can't be opened in your browser, just use Blue FTP to download it from your site to your computer and then open it using the appropriate software.
Hi Dude,

i am working on a very big project and i need this functionality.
User should be able to upload videos in the site. I need the complete code for the form as well as script.
can you please do this favour for me

Thanks
Ramesh
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #23  
Old 07-03-2007, 07:23 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,047
Default Re: video/image upload script?

Creating he code for the form as wel as the script goes beyond this forum limits. However, i suggest that you create your form in BV, and then download and install Advanced BlueVoda Form Processor which will take care of the submission part and will also deliver the files on your desktop as attached files in your email.
__________________
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!
  #24  
Old 07-03-2007, 07:26 AM
Private
 
Join Date: Jul 2007
Posts: 3
Default Re: video/image upload script?

thnx a lot dude. will try the way you suggested and will ping you when if i fall into problem.
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



All times are GMT +1. The time now is 12:55 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