cloudfiles is a python binding library for the Rackspace Cloud Files API.

learn more… | top users | synonyms

0
votes
1answer
51 views

Force expiring OpenStack Swift Tokens

Is there a way to force expire or revoke OpenStack Swift Tokens? I am looking some API method to do this. Bing / Google search didn't return anything useful.
0
votes
1answer
90 views

how to upload a Cloud File on Rackspace and set delete at or file expiry?

I'm on a local XAMPP setup and I can upload a file ok, but I need to set an expiry or delete time. This does not work (no PHP errors but the file is still there on the Rackspace, web admin page): ...
0
votes
1answer
167 views

rackspace cloudfiles delay before on CDN after upload

I am implementing rackspace cloudfiles for a site. If a user uploads a profile image we want to store it on cloudfiles in a CDN enabled container. This works only it takes a couple of secs before the ...
0
votes
1answer
23 views

Python Fileconveyor Naming Issues

Is there any way to get Fileconveyor(https://github.com/wimleers/fileconveyor) to create files on Rackspace CloudFiles without all of the directory information in the filename? Example: Local ...
0
votes
2answers
94 views

Using codeigniter and Rackspace Cloud Files with ORD data center

I'm using a library I found here: https://bitbucket.org/modomg/codeigniter-rackspace-cloudfiles/ To upload some stuff from my site to cloud files. I have the container in the DFW center, but my cloud ...
1
vote
2answers
870 views

How to host a naked domain on a CDN? [closed]

If I have a domain that I wish to serve "naked" eg http://examp.le/, and efficiently with a CDN, what are my options? The issue is that the CDNs I looked at all want you to use a CNAME so that they ...
0
votes
1answer
185 views

Rackspace Cloud Files (OpenStack Swift) TempUrl Example in vb.net

Can anyone provide an example for rackspace cloud files tempurl function in .net (c# or vb.net)? There is documentation at the RackSpace site at: ...
1
vote
1answer
52 views

Best practices for updating user created content on CDN

I'm having a hard time making a decision on how to handle user generated uploads without storing filename values in a database. When a user uploads say, a profile avatar/image, I create it on the CDN. ...
0
votes
0answers
64 views

Is there a Amazon S3 Bucket Policy equivalent in the Rackspace Cloudfiles?

Is there a Amazon S3 Bucket Policy equivalent in Rackspace Cloudfiles? We would like to restrict access for certain containers to specific IP addresses. No other IP addresses should be able to access ...
0
votes
2answers
113 views

Getting public URL of newly uploaded CloudFiles asset

When uploading new asset into the CloudFiles storage I want to get public URL of this asset (if container is CDN-enabled). I figured out the only way to do this is to issue 3 (yes, three!) requests to ...
0
votes
1answer
40 views

How to diagnose APC caching issue?

I recently turned on APC on a site which uses the Rackspace Cloudfiles PHP API library. Yesterday, the uploading process to Cloudfiles failed which I believe is due to an expired token that is being ...
0
votes
0answers
89 views

Why do uploads happen so slowly with CarrierWave and Rackspace Cloudfiles?

I am using CarrierWave for image uploading, and the uploads take anywhere from 3-5 seconds (in production) using Rackspace Cloudfiles as the store. At first, I attributed it to my image processor ...
0
votes
1answer
1k views

“application.css isn't precompiled” error on Heroku with remote assets on CDN

I'm getting the typical error on Heroku, that it appears the solution is to precompile locally and then commit to git. ActionView::Template::Error (application.css isn't precompiled) However I have ...
0
votes
0answers
28 views

cloudfiles issue in rails3.2.11

I'm using ruby-cloudfiles for uploading videos in a rails 3.2.11 application. The uploading works fine but sometime when I try container.object_exists? and after restarting the server ...
0
votes
0answers
25 views

Cloud Files object_exists? return false

I am using cloudfiles in rails 3.2.11 application. I am using this to upload videos to the cloud files. The application is working fine. I can access the files any time but sometime when I try to ...
33
votes
10answers
10k views

Ruby on Rails 3: Streaming data through Rails to client

I am working on a Ruby on Rails app that communicates with RackSpace cloudfiles (similar to Amazon S3 but lacking some features). Due to the lack of the availability of per-object access permissions ...
0
votes
2answers
396 views

Uploading to Rackspace Cloud Files with paperclip and fog

Can't figure out how to do this? and couldn't find much help from anywhere else! I have set up the paperclip and fog like this; config/initializers/fog.rb connection = Fog::Storage.new({ ...
3
votes
2answers
90 views

Global “connection”-like variables in Python

Full script: https://gist.github.com/4476526 The specific code in question is # Cloud Files username & API key username = '' key = '' # Source and destination container names ...
4
votes
3answers
1k views

check if object exists in Cloud Files (PHP API)

I've just started working with the PHP API for Rackspace Cloud Files. So far so good-- but I am using it as sort of a poor man's memcache, storing key/value pairs of serialized data. My app attempts ...
1
vote
1answer
311 views

File Upload with Rackspace

I'm using RestSharp to consume the Rackspace restful API here. The documentation shows you how to create the request but I don't see where do I need to specify the data source(file I want to upload to ...
1
vote
2answers
667 views

Problem connecting to Rackspace Cloud Files in the UK

Any idea why the following code $auth = new CF_Authentication(USERNAME, API_KEY, NULL, UK_AUTHURL); is giving me PHP Fatal error: Uncaught exception 'InvalidResponseException' with message ...
1
vote
1answer
236 views

CarrierWave crop file on Cloud (fog)

I am trying to crop an image with CarrierWave and put it on the cloud fog(cloud_files). How can I do this? Will I have to download a copy as a tempfile, crop that, and then upload it back? If the ...
0
votes
0answers
285 views

Migrating issues from Amazon S3 to Rackspace cloudfiles

I decided to try Rackspace Service since IMHO they have great features, but the unique thing is lacking of being awesome is the CloudFiles. I have done several scripts in order to copy files from s3, ...
1
vote
2answers
774 views

Direct upload to Rackspace's Cloud Files

I'm working on a solution for video upload. I have a Rails 3.1 app, and the basic needs are for the files to be uploaded to Rackspace's Cloud Files, then we'll do some encoding, and then we can ...
0
votes
1answer
117 views

Fileconveyor Installation

With Fileconveyor limited documentation I'm confused as to where it installs after I've run the pip command as follows on their website Fileconveyor.org. Bottom line: Anyone have luck installing ...
0
votes
1answer
172 views

Internal Server Error when using php cloud files with swift openstack

I am currently using php could files as API for swift on a SAIO install with tempauth . Executing the php file: require('cloudfiles.php'); $username="test:teste"; ...
3
votes
1answer
247 views

Cloud Files Meta Data: Any reason to be concerned with custom meta?

I've been using Rackspace Cloud Files with the PHP API to store uploaded files. The documents are referenced in a local database for easy lookup. All is working well, but I have some concerns with my ...
3
votes
1answer
710 views

Rails, Rackspace Cloud Files, Referrer ACL

I am using Rackspace Cloud Files as File Storage server for my application. The files that users upload must be authorized from within my application, then from a controller it would redirect to the ...
1
vote
1answer
163 views

Saving images to Rackspace with paperclip/cloudfiles

I have my rails app filled with about 30000 products from various suppliers. Currently each product image_url is being hosted by individual suppliers. How would I go about saving each image from the ...
0
votes
0answers
74 views

ruby-cloudfiles pass container.object('') a variable

I'm using ruby gems and cloudfiles to access my cloudfiles on rackspace I have no problems uploading files and all but im having problems while restoring or downloading them. Below is my code im able ...
0
votes
1answer
160 views

Setting Content Disposition using Rackspace Cloud Java APIs

I am using Java Bindings for Rackspace Cloud API I am trying to figure out how to set content disposition for the file that I upload to rackspace I do not see a straightforward way of doing this ...
2
votes
2answers
791 views

Rackspace cloudfiles API fairly slow

I would like to improve the speed of my script that uploads a small 20kb file to cloudfiles, currently it takes 3 seconds but have seen it take more, up to about 7 seconds. Basically it does the ...
0
votes
2answers
649 views

Rackspace Cloud Files PHP get_objects at the “Root level”

I have been trying to figure out how to get files that are at the Root level, meaning get all files that don't have a path attached to their file name. I have a container that looks like this ...
1
vote
0answers
85 views

FileConveyor - cumulus - Files not showing up on CloudFiles

I've installed FileConveyor and django cumulus (which is the replacement for mosso). I created a test directory at /home/drupal/conveyortest which I use as the scanPath. When I start the FileConveyor ...
1
vote
1answer
202 views

Paperclip CloudFiles?

How can I use Paperclip with CloudFiles? I found paperclip-cloudfiles, but in the description it says it will probably be removed and the last commit was in 2010.
2
votes
0answers
194 views

html link to client side file

I am developing in ASP.net a web application which among other things should list documents available on a remote server. this is for a very restricted number of users for which we can control the ...
0
votes
2answers
316 views

cloudfiles API: uncaught exception with get_container when container doesn't exist

I'm using the rackspace cloudfiles API to upload files on the fly and the first thing it needs to do is check whether the container exists and if not, create it. So I write the following: ...
0
votes
1answer
125 views

How do I set the http 'accept' header for JS and CSS files requested by an HTML document?

I am trying to configure some assets on the Rackspace Cloudfiles CDN to be sent to clients with gzip encoding. As far as I can tell according to their website ...
1
vote
1answer
434 views

Track progress when uploading file to Rackspace Cloud Files in C#

I am using https://github.com/rackspace/csharp-cloudfiles to bulid a command-line tool to upload files to Rackspace Cloud Files. The thing is that I don't know how to track upload progress (there ...
1
vote
2answers
481 views

CloudFiles - Rackspace connection error c#

I am trying to connect to rackspace using their api and passing my username and api key but i get this error : The remote server returned an error: (401) Unauthorized. here is my code : ...
5
votes
1answer
354 views

Looking for tips on integrating TinyMCE Image Manager with S3 or Rackspace CloudFiles

We are moving away from using a local file system for all our media and moving it over to Cloud Files (Rackspace). The downer is that we use the ImageManager plugin which seems to rely heavily on ...
2
votes
1answer
616 views

How can I use boto to stream a file out of Amazon S3 to Rackspace Cloudfiles?

I'm copying a file from S3 to Cloudfiles, and I would like to avoid writing the file to disk. The Python-Cloudfiles library has an object.stream() call that looks to be what I need, but I can't find ...
0
votes
2answers
246 views

node-cloudfiles module - Is there a way to track upload progress

If anyone here is familiar with the node-cloudfiles module for node.js, I could use some help in several different areas. Unfortunately, is seems the authors are nearly impossible to reach via their ...
0
votes
1answer
172 views

Issue uploading images/non text files to Rackspace Cloudfiles (MisMatchedChecksumException) via PHP API

I am having an issue uploading to Rackspace Cloudfiles. I am able to upload anything that is text based (text/html, text/plain etc) but anything else I try fails with the MisMatchedChecksumException ...
0
votes
1answer
201 views

Rackspace CloudFiles .NET library: delimiter query parameter?

Is the 'delimiter' query parameter implemented in the c# (.NET) library? I could not find it. Ref.: http://docs.rackspace.com/files/api/v1/cf-devguide/content/List_Objects-d1e1284.html
0
votes
1answer
614 views

Rackspace CloudFiles C# API: How to list files on root 'folder', and how to list (sub)folders within a 'folder'?

(1) I can list the files on a folder this way: var parameters = new Dictionary<GetListParameters, string>(); parameters.Add(GetListParameters.Path, "folder1/"); // get items from this ...
1
vote
0answers
402 views

Rails 3 - CarrierWave and CloudFiles extremely slow

I have an Rails 3 application where I upload files (photos) using CarrierWave to Rackspace CloudFiles. This works perfectly. But when displaying a list of 10 to 20 photos back on a page it takes a ...
0
votes
1answer
212 views

RackSpace Cloudfiles api error 'Undefined offset: 8'

When trying to upload files to rackspace cloudfiles, I am getting this error. I tried to trace the source of error and I assume that it is coming from this line of code: $container = ...
1
vote
1answer
353 views

Rails send_file alternative with Rackspace Cloudfiles

I am trying to setup a download link for a file management system built on Rails 3 using the paperclip-cloudfiles gem. The send_file method works great when hosting files locally, but I need to use ...
0
votes
1answer
219 views

Hosting and Accessing an HDF5 file on Amazon EC2, S3, and/or EBS

I'm looking to place a rather large HDF5 file online and am looking at Amazon S3 and/or EBS as a possible place to store it and possibly leverage an EC2 instance or two for back-end processing. I'm ...

1 2