Re: Hosting LiveCode stacks

2014-05-07 Thread Monk in Exile
Well at least it's a real name - not a suburb of London. Anyway thanks. On 7 May 2014 18:38, Richmond wrote: > On 07/05/14 19:32, Monk in Exile wrote: > >> Thanks Simon and Richard - so I guess "application/octet-stream" is the >> way >> to go. I'm pretty sure I remember something about "applic

Re: Hosting LiveCode stacks

2014-05-07 Thread Richmond
On 07/05/14 19:32, Monk in Exile wrote: Thanks Simon and Richard - so I guess "application/octet-stream" is the way to go. I'm pretty sure I remember something about "application/livecode" beign registered? Who's "Richard" ? ___ use-livecode mailin

Re: Hosting LiveCode stacks

2014-05-07 Thread Monk in Exile
Thanks Simon and Richard - so I guess "application/octet-stream" is the way to go. I'm pretty sure I remember something about "application/livecode" beign registered? On 6 May 2014 19:27, Simon Smith wrote: > Hi > > You could just ftp the files up, zip them, or the add the following to your > t

Re: Hosting LiveCode stacks

2014-05-06 Thread Simon Smith
Hi You could just ftp the files up, zip them, or the add the following to your themes functions.php file: add_filter('upload_mimes', 'add_custom_upload_mimes'); function add_custom_upload_mimes($existing_mimes) { $existing_mimes['livecode'] = 'application/octet-stream'; return $existing_mimes; }

Re: Hosting LiveCode stacks

2014-05-06 Thread Richmond
On 06/05/14 19:12, Monk in Exile wrote: I want to host some LiveCode sites on a WordPress blog. For this I need to add the mime-type of LiveCode to enable upload and download. in the terminal (on OSX), if I use: file --mime Tuna.livecode Returns: application/octet-stream; charset=binary Or i

Hosting LiveCode stacks

2014-05-06 Thread Monk in Exile
I want to host some LiveCode sites on a WordPress blog. For this I need to add the mime-type of LiveCode to enable upload and download. in the terminal (on OSX), if I use: file --mime Tuna.livecode Returns: application/octet-stream; charset=binary Or is there a LiveCode specific mime type I sh