The following  either fails to return anything or is VERY slow in
Revolution:

on mouseup
  set the cursor to 4
  put  "http://"&; fld "host" &"/cgi-bin/" & fld "cgi filename"  into tCGI
  get url tCGI
  put it into fld "returned_data"
end mouseUp

where the following cgi is being called in the above:

responds instantly with data when called  from a browser andwhich used to
work almost (there was a slight lag on data returned)  instantly in
Metacard... and which now fails in Revolution...though occasionally I'll get
something back...after a looong time (several minutes!)


cgi file name : 

check_usage.cgi

#!/usr/local/bin/bash

# make Apache happy with the right html content tags
echo "Content-Type: text/plain"
echo ""

echo "Total disk usage:"
cd $HOME
/usr/bin/du -sk
echo "Quota usage:"
/usr/sbin/quota -v

exit 0

_______________________________________________
improve-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/improve-revolution

Reply via email to