[twitter-dev] Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
My app http://www.justunfollow.com is just not able to connect to twitter from Google Appengine. It's most probably an app engine issue (none of the app engine apps seem to be able to connect to twitter), but nevertheless I'm writing here to see if it so happened that twitter has blocked access to

[twitter-dev] Re: Retrieving new tweets for 40-60 thousand users

2010-07-23 Thread PBro
Hi, Thanks for the info. We are going to limit the number of friends you can follow to 5 friends per user. So we wil need max 60.000 * 5 = 300.000 streams. We are gonna look into the access levels. Thanks again everybody for the info. Patrick On Jul 21, 12:06 pm, Pascal Jürgens

[twitter-dev] Home_timeline after tweet destroy

2010-07-23 Thread luisg
Hi there... I'm experience something strange, I think... If I do a tweet destroy through my application and after that I get the home_timeline with the property count=20, I'm not getting the 20 tweets that I should get. I'm getting just 19. If I do another tweet destroy and execute home_timeline

Re: [twitter-dev] Home_timeline after tweet destroy

2010-07-23 Thread Pascal Jürgens
Hi Luis, I might be wrong there, but I think this is the way it works because of twitter's caching and distribution architecture. You can never assume to get the full amount of tweets or users - some might be filtered, deleted or whatnot. If you need more, just get the next page/set using

[twitter-dev] Re: Home_timeline after tweet destroy

2010-07-23 Thread luisg
Hi Pascal, Thanks for your reply. What you mean with cursors? I have a way to solve this problem: 1- get the home_timeline 2- count the number of tweets got from (1) and if length 20 I do another home_timeline call with page=2 I think this might work. The problem is, I need to do 2 call to

Re: [twitter-dev] Re: Home_timeline after tweet destroy

2010-07-23 Thread Pascal Jürgens
Hi Luis, yes, that's what I mean. You can either get the second page, or just request some more, as in: http://api.twitter.com/1/statuses/home_timeline.xml?count=25 Pascal On 23.Jul2010, at 11:40, luisg wrote: Hi Pascal, Thanks for your reply. What you mean with cursors? I have a

[twitter-dev] Re: Home_timeline after tweet destroy

2010-07-23 Thread luisg
This means that the count property is not something that you can trust, right? Luis On Jul 23, 11:40 am, luisg luisfmgoncal...@gmail.com wrote: Hi Pascal, Thanks for your reply. What you mean with cursors? I have a way to solve this problem: 1- get the home_timeline 2- count the number

Re: [twitter-dev] Re: Home_timeline after tweet destroy

2010-07-23 Thread Pascal Jürgens
Yes. You can't trust anything on twitter. Hope for good, valid results, prepare for anything else. Pascal On 23.Jul2010, at 15:03, luisg wrote: This means that the count property is not something that you can trust, right? Luis

Re: [twitter-dev] Home_timeline after tweet destroy

2010-07-23 Thread John Kalucki
The count parameter means 'no more than', not 'exactly'. We do read-repair on home timeline status_id-based vectors as we gather the statuses. It's not practical to fan-out deletes to the materialized home timeline vector. In nearly all display cases, displaying 19 or 20 tweets is equivalent. The

[twitter-dev] Open Source CMS Module and Consumer Secret

2010-07-23 Thread MindcrimeNL
I'm sorry if this has been asked before: I've written a twitter module for ClanSphere Clan CMS and I'm now converting it to use OAuth. I finally got it working, but I have question about the Consumer Secret. I registered the application under my twitter account and obtained a Consumer Key and

[twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Paul
Hi Paul, Yep, was referring to the snippet. I've just copy/pasted yours, changed keys and callback URL and your code works for me. I'm afraid the only thing I can suggest is to double-check your consumer key/secret, Cheers, - Paul

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread Livid
I'm getting the same error for my community (with a built-in Twitter OAuth client) running on GAE: http://v2ex.appspot.com Traceback (most recent call last): File /base/python_runtime/python_lib/versions/1/google/appengine/ ext/webapp/__init__.py, line 511, in __call__ handler.get(*groups)

Re: [twitter-dev] Re: Retrieving new tweets for 40-60 thousand users

2010-07-23 Thread John Kalucki
You cannot open 300,000 streams. First, you don't have auth tokens for all of your user's followings. Second, that would be against the access policy. Instead, you can perform this following with elevated access via the 'shadow' role on stream.twitter.com. This will allow you to follow 80,000

[twitter-dev] Re: New SSL certificate issue with WTK 2.5.2

2010-07-23 Thread bjcoredev
How will we be warned when api.twitter.com fixed SSL certificate will be effective ? On 22 juil, 21:17, John Adams j...@twitter.com wrote: Unfortunately, the current situation is that api.twitter.com is on a wildcard certificate. We have plans to move it a fixed SSL certificate in the near

[twitter-dev] API problem when passing since_id

2010-07-23 Thread Roy
Hi, I've been encountering this issue: If I access http://api.twitter.com/1/statuses/user_timeline.json - this is fine. But when I pass since_id like so: http://api.twitter.com/1/statuses/user_timeline.json?since_id=19233157140 I'm getting the Something is technically wrong. error page. I'm

[twitter-dev] Re: is it possible to search replies from a certain status_id?

2010-07-23 Thread arian
in fact tks tsmango Arian On 21 jul, 14:06, tsmango tsma...@gmail.com wrote: Unfortunately, there isn't a single API method that allows this. From the FAQ:http://dev.twitter.com/pages/api_faq#replies Q: How do I get all replies to a particular status? A: For now, there's not a great way

[twitter-dev] UnAuthorized exception

2010-07-23 Thread Georgooty varghese
Dear Twitter, I have created twitter application for tv applications. I have used xauth authentication. First time i have created my application as read only. Then I haven't able to post a tweet, an exception occured, Exception like UnAuthorized?. Then i changed my application setting

Re: [twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread Taylor Singletary
Hi folks on Google App Engine experiencing difficulties, We're looking into it! Taylor On Fri, Jul 23, 2010 at 3:13 AM, Livid v2ex.li...@me.com wrote: I'm getting the same error for my community (with a built-in Twitter OAuth client) running on GAE: http://v2ex.appspot.com Traceback (most

[twitter-dev] Re: Home_timeline after tweet destroy

2010-07-23 Thread luisg
Hi, Thanks for your replies. @John: I check the documentation (http://dev.twitter.com/doc/get/ statuses/user_timeline), and there says: Count 'Specifies the number of records to retrieve. Must be less than or equal to 200. ' Tell me, f you read this, you associate the Cout option to a 'no more

Re: [twitter-dev] Re: Home_timeline after tweet destroy

2010-07-23 Thread John Kalucki
If you want 20, request say 24 and discard the excess? Not an expert on the API at all, -John On Fri, Jul 23, 2010 at 7:11 AM, luisg luisfmgoncal...@gmail.com wrote: Hi, Thanks for your replies. @John: I check the documentation (http://dev.twitter.com/doc/get/ statuses/user_timeline), and

Re: [twitter-dev] UnAuthorized exception

2010-07-23 Thread Taylor Singletary
Hi George, Happy to help but just need to clarify a few things: xAuth isn't something you use when you're executing a Twitter API resource, like posting a tweet or fetching a timeline. You do use OAuth to sign the request. xAuth is just the variation of OAuth that you perform to obtain an OAuth

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
@Taylor Ah! You're my hero! I've been frantically trying to get in touch with anyone and everyone over twitter and google app engine. The App engine folks are yet to read the long thread I've started in their forum. I hope if the issue is on your end you find a fix soon. It's been well over

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Paul S Gutches
ok. thanks for testing! On Jul 23, 2010, at 4:58 AM, Paul wrote: Hi Paul, Yep, was referring to the snippet. I've just copy/pasted yours, changed keys and callback URL and your code works for me. I'm afraid the only thing I can suggest is to double-check your consumer key/secret,

[twitter-dev] Undocumented fields?

2010-07-23 Thread Mark Krieger
I found that statuses/friends and statuses/followers have an undocumented field called next_cursor_str and prev_cursor_str, which are simply the string values of those fields in addition to the digits passed back in next_cursor and prev_cursor. Is this planned to stay this way? (can I rely on them

Re: [twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread Taylor Singletary
Hey all, We're still looking into this. To help us eliminate some possibile issues, can someone who's working behind the Google App Engine IP addresses attempt to connect to both http://api.twitter.com/oauth/request_token and https://api.twitter.com/oauth/request_token and let us know if you're

[twitter-dev] Hosted proxy server service?

2010-07-23 Thread Ryan W
I've given up trying to get anything done with Twitter Search API from Google App Engine because of the rate limiting. Are there any services that provide just proxy hosting, where I can pay a few bucks a month to get a dedicated IP and proxy server running? I'd like to keep it simple and avoid

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
@Taylor The problem is even with the simple search request. So basically its for all API calls to twitter. -Nischal On Jul 23, 8:56 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hey all, We're still looking into this. To help us eliminate some possibile issues, can someone who's

[twitter-dev] Streaming volume dropped x5 in the past few days

2010-07-23 Thread tomz
Not sure if others experienced that same, the tweet volume from the streaming API had been 2-3+million tweets a day a week ago and in the past week it dropped to around 600k/day, any reason for that? Thanks, Tom

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
@Taylor Just checked. I can make calls to google.com through the appengine. So I guess its only twitter calls that are failing which means the issue is on twitter's side. I guess the appengine IPs are being blacklisted? or blocked by twitter? -Nischal On Jul 23, 9:32 pm, nischalshetty

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Paul S Gutches
Ok... looks like there are others who received the same exception error when trying to generate an auth url. So, I switched over to Abraham's routine, which worked, and the oauth_token and verifier came back, but sadly, a new exception was thrown in the twitter-async code I was still

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread Greg Jones
Hi Taylor, It doesn't connect to either http or https. Happy to help testing anything else...app's not live yet, but was a bit of a scare this morning! cheers, Greg On Jul 23, 5:32 pm, nischalshetty nischalshett...@gmail.com wrote: @Taylor The problem is even with the simple search request.

[twitter-dev] Search multiple words and filter it for multiple followed users

2010-07-23 Thread Vijay
Hi, I am trying to search for multiple words and filter it down for multiple users that I have.I have the list of users and I want to search Twitter for the search terms and return results only from the specified users. I tried this search URL to the API:

Re: [twitter-dev] Re: New SSL certificate issue with WTK 2.5.2

2010-07-23 Thread Matt Harris
Hi, I've seen similar reports for other service providers about this issue as well. My concern is wildcard certificates are perfectly valid and are described in RFC2818 [1]. I'm not sure why Sun WTK doesn't support them or of any workarounds but I would suggest asking on their support channels.

[twitter-dev] Status of contributions API?

2010-07-23 Thread @epc
Is there a target for the contributions API opening up? Alternately is there a document somewhere laying out who you need to be / how much it costs to utilize the contributions API? Asking mostly out of curiosity as I work through a new app for a client. -- -ed costello

Re: [twitter-dev] API problem when passing since_id

2010-07-23 Thread Matt Harris
A Something is technically wrong error sometimes happens but normally it goes away when you request again a little bit later. Is this still happening when you make that request? If it is could you let us know the screen name which this is happening to. Best, Matt On Thu, Jul 22, 2010 at 10:59

Re: [twitter-dev] Re: Home_timeline after tweet destroy

2010-07-23 Thread Matt Harris
Thanks for highlighting that this isn't clear. We'll get onto clarifying how count works and update the docs as soon as possible. In the meantime this is how count works: The count parameter tells the API request the maximum number of Tweets to return. The number of Tweets may not be exactly

Re: [twitter-dev] Undocumented fields?

2010-07-23 Thread Matt Harris
Hi Mark, These fields were added in January 2010 to address the problem when the cursors were too long for javascript to handle. The original announcement is on our API Announce list [1] and there are no plans to remove this functionality. Hope that helps, Matt 1.

Re: [twitter-dev] Streaming volume dropped x5 in the past few days

2010-07-23 Thread Matt Harris
Hi Tom, The sampling rates for the Spritzer and Gardenhose streams was changed just over a week ago. You can read more about this in the announcement we made [1] and in a related discussion [2]. Hope that helps, Matt 1.

[twitter-dev] Is there any xauth javascript library?

2010-07-23 Thread David Tavárez
Hi, I want to know if there is a javascript library for xauth... at least an javascript example code to authenticate a twitter user and send signed requests to the API. Thanks.

Re: [twitter-dev] Hosted proxy server service?

2010-07-23 Thread John Adams
Setting up an open (or private) proxy in an attempt to get around our rate limits will possibly result in your application or IP being banned. The rate limits are there so that everyone can share the service. -j On Fri, Jul 23, 2010 at 9:07 AM, Ryan W rwilli...@gmail.com wrote: I've given up

[twitter-dev] Re: Hosted proxy server service?

2010-07-23 Thread Ryan W
Respectively, I'm not trying to get around anything. I'm simply trying to make the Twitter Search API usable from App Engine. A proxy server has been suggested many times before by Twitter employees: -

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
Oh my GOD! I can see it working! Yippe Thank you so much. A post or update on what caused the issue would be welcome! -Nischal On Jul 23, 9:51 pm, Greg Jones psycle@gmail.com wrote: Hi Taylor, It doesn't connect to either http or https. Happy to help testing anything else...app's

[twitter-dev] Twitter4J 2.1.3 is out - with UserStream and YFrog/TwitPic support

2010-07-23 Thread Yusuke Yamamoto
Hi all, Twitter4J is an unofficial, open-sourced, mavenized and Google App Engine/Android ready Java library for the Twitter API released under the BSD license. I'm glad to announce the immediate availability of Twitter4J version 2.1.3. - Download: http://twitter4j.org/en/index.html#download -

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
Alrite, I can see intermittent errors. So all's not well yet... -Nischal On Jul 23, 11:35 pm, nischalshetty nischalshett...@gmail.com wrote: Oh my GOD! I can see it working! Yippe Thank you so much. A post or update on what caused the issue would be welcome! -Nischal On Jul 23, 9:51 

Re: [twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread John Adams
Please post or forward your app's IP range so we can investigate. Thanks. -j On Fri, Jul 23, 2010 at 11:50 AM, nischalshetty nischalshett...@gmail.comwrote: Alrite, I can see intermittent errors. So all's not well yet... -Nischal On Jul 23, 11:35 pm, nischalshetty nischalshett...@gmail.com

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
@John It's hosted on the Google Appengine. I guess you guys are already on it to fix the issue. -Nischal On Jul 23, 11:55 pm, John Adams j...@twitter.com wrote: Please post or forward your app's IP range so we can investigate. Thanks. -j On Fri, Jul 23, 2010 at 11:50 AM, nischalshetty

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Abraham Williams
This is quick and dirty and assumes that oauth_token and oauth_token_secret are set in a session before you are redirected to twitter.com to authorize the application. $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);

[twitter-dev] Breaking change on Lists API endpoint?

2010-07-23 Thread @IDisposable
When trying to translate a list slug to a list ID, we make a call against the API endpoint https://api.twitter.com/1/STLT_Business/lists/tech.xml (where STLT_Business is the Twitter Screen name and tech is the list slug) This returns a nice valid XML like this: list id7866001/id

Re: [twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread Taylor Singletary
Hi Everyone, Here are the details on the issues with Google App Engine. Twitter blocked a portion of the GAE network because an unknown user set up a large proxy farm, forwarding large amounts of traffic to twitter.com. This was probably an attempt to avoid our rate limits, which is against the

[twitter-dev] Re: Undocumented fields?

2010-07-23 Thread Mark Krieger
Wonderful, thanks. VERY helpful. Exactly the problem we were having. Mark On Jul 23, 1:52 pm, Matt Harris thematthar...@twitter.com wrote: Hi Mark, These fields were added in January 2010 to address the problem when the cursors were too long for javascript to handle. The original

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread planetjones
Still not working for me. That's been all day. Mine is GAE too. On Jul 23, 8:08 pm, nischalshetty nischalshett...@gmail.com wrote: @John It's hosted on the Google Appengine. I guess you guys are already on it to fix the issue. -Nischal On Jul 23, 11:55 pm, John Adams j...@twitter.com

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread planetjones
I'm still getting this and have been all day. Please can someone advise what's happening and why Twitter seemingly doesn't want to talk to GAE? On Jul 23, 5:51 pm, Greg Jones psycle@gmail.com wrote: Hi Taylor, It doesn't connect to either http or https. Happy to help testing anything

[twitter-dev] Re: API problem when passing since_id

2010-07-23 Thread Roy
It's happening consistently with me I'm afraid. I'm using my own twitter account for testing: roytang. On Jul 24, 1:36 am, Matt Harris thematthar...@twitter.com wrote: A Something is technically wrong error sometimes happens but normally it goes away when you request again a little bit later.

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
I'm still facing issues. Please help me - http://www.justunfollow.com I have no idea about the IP addresses though. -Nischal On Jul 24, 12:26 am, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Everyone, Here are the details on the issues with Google App Engine. Twitter blocked a

[twitter-dev] Re: Streaming volume dropped x5 in the past few days

2010-07-23 Thread tomz
Matt, Thanks for the info. How do we apply for the Gardenhose access? Now we have 5x extra processing power just idling around:) Thanks, Tom On Jul 23, 1:57 pm, Matt Harris thematthar...@twitter.com wrote: Hi Tom, The sampling rates for the Spritzer and Gardenhose streams was changed just

Re: [twitter-dev] Status of contributions API?

2010-07-23 Thread Taylor Singletary
Our focus has veered a bit on the Contributors API -- the feature itself continues to be evaluated and utilized by a few accounts, but the actual API expression of using Contributor features is on hold for now as we focus on more important things. Would certainly make for some great client

Re: [twitter-dev] Breaking change on Lists API endpoint?

2010-07-23 Thread Taylor Singletary
Thanks for your good-humored analysis of the issue. This is a new feature we haven't documented or announced yet, and causes a conflict we should have obviously thought more deeply about in advance. Here's a work around to access the same end point you know and love for lists named all:

[twitter-dev] Still having issues, though less.

2010-07-23 Thread George McBay
The Twitter app I run is still having issues with URL requests right now though far less than it did previously. Previously like 90% of all calls were failing, now it seems like about 50/50 success/fail... better, but still unreliable.

[twitter-dev] xAuth

2010-07-23 Thread DrewC
I'm getting a 401 when I try to use xAuth in my iPhone app. Is this occurring for others?

[twitter-dev] Re: Breaking change on Lists API endpoint?

2010-07-23 Thread @IDisposable
Thanks for your good-humored analysis of the issue. This is a new feature we haven't documented or announced yet, and causes a conflict we should have obviously thought more deeply about in advance. Okay, so I read into this that it is going to stay... can you then correct the return type to

[twitter-dev] Re: Hosted proxy server service?

2010-07-23 Thread Livid
I bought an instance from Rackspace Cloud http://rackspacecloud.com/ and installed Nginx for that purpose. Now it works great and only cost 12 bucks a month. @livid On Jul 24, 2:31 am, Ryan W rwilli...@gmail.com wrote: Respectively, I'm not trying to get around anything.  I'm simply trying to

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread Livid
Hi Taylor, I think it's almost impossible to determine the originated IP, because every time Google uses a different server to request, and in theory only the requested ends (Twitter) can see the originated IPs. My app is http://v2ex.appspot.com/ , now is still experiencing the problem from time

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Paul S Gutches
Thanks Abraham. I'm still a bit baffled, but I'm sure the origin is local, haha. I used your testing routine with the Sign in to Twitter dialog to try to access the account token and secret for storage. In your redirect.php file, it does look like you are setting session vars in there

[twitter-dev] Re: Status of contributions API?

2010-07-23 Thread @epc
On Jul 23, 4:08 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Our focus has veered a bit on the Contributors API -- the feature itself continues to be evaluated and utilized by a few accounts, but the actual API expression of using Contributor features is on hold for now as we

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread Marco Gomes
I am with same problema, DownloadError: ApplicationError: 2 On both my GAE apps: http://apoiomaisfeliz.appspot.com/ http://apoio.minhamarina.org.br/ Can Twitter API block the proxy farm without stopping our permitted apps? On Jul 23, 4:26 pm, Taylor Singletary taylorsinglet...@twitter.com

Re: [twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread John Adams
About thirty minutes ago we lifted all of the blocks on Google App engine IPs; You should no longer have issues connecting from GAE to us. -j On Fri, Jul 23, 2010 at 3:06 PM, Marco Gomes mvtgo...@gmail.com wrote: I am with same problema, DownloadError: ApplicationError: 2 On both my GAE

Re: [twitter-dev] Re: API problem when passing since_id

2010-07-23 Thread Matt Harris
Hey Roy, Is this running on Google App Engine? We have some problems earlier today which may have been causing this for you. If not can you try running: curl http://api.twitter.com/1/statuses/user_timeline.json?since_id=1923315\screen_name=roytang and let me know if that works for you. Matt

Re: [twitter-dev] Still having issues, though less.

2010-07-23 Thread Matt Harris
Hey George, Can you give an example of the calls that are not working and the responses you are getting? Is this application running on your server or on a cloud solution? Matt On Fri, Jul 23, 2010 at 1:19 PM, George McBay george.mc...@gmail.comwrote: The Twitter app I run is still having

Re: [twitter-dev] Re: xauth token exchange failing

2010-07-23 Thread Matt Harris
As far as we know this is resolved and things should be working fine. I'm not familiar with your setup so need to ask if you applied for xAuth and were granted it? If not that will be the causes of the 401. If you did what API call are you trying to make and what does your signature base string

[twitter-dev] Re: Not able to connect to twitter API from Google Appengine

2010-07-23 Thread nischalshetty
@John Thank you very much for lifting the ban. It's working now. Our apps depend completely on Twitter. I have been working and putting in a lot of time and effort (and money on app engine for the resources) to manage my app http://justunfollow.com My app gets a good number of users and I have

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Abraham Williams
Hello Paul, In redirect.php the request token (also called temporary credentials) are one use. After the user returns from twitter.com having authorized the application they are exchanged for an access token from Twitter which is long lasting and what you are after. If the request token is not

[twitter-dev] Re: Hosted proxy server service?

2010-07-23 Thread Ryan W
@livid thanks for the recommendation. Sounds like that's the way to go. On Jul 23, 1:55 pm, Livid v2ex.li...@me.com wrote: I bought an instance from Rackspace Cloudhttp://rackspacecloud.com/ and installed Nginx for that purpose. Now it works great and only cost 12 bucks a month. @livid On