Jump to content

spcalia

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by spcalia

  1. This is a goofy thing. Tried it in FM 7 and 8 with the same result. Defined a field on a layout as a pop-up menu. Menu behaves correctly in find mode, but not in browse mode. Any ideas of what to check?
  2. I am getting the following in the web-server-module-log.txt [jk_ajp_common.c (1198)]: Error connecting to tomcat. This used to work. I have deleted everything and reinstalled WPE, but keep getting 'Internal Server Error' Anyone seen this before? Ideas? Thank you in advance for you help.
  3. You need to add the encoding in lasso 3.6.x. You can use [Field:'Field_Name', EncodeRaw] From the manual The EncodeRaw keyword encodes the substitution value according to the ISO Latin-1 character set.
  4. The problem has to do with MIME encoding. In this case the mailer is not making the proper conversion. To add a little extra to this is that Mac and PC mailers encode differently. I would look at the way you are sending this to see what encoding they are doing. I used a FM plug-in for mail that broke at one point until the developer added the correct encoding.
  5. I put an example of how to do this in perl in the upload & PHP thread.
  6. This can also be done eaily in perl. The form gary uses would be the same except that the action would be the perl script instead. The script uses the perl module CGI.pm. Here is sample code #! /usr/bin/perl use CGI qw/:standard/; #################### #Global Variables #################### $officeUsername ='test'; $officePassword = 'upload'; #################### print header, start_html(-title=>'File Upload', -bgcolor=>'#ffffff'), h2('File Upload'); print_form() unless param; #print form if not filled out print_results() if param; #process if form filled in print end_html; exit; sub print_form { print start_multipart_form, " Username: ", textfield(-name=>'username', -size=>10),br, " ", " Password:", textfield(-name=>'password', -size=>10), " ", " File to upload:", filefield(-name=>'upload',-size=>20), " ", submit(-label=>'Upload File'), end_form; } sub print_results { my $length; my $username = param('username'); my $password = param('password'); my $file = param('upload'); if(!$file && $username != $officeUsername && $password != $officePassword) { print "No file uploaded. Username/password combination incorrect or no file chosen. Please try again."; return; } #upload and save file open (SAVE,">./saved_file.txt") || die $!; while (<$file>) { print SAVE $_; } close SAVE; print h2('File: ',$file,' --Uploaded Successfully'); }
  7. I have been a lasso developer for many years and believe me I never used Web Companion until I developed for use on a Windows machine.
  8. WC is onlu needed if you are using a Win2K server.
  9. Definitely no licensing issues with Lasso 3.x and FMP 4.1? Not sure about LP5.
  10. The tool I have used to remotely admin is Timbuku. I don't know of another way to remotely adminstrate a server.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.