Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dreamweaver and downloads

Status
Not open for further replies.

Bastien

Programmer
May 29, 2000
1,683
CA
I have the following code snippet created by dreamweaver/fireworks...how can I get it to FTP the file to the user's system?

function fwLoadMenus() {
if (window.fw_menu_0) return;
window.fw_menu_0 = new Menu(\"root\",100,16,\"Verdana, Arial, Helvetica, sans-serif\",9,\"#ffcc33\",\"#ff0000\",\"#000000\",\"#000084\");
fw_menu_0.addMenuItem(\"ASP Projects\",\"location='asp1.php'\");
fw_menu_0.addMenuItem(\"PHP Projects\",\"location='php.php'\");
fw_menu_0.addMenuItem(\"Access Projects\",\"location='access.php'\");
fw_menu_0.fontWeight=\"bold\";
fw_menu_0.hideOnMouseOut=true;
window.fw_menu_1 = new Menu(\"root\",81,16,\"Verdana, Arial, Helvetica, sans-serif\",9,\"#ffcc33\",\"#ff0000\",\"#000000\",\"#000084\");
fw_menu_1.addMenuItem(\"View Online\",\"location='resume.php'\");
fw_menu_1.addMenuItem(\"Download\",\"location='BastienKoertRes3.doc'\" );
fw_menu_1.fontWeight=\"bold\";
fw_menu_1.hideOnMouseOut=true;

TIA Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Hi Bastien,
I have just checked your code snippet. In that code block, you have specified as
---------------------------------------------
fw_menu_1.addMenuItem(\"Download\",\"location='BastienKoertRes3.doc'\" );
---------------------------------------------

All you need to do is to change the location value as
ftp://<yourserver address>:<serverport>/fullpath of file

------------------------------------------------
I hope it will serve your purpose.

 
Hi,

Actually I had that there, the real issue is that the host does not allow anonymous FTP from the site...so whatever code I had would not work.

thanks

Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top