Eric Mann
Forum Replies Created
-
Forum: Plugins
In reply to: [JS Banner Rotate] Random FlickerIt appears images aren’t pre-loading properly. I will add that to my to-do list.
Forum: Plugins
In reply to: [MiniPress] nginx rewrite rule?What is what?
Forum: Plugins
In reply to: [WP Session Manager] Store an array, and get back an object?Internally, the session uses nested arrays to store data. So your array lives inside an internal, hidden array. The
Recursive_ArrayAccessobject is merely an object that implements the same interfaces that Arrays implement, but which gives us the ability to have arbitrarily nested associative and non-associative arrays in the collection.Rather than implement all of the other Array interfaces for Recursive_ArrayAccess (i.e. Iterable, which is implemented for WP_Session itself), I extended a toArray() method on the Recursive_ArrayAccess object.
So instead of:
$data = $wp_session['data'];You’d use:
$data = $wp_session['data']->toArray();This method returns an Array, and you can iterate over it however you want.
Forum: Plugins
In reply to: [Fast Secure Contact Form] wp_sessions are not auto removedJust wanted to follow up on this.
It turns out the portion of code that was registering the timeout window for sessions was lost in version 1.1, so newly created sessions were being created without any sort of timestamp (meaning the garbage collector didn’t know what to clean up). This is likely the result of too many people trying to refactor at once, and my inability to keep track of who was removing which function.
In any case, the bug has been resolved for version 1.1.1 => http://wordpress.org/plugins/wp-session-manager/
Forum: Plugins
In reply to: [WP Publication Archive] TinyMCE Button Possibility?Is there a chance? Always 🙂
Added to the to-do list as an enhancement request: https://github.com/ericmann/WP-Publication-Archive/issues/32
Forum: Plugins
In reply to: [WP Publication Archive] Error 404There is a pending update that will (hopefully) fix this issue. Stay tuned …
Forum: Plugins
In reply to: [MiniPress] MiniPress and WP Super CacheI would not recommend using this plugin alongside a standard caching plugin. That’s too many layers of abstraction to keep track of and too many things could go wrong.
The decision to not have a UI for this option (or many of the others within the plugin) was intentional and is not going to change.
However, if you are using the shortcode to generate your listings, you can add a
limitparameter to adjust the number of publications:[wp-publication-archive limit=12 /]Forum: Plugins
In reply to: [WP Publication Archive] Error 404You might need to flush your permalinks.
Navigate to Settings >> Permalinks in WordPress. You don’t need to save anything, just visit that page.
Forum: Plugins
In reply to: [WP Publication Archive] Number of Publication to show in each categoryNo those are not features of the plugin as it is currently designed.
Forum: Plugins
In reply to: [WP Session Manager] Fatal error: Class 'WP_Session' not foundGlad you figured it out!
All previous versions are available on the Developers tab of the plugin page of the repository => http://wordpress.org/extend/plugins/wp-publication-archive/developers/
But until we know why things are breaking, your system won’t really be fixed. Do you have access to server error logs? How is your server set up in the first place? I haven’t seen this kind of 404 error ever with the plugin, so I’m concerned.
However, the next version might fix things … I say might because the download mechanism has changed so we could avoid the same issue, but without knowing for sure what is causing the issue on your end, I can’t promise anything.
Actually, all you need to do to flush permalinks is visit that page, you don’t even need to save anything.
But those links should not be returning a 404 error and I’m not sure what’s happening now. I don’t see the Destination host forbidden error you referenced.
You need to flush your permalinks. Visit the Settings >> Permalinks page in WordPress to flush and get the new rules.
Forum: Plugins
In reply to: [Plugin: WP Publication Archive] Download Link Not WorkingNo, that link does not work. To make sure it wasn’t just me, though, I tested pinging your domain (which works and resolves to 184.168.206.1, which is also the IP address associated with your domain from your DNS records).
I also tried using a remote request tool, which attempted to grab the page from a remote server in Texas. It, too, received an error rather than your site. So no, the link doesn’t work and I can’t take a look to see what’s happening.
As to why you’re not receiving an upgrade option, that’s entirely up to you, your server configuration, and any other plugins you might have installed. Since the Internet can’t seem to reach your server, perhaps your server can’t reach WordPress to see there’s an update available? Just a guess.
But the data is stored in a custom post type. Removing the plugin won’t remove the data, and it should be restored when you manually install a new version.
To be safe, and you should always be safe when performing any update, please back up your database and files before doing anything. I take no responsibility for issues that might arise when performing an update of any plugin, and since there are already problems evidenced by the fact that a) I can’t even see your website and b) your website isn’t receiving updates from WordPress, the likelihood of something going wrong in an update is quite high.