Eric Mann
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Publication Archive] Download Link Not WorkingFirstly, I can’t see your website (the link you provided results in a server error).
Secondly, why are you using version 2.3.3 when the current version is 2.5.7.1?
Forum: Plugins
In reply to: [Fast Secure Contact Form] wp_sessions are not auto removedLooking into the code, a couple of things are happening.
First, the garbage collection routine is registered on the
wphook, which isn’t run on the back end unless you’re doing a query. So refreshing the dashboard won’t do anything.Second, the
wp_session_garbage_collectionhook is scheduled to run twice daily. So while sessions are only valid for a certain period of time (~30 mins, unless you configure it otherwise) they stay in the database until the garbage collector runs.You can verify that the scheduled event is in the Cron in a debug environment by:
- Setting
WP_DEBUGto true - Installing the Debug Bar plugin
- Installing Debug Bar Cron
You should see the
wp_session_garbage_collectionevent in the custom events section as in this screenshot: http://d.pr/i/YPLQForum: Plugins
In reply to: [Fast Secure Contact Form] wp_sessions are not auto removedMike, which version of the WP_Session object did you wrap in to the plugin?
Forum: Plugins
In reply to: [WP Session Manager] Garbage collection not workingPlease don’t open duplicate threads just to point me back to something else.
Forum: Plugins
In reply to: [JS Banner Rotate] repeating banner imageYou’re almost there. Your template tag parameters (the part inside
jsbrotate()aren’t complete.To set the height/width of the banner, you need to set the height/width parameters in the template tag.
jsbrotate( 'images=...&height=212&width=890' );I also normally recommend using the full, absolute path of images in the tag, but if your relative URLs are working stick with that.
As for why the images are repeated 5 times, I’d have to see your site to know why.
Forum: Plugins
In reply to: [JS Banner Rotate] banner ControlsYou cannot add a stop or pause button to the banner. It’s a simple image rotator, not an interactive slider. Sorry. 🙁
Forum: Plugins
In reply to: [WP Publication Archive] Category Filter Not working for Me@elisabetemmaciel – Publications will not show up in any existing category widget. Those widgets query posts specifically, not other content types.
What’s happening is When I load the publication and place it in one of the categories, on the front end That publication that I wanted to show up in the First category, is showing up in both.
This is a bug. I will look into it. This is likely because the dropdown template was a community contribution and is ignoring the category filter.
Then when I click on that publication in either category, it’s coming up with Page Not Found.
The Page Not Found error is likely because your permalinks need to be flushed. Recent updates to the plugin changed the way links are handled, and you’ll need to navigate to Settings >> Permalinks to get WordPress to clear out the old rules and recognize the new ones.
Forum: Plugins
In reply to: [JS Banner Rotate] Image display timeOK, now I see it. You’ve definitely found a bug.
I’ve just fixed it with version 2.0.2, so update and you should be good to go.
Forum: Plugins
In reply to: [JS Banner Rotate] Image display timeAre you really still using WordPress 2.9.2? That’s quite old … and could be a problem (though it shouldn’t be).
Linking to your site so I can see the issue would be useful as well.
Forum: Plugins
In reply to: [WP Publication Archive] Category Filter Not working for Me@4bwebdesign – Never received the email from you
@elisabetemmaciel – What do you mean “choose a category”? If you’re looking at a category archive (
http://site.com/category/{category-name}/) then you will only see posts since that’s all WordPress displays on category archive pages.Forum: Plugins
In reply to: [WP Publication Archive] TranslateThis will all be fixed in a coming revision.
Forum: Plugins
In reply to: [WP Publication Archive] Can I search for a certain content in a PDF File?Google search won’t do that, either.
What you need to do is include relevant keywords/descriptions in the actual summary of the publication. WordPress will search this content.
Forum: Plugins
In reply to: [WP Publication Archive] Sort AuthorsNo. The plugin sorts authors in ascending order when querying them from the database. There is not an option to change this at the moment.
Forum: Plugins
In reply to: [WP Publication Archive] Can I search for a certain content in a PDF File?The plugin does not search the content of attachments.
Forum: Plugins
In reply to: [WP Session Manager] W3 Total Cache problemSessions and caching are inherently incompatible.
When you’re caching things on the page level, you’re serving data that never hits WordPress. When you’re caching things on the opcode level, you’re caching the responses of function calls which will no longer be dynamic. When you’re caching things on the database level, you’re preventing data from ever interacting with the database.
You can make sessions work with a cache enabled, but you have to make it so that your session-heavy pages can skip the cache.
- Setting