Backie
Forum Replies Created
-
Well currently the only way to do it is by using the default form and using custom pages functionality to remove fields you don’t want.
Forum: Plugins
In reply to: [CDN Sync Tool] [Plugin: CDN Sync Tool] Not saving files to Amazon CloudHopflys,
can you share these programming changes?Hi NeXuSDK,
I did reply to your support email on this subject. If you are able to take that action then I’ll be able to look into it further.
Just re-read my message and noticed I seem rather rude, so my bad on that front. However I come baring gifts.
Half way through typing how easy it should be to add a hack to do it, I figured there is no good reason not to. So https://github.com/icambridge/cdn-sync-tool now contains the ability to have the absolute urls when syncing and includes a filter on wpsupercache_buffer to change the /files/ to /wp-content/blogs.dir/{$blog_id}/files/ though you’ll still need to sync them which should be in the automated install script however that should be pretty easy.
Well don’t know where you see the plugin not being multisite aware? This would imply it would upload the wp-content/upload directory content when it should be uploading the contents of a blogs.dir/2/files. Which it doesn’t do, it uploads the content of blogs.dir/2/files and instead of putting it in the absolute path it puts it in the files directory since that’s where WordPress expects the browser to be able to find them and that to disclose the site id is generally considered as information disclosure and frowned upon in the security community.
Since you’re doing an automated install for 312 sites, I can safely assume you were hired for the job because you know what your doing? So editing the install script to leverage the aws sdk and this plugin shouldn’t be hard for you?
As stated the plugin can work at the network level. I am sorry you feel that the plugin doesn’t do what you want, you can always fork the plugin and change the features to do what you want. We have released it under the GPL v2 license. If you want to fork it you can always use github to achieve this https://github.com/icambridge/Cdn-Sync-Tool.
Yes I do know a multisite aware CDN plugin – it’s called CDN Sync Tool! There is also W3 Total Cache.
Forum: Plugins
In reply to: [CDN Sync Tool] [Plugin: CDN Sync Tool] fails on syncYou do not have the required functions. It requires finfo comes with 5.3 or mime_content_type if it’s not present since this has been deprecated some people it’s incorrect to install it. Install that function to your install, if you’re on a shared host move as quickly as possible since if your hosters are so stupid they remove a deprecated function for being deprecated without making sure they have functionality it has been deprecated for, no doubt they are doing even dumber things. (As you can tell this common action by web hosts annoys me.)
However we run a quick web hosting service catn.com which isn’t just run by people who don’t remove functions because they’ve been deprecated. It’s also built using the cluster functionality, which means your web site will be hosted on 10 servers instead of one, giving you a host that can stand a digg/reddit front page hit. 🙂
Hi, well the only way I can think of doing this currently is creating a final section where with a single free text field or using the custom pages functionality. Documentation for the custom pages functionality can be found at http://catn.com/2011/02/28/wpsqt-creating-custom-pages/
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] [Plugin: WP Survey And Quiz Tool] Deleting ResultsI’ve added a do not store results option to the todo list. However I can’t give an ETA on this.
However to delete all your current results just go in to phpMyAdmin and goto wp_wpsqt_results and empty it.
Forum: Plugins
In reply to: [CDN Sync Tool] [Plugin: CDN Sync Tool] css3pie.comI have don’t know, as you haven’t given anywhere near enough details. However I suspect that it’s because the file types for the files are not static.
Forum: Plugins
In reply to: [CDN Sync Tool] CDN Sync Tool misses resized copies of original imagesYea when you upload an image using the media library there is a hook where you can filter the meta data. I use this hook to get locations of the images. If the thumbnail array is present then it processes that. I suspect another plugin is messing with the meta data. If you change the
add_filter("wp_generate_attachment_metadata", array($this, "uploadMedia" )) &&on line 35 of lib/Cst/Plugin/Admin.php to
add_filter("wp_generate_attachment_metadata", array($this, "uploadMedia"), 1) &&This may solve the issue, if it does then it’s definitely another plugin causing the issue.
Forum: Plugins
In reply to: [CDN Sync Tool] CDN Sync Tool misses resized copies of original imagesWell the thing with new uploads is, that the CDN Sync Tool gets the data when it’s uploading and WordPress says what the thumbnail sizes are and then it uploads those files so it’s actually uploading before it even hits the media library and is using the data that is about to be inserted to the media library. If you’re saying this is failing both on upload and in inserting the thumbnails into the media library then I suspect there is another plugin or theme messing with stuff. I’ve looked at the Add Linked Images to Gallery plugin code and can confirm it’s not that. Can you tell me what other plugins you are using?
It would be possible to do a quick fail safe post edit hook to check and make sure everything is uploaded. However it’s not really desirable.
Forum: Plugins
In reply to: [CDN Sync Tool] CDN Sync Tool misses resized copies of original imagesWell currently it does upload all new resized images as far as I know. I dunno if you’re creating these images via the image editor. If you are then it doesn’t but since I am not aware of that slight hole in the uploading I’ll patch it either tomorrow or Friday. If not then I’ll figure out what I’ve missed and look into patching it up either tomorrow or Friday.
Currently the only way to have it not be random is to edit line 279 and add ORDER BY ASC or DESC depending on what you want. In the next major there may (very likely) will be an option to be able configure this.
In the next major release the limit ability will be improved upon. This will be one of the ways it will do it.
Forum: Plugins
In reply to: [CDN Sync Tool] Is anyone success use the ftp support of cdn-sync-toolPort mode?
The problem is that the server/php can’t find the address, if you’re putting in a hostname then try putting in the IP address. If not then speak to the person in charge of maintaining your server environment.
It doesn’t matter if you can connect locally, it’s an issue with the server.