Ben Balter
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] No Content DisplayingNot sure why this is happening, and having trouble recreating it. I’ve opened an issue on GitHub.
if you have the ability to troubleshoot, any information (or a pull request) would be awesome.
Forum: Plugins
In reply to: [WP Resume] Fatal ErrorYou need to increase your PHP Memory Limit:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Forum: Plugins
In reply to: [WP Resume] spacing between linesYou can do that via your theme’s style.css
Forum: Plugins
In reply to: [WP Resume] "Creates individual pages for each position" ?The page should contain the position title and description. If not, it would most likely be a templating issue, which you could make a template specifically for the position post type.
Can you give me some more information on your setup? WordPress / plugin version? Also, what is your username by chance? does it have a non-alphanumeric character?
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Resume doubles with WPMLGood find. If you could package this into a pull request on GitHub, would love to include this in the plugin.
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Page Not Found – section errorYou can disable URL rewriting via the options, which should prevent the URLs from appearing in your sitemap, etc.
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Ordering of SectionsAs for the backend, it sounds like another plugin is causing a Javascript conflict. I’ve seen this a few times before. Try deactivating all plugins, and then the sections should be draggable.
As for the changes, if you could package and submit a pull request to github, I’d love to include in the plugin.
I believe this may be related to this: http://wordpress.org/support/topic/plugin-wp-resume-wp-remuse-wpml-section-order?replies=2#post-3519609
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] wp-remuse wpml section orderCreated a feature request on GitHub for this issue. If you are able to, a pull request would be greatly appreciated. (would be a matter of translating the string before looking for the order, I believe).
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] bug in this pluginThis is a compatibility issues with PHP 5.4 and will be fixed in the next release.
Forum: Plugins
In reply to: [WP Document Revisions] Documents Not Updating on All ComputersYes, sounds like a caching issue. There are two possible points at which this can happen.
Persistent object/database cache via W3TC, etc., which should be cleared when the post is updated.
Browser cache, which again, could be coming from W3TC, etc. or from your .htaccess file putting expiry headers (or related, via a proxy cache, if any).
The plugin places the proper last-modified header on the file before serving ( https://github.com/benbalter/WP-Document-Revisions/blob/master/wp-document-revisions.php#L752) , but perhaps a revisit of the expiration is in order?
The original code was taken form
ms-fileswhich was designed to serve static files. It’s hard to say what the expires header should be. It sounds like your use case is updated frequently while others may update rarely if ever. I believe this would be best implemented as a filter.I’ve created a issue on GitHub to track the feature. https://github.com/benbalter/WP-Document-Revisions/issues/38. Pull requests are always greatly appreciated if you are able to take a stab.
For the time being, linking to the specific version of the document (e.g., ?revision=X) or apending a query string (e.g., ?break_cache=1234) should solve the problem until the plugin is updated.
Forum: Plugins
In reply to: [WP Document Revisions] file.xlsx changes to file.xlsx.xlsI am not able to recreate this issue (just tested with .docx using 3.5 and 1.3.3).
I can confirm that the file is being stored on the server with the proper extension.
Does this happen across browsers?
I believe it may be related to the content type header being served. The code is taken from
ms-fileswithin core, but may need an update (https://github.com/benbalter/WP-Document-Revisions/blob/master/wp-document-revisions.php#L723).I created an issue on GitHub to track the bug’s progress. https://github.com/benbalter/WP-Document-Revisions/issues/37
Forum: Plugins
In reply to: [WP Document Revisions] Can't Upload FilesThis error is usually thrown when
wp-contentis not writable (or any of its sub folders). You’ll want tochmod -r 0777 wp-contentto recursively set permissions. Alternatively, verify that if you’ve moved your document upload directory, that that spot is writable as well.Fix looks valid.
If no documents are uploaded, how are you getting this error? I believe this function would only fire on
the_titlefilter, which would only be triggered if there’s a post to filter?Created a GitHub bug for this issue to track, closing here for now.
https://github.com/benbalter/WP-Document-Revisions/issues/36