Re: creating a virtual file

2011-01-25 Thread Phil Pirozhkov
Take a look how you can hook File calls. https://github.com/pirj/distributed-shelf If you figure out the file is read orr written, you can fetch/update your DB, or redis as suggested. On Jan 24, 11:37 pm, bluewave shai.sayfanalt...@googlemail.com wrote: I have an application I want to use

Re: Let user download a file from tmp folder

2010-12-14 Thread Phil Pirozhkov
Or you can use DistributedShelf extension, it's in Alpha, but lets you store 100Mb files and access them as they were stored locally, using File https://distributedshelf.com I'm planning to give 100Mb storage in Free plan when it's out of beta. Phil On Dec 13, 1:18 pm, Petros Amiridis

Re: S3 image uploads with paperclip and delayed_job in Rails 3

2010-11-05 Thread Phil Pirozhkov
I would go for async load+upload and avoided delayed job Not really sure if this is possible with paperclip On Nov 5, 3:53 pm, adriaan adri...@infoding.com wrote: My app requires image upload functionality for users to upload images. I successfully implemented image uploads to S3 using

Re: Older versions of Safari and Hostname Based Custom SSL

2010-10-24 Thread Phil Pirozhkov
3.1.1 running on OS X 10.4.11 On Oct 20, 5:43 pm, Chap chapambr...@gmail.com wrote: Phil, which version of Safari are you seeing that error in? On Oct 16, 2:40 am, Phil Pirozhkov pirjs...@gmail.com wrote: Safarican’t open the page.Safarican’t open the page “https://api.heroku.com/login

Re: Older versions of Safari and Hostname Based Custom SSL

2010-10-24 Thread Phil Pirozhkov
Yeah! Works for me now as well. Thanks guys! Phil On Oct 23, 4:24 am, Kyle Wilkie k...@eventdatasolutions.com wrote: Kyle Wilkie k...@... writes: Chap chapambr...@... writes: Anyone have problems using the Hostname Based Custom SSL and older versions of Safari throwing errors such as

Re: Outbound IP address

2010-10-24 Thread Phil Pirozhkov
Just buy/request a free client certificate for that purposes and do not rely on IP Phil On Oct 23, 12:25 am, Mike Doel m...@mikedoel.com wrote: I imagine this is in TFM somewhere, but my google skills are failing me. If we have paid for the custom SSL package, will traffic outbound from our

Re: Older versions of Safari and Hostname Based Custom SSL

2010-10-24 Thread Phil Pirozhkov
3.1.2, latest Safari 3, OSX 10.4.11 BR, Phil On Oct 20, 5:43 pm, Chap chapambr...@gmail.com wrote: Phil, which version of Safari are you seeing that error in? On Oct 16, 2:40 am, Phil Pirozhkov pirjs...@gmail.com wrote: Safarican’t open the page.Safarican’t open the page “https

new addon in alpha: Distributed shelf: you can use File API in read-write mode

2010-10-24 Thread Phil Pirozhkov
Hi disclaimer: I've posted to Heroku beta users, but only one alpha user came, so addressing here. I personally tend to think the addon is very userful. It allows for the usage of File (Dir/IO/FileUtils) API in read-write mode. All data is stored on a remote server. Basically this will allow

Re: new addon in alpha: Distributed shelf: you can use File API in read-write mode

2010-10-24 Thread Phil Pirozhkov
Added Rails 3 usage example: http://distributedshelfexamplerails.heroku.com/upload Source code: http://github.com/pirj/distributed-shelf-example-rails Added Sinatra/Padrino usage example: http://distributedshelfexample.heroku.com/ Source code: http://github.com/pirj/distributed-shelf-example