Search found 6 matches

by Dimaxter
Fri Apr 13, 2012 1:56 pm
Forum: Linux
Topic: LiveCode 5.5.0 Linux Memory leak... Again!
Replies: 44
Views: 46076

Re: LiveCode 5.5.0 Linux Memory leak... Again!

I can confirm this. On my system with Kubuntu 11.10 64bit I'm experiencing huge Memory Leak when resizing/manipulating graphic objects on LC 5.5. LC4.5 works fine.
Xorg RAM usage went from 1.3% up to 31.9% in less than a minute, that is about 2.5GB of RAM!

Test System:
CPU: Intel i5
RAM: 8GB DDR3 ...
by Dimaxter
Fri Apr 03, 2009 3:27 pm
Forum: Internet
Topic: create FTP Client
Replies: 8
Views: 10819

Resolved:



write "PASV" &CRLF to socket FTP
read from socket FTP until CRLF
put it after fld "connectInfo"

#ENCODE IP & PORT
put empty into SIP
put offset ("(", it) into st
put offset (")", it) into en
put char st+1 to en-1 of it into pasvIP
set itemdel to ","
repeat for each item X in ...
by Dimaxter
Fri Apr 03, 2009 1:50 am
Forum: Internet
Topic: create FTP Client
Replies: 8
Views: 10819

Hi Dimaxter,

You can do that within the built-in commands and whenever you get stuck you can use the lubUrlFtpCommand command.

Best,

Mark


get libURLftpCommand ("LIST",FTP&":21",user,passwd)
put it


All the same error:

425 Unable to build data connection: Invalid argument
by Dimaxter
Thu Apr 02, 2009 5:56 pm
Forum: Internet
Topic: create FTP Client
Replies: 8
Views: 10819

We need to continuously update the server files and folders are on the local computer in the selected folder
by Dimaxter
Thu Apr 02, 2009 2:13 pm
Forum: Internet
Topic: create FTP Client
Replies: 8
Views: 10819

Hi Dimaxter,

Perhaps you should try sending PASV first.

Btw I created a simple FTP client without figuring out the FTP protocol, by using Rev's built-in libUrl commands.

Best,

Mark

With the Rev's built-in libUrl commands I tried - is not enough! You need to create a directory on the server ...
by Dimaxter
Wed Apr 01, 2009 8:11 pm
Forum: Internet
Topic: create FTP Client
Replies: 8
Views: 10819

create FTP Client

Please HELP! Problem "425 Unable to build data connection: Connection refused"

on mouseUp
put hostnameToAddress("www.site.com") into FTP
put ":21" after FTP
open socket to FTP
get result()
put it after field "connectInfo"

write "USER mylogin" &CRLF to socket FTP
read from socket FTP until ...