Re: BLOB Storage Errors

2019-07-31 Thread Bob Sneidar via use-livecode
It's okay, it's not something I can implement right away. Besides none of the files I really care about are having an issue, but someone is going to try and insert one of these problem files in the future and it's going to crash a standalone. I'll look into it later. I'll just open a file for

Re: BLOB Storage Errors

2019-07-31 Thread JJS via use-livecode
wel copying the piece of scipt did not go flawless Also i blindly assumed you talked about storing images as BLOB Op 31-7-2019 om 21:37 schreef JJS via use-livecode: *i use something like this: * * * *put base64encode(image "productphoto") into tGT* *put URLencode(tGT) into tPrdFt put "photo

Re: BLOB Storage Errors

2019-07-31 Thread JJS via use-livecode
*i use something like this: * * * *put base64encode(image "productphoto") into tGT* *put URLencode(tGT) into tPrdFt put "phototable=" & tT & "&id=" & gId & "&productphoto=" & tPrdFt into varSendData putĀ  "https://yoursite.com/uploadphoto.php"; into tThis post varSendData to URL tThis* *Note

Re: BLOB Storage Errors

2019-07-31 Thread Tom Glod via use-livecode
I've always avoided using blobs, and have recently been reconsidering (trying to improve performance by not having to baseencode) it. but now I'm back to not wanting to use blobs. I hope someone here can finally clear this up once and for all.how and if to use blobs correctly. Thanks Bob