atvdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Not SSL/HTTPS compatibleYes I had bugs in the script creating the db, so the endpoints(bucket location) could not be saved and as effect htaccess was wrong
but now it should be ok
Thanks for your help
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Specified key doesn't work…I searched the net and the ‘key’ means file. So the problem is that a file is uploaded to S3 and the name on S3 is different from that in the wp db.
At first I thought it is because of the space used in your filename, but I try putting manually a file to S3 with a space in it and it works normally with %20 or + replacing the space in url.
After I tried using wp to upload a file with space in it, but wp changed the space with – and again the file uploaded to S3 normally and worked ok.So if you, can please look in your S3 folder for that file, or similar filename and tell me if you find something.
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Manual transferIf you wait all images will be transferred after some days, or maybe a week.
But if you want you can upload the contents of
wp-content/uploads/
to the bucket/subdir that you have specified in the plug in settings
I personally use S3Fox, its Firefox plugin to manage your buckets and files.So if your bucket’s name is ‘media.mysite.com’ and you want to use subdir ‘myblog’, then login to your S3 account, goto bucket ‘media.mysite.com’, create subdirectory ‘myblog’ and upload there everything from wp-content/uploads (probably you will have there some folders with years for names)
I hope you’ll uderstand my messed up english.
Tell me if you want more info.Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Transfer does not happenI will try. I didn’t do it, because I thought you still get charged from Amazon to delete files, but as I see now it is for free.
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Not SSL/HTTPS compatibleCould you update to 1.08, go to the wp-admin > plugins > Amazon S3 Uploads and after check if there is asssu-errorlog.txt in wp-content/plugins/amazon-s3-uploads?
If that file exists, could you post its contents here?
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Transfer does not happenYes, found the bug. If you update to 1.08 it should work.
If you continue to have problems, please post the contents of asssu-errorlog.txt again.
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Transfer does not happenHello,
of course I want to develop it, but the documentation about Amazon S3 endpoints is not good…Could you update to 1.07, go to the wp-admin > plugins > Amazon S3 Uploads and after check if there is asssu-errorlog.txt in wp-content/plugins/amazon-s3-uploads?
If that file exists, could you post its contents here?
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Not SSL/HTTPS compatibleThe buckets locations and regions are documented very poorly and I tried creating a bucket in every region available to test the plugin. And the tests were ok exept for the region us-west-2, to which I can’t connect even with S3Fox.
Also, the regions for the buckets are a bit dumb as you can create a bucket with region ‘EU’ and with ‘s3-eu-west-1’. Both will work from ‘s3-eu-west-1’ but the function getBucketLocation will give you ‘EU’ for the first and ‘s3-eu-west-1’ for second.
So could you post the contents of wp-content/uploads/.htaccess maybe I can find any clues?
I was searching for a plugin like that too, but then I understood that it is already in my head…
This plugin is very useful on servers where you get better cpu/memory for less disk space, because on the servers with the so advertised “unlimited quota” you always get shit hardware server and need to pay the double to run it at acceptable speeds.
Thanks!
The secret key is now shown with ***** in the middle and never whole.
Cheers!
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Not SSL/HTTPS compatibleI updated the code for redirecting the files to Amazon.
Please check it out and tell me if you have any issues.Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] WPMU / Multi Site compatible?Hi,
for complex multisite config, after configuring your sites, add
require_once(ABSPATH . 'wp-content/plugins/amazon-s3-uploads/asssu-multisite-config.php');
above
/* That's all, stop editing! Happy blogging. */
in your wp-config.phpafter edit wp-content/plugins/amazon-s3-uploads/asssu-multisite-config.php
If you want to setup a config for a blog to use the plugin but without the ability to change the settings use mode ‘hidden_forced’, for predefined configuration and ability to change it use mode ‘optional’ and for individual ‘normal’ setup remove the config from the asssu-multisite-config.php
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] max file size?Server’s upload limits works there. But I think there won’t be any problems even if a big file is put in the uploads dir manually. Through php cron job I have uploaded 100mb+ files to the Amazon S3.
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] WPMU / Multi Site compatible?MultiSite compatibility added!
Install the plugin and cofigure Amazon S3 Uploads for each site. This way you can store file from each site in the same or different accounts/buckets/subfolders.
I tried it with Subdirectory MultiSite configuration, but I think it will work without any problems on Subdomain configuration too.
Cheers!
Forum: Plugins
In reply to: [Amazon S3 Uploads] [Plugin: Amazon S3 Uploads] Not SSL/HTTPS compatibleCode updated; it checks bucket’s region and uses for EU buckets
https://{bucket}.s3.amazonaws.com/{subdir}/2012/01/image.jpg
and for the rest buckets
https://s3.amazonaws.com/{bucket}/{subdir}/2012/01/image.jpgCould you do me a favor and check if it works on your side of our spinning Earth? 🙂
Cheers!