August 3, 200124 yr Hello, I am trying to build a form whereby a user enters their details and submits them to a database along with attaching their CV (resum
August 3, 200124 yr You would need to use a server-side CGI to perform file uploads (Web Companion won't do it by itself), then store a reference to your filename in your database. We offer the WebStar File Upload plug-in with our accounts, which can easily be combined with LDML/CDML to perform very complex operations. - John
August 8, 200124 yr Author Hello John May - Point In Space, Thank you for responding to my uploading problem. Unfortunately I am not using Webstar but instead Apache 1.3.9. I would appreciate any other advice on this subject. Many thanks Antz......UK
August 8, 200124 yr Hi, I've used a little javascript to open a window to allow ftp upload of files where there's no server-side help. This means an extra action, but they don't have to leave the form page to do it. in the page header: <script language="JavaScript"><!-- function openAWindow( pageToLoad, winName, width, height, center) { xposition=0; yposition=0; if ((parseInt(navigator.appVersion) >= 4 ) && (center)){ xposition = (screen.width - width) / 2; yposition = (screen.height - height) / 2; } args = "width=" + width + "," + "height=" + height + "," + "location=0," + "menubar=0," + "resizable=1," + "scrollbars=1," + "status=0," + "titlebar=0," + "toolbar=0," + "hotkeys=0," + "screenx=" + xposition + "," //NN Only + "screeny=" + yposition + "," //NN Only + "left=" + xposition + "," //IE Only + "top=" + yposition; //IE Only window.open( pageToLoad,winName,args ); } // --></script> for the link: <P><A HREF="javascript: openAWindow('ftp://username: [email protected]/','win1',350,275,0)">Upload file</A></P> REgards, Jeff
August 8, 200124 yr visit this site : http://www.aspsmart.com you can d/l for free a ASP script very powerful.
August 8, 200124 yr Author Hi didier, Thanks for the site but I'm not using ASP or was there something else you meant for me to look at? Antz.....
August 8, 200124 yr You can use filemaker for your dynamic pages & use ASP for uploading only the file in your server. No probs, it 's work .
August 16, 200124 yr I am writing a windows utility that will enable easy file upload. It will work with the fmp-currentrecid tag enabling you to pass through the page for an upload and come back to where you would like to be at the other end. If anyone is interested in full spec please email me. Si
Create an account or sign in to comment