Darren Ethier (nerrad)
Forum Replies Created
-
your welcome, and thanks for reporting back.
Organize Series 2.3.3 should fix this problem. If you could report back how it works for you I’d appreciate it. It is fixed in my testing and on organizeseries.com but it would be nice to have this confirmed by someone.
Found the problem. Packaging up another release right now.
I’m able to reproduce this and will be working on a fix right away. I suspect this is related to the search problems others were reporting as well.
it’s only enabled for post post-types by default.
Hi Dannoll,
There’s been a problem with a behind the scenes import. You’ll need to do the following steps.- Backup your database (very important in case you need to restore because things went wrong)
- Upgrade your copy of Organize Series to 2.3.1
- Leave it deactivated (or deactivate it if it’s activated
- Go into your database, in your wp_options table. Look for the row where the option_name field has
org_series_versionas it’s value. Then change the option_value field to2.2. This will trick the plugin into doing the import correctly - Activate Organize Series
Everything should be fixed after following those steps. I’m not sure why 2.3.1 didn’t work for you. Your’s is the first post about it not working since it’s release. Thanks for taking the time to post what happened though 🙂
No. Pages cannot be included in series with the core plugin. This is something I MAY be willing to make available with a commercial addon if there’s enough interest for it.
The only thing I can suggest is try visiting the Permalinks setting page. That will regenerate your permalinks on the first site and may fix things.
Your permalink structure should work fine with Organize Series. It’s very similar to what I use on all my sites as well (%year%/%posttitle%).
I always tell people if you experience problems then try running Organize Series with the 2010 theme and no other plugins activated. That will help you narrow down the problem. In MOST cases it is discovered that something else was causing the problem.
If Organize Series is deactivated it cannot affect anything on your WordPress site. Something else is causing your problems.
yes. There is a new addon I’m releasing sometime next week. Shortcodes is the addon I will be developing after it. However, it may be about two to three weeks before it gets released because of some other priority projects in the loop.
Also, Organize Series Shortcodes will be a commercial addon
Forum: Plugins
In reply to: BUG REPORT: Fatal error: Cannot redeclare this_to_int()It shouldn’t break anything else. All I did was give the function a more unique name (and a bit better structure) so it wouldn’t collide with any other plugins that might have a function with the same name.
Thanks for reporting back 🙂
Forum: Plugins
In reply to: BUG REPORT: Fatal error: Cannot redeclare this_to_int()I’m unable to reproduce your error so I suspect there is a function collision with another plugin installed. Try out the following (if it works for you I will include in an update).
In the file orgSeries-utility.php go to line 196 where it has this:
function os_strarr_to_intarr($array) { if ( empty($array) ) return; function this_to_int(&$val, $key) { $val = (int) $val; } array_walk($array, 'this_to_int'); return $array; }Replace all of the above with this:
function os_strarr_to_intarr($array) { if ( empty($array) ) return; array_walk($array, 'os_this_to_int'); return $array; } function os_this_to_int(&$val, $key) { $val = (int) $val; }Tuscany, I’ve broken out your issue into a separate forum post to make it easier to respond and mark when it’s resolved. The new post is here -> http://wordpress.org/support/topic/bug-report-fatal-error-cannot-redeclare-this_to_int?replies=1#post-1906416
Gal,
Glad it’s working for you now. I appreciate you posting back here your results. No problem about “bombarding” me – I understand the pain.You are the second person that has mentioned noticing an empty option_value field when doing the fix. I’m not sure what’s going on here. But at least it gives me a direction to look for a more permanent fix.
Plan B is always me monitoring communication channels for reports. This problem really came out of the blue because as I mentioned, everything worked absolutely fine in all my testing – but I’ve learned by now that my testing doesn’t always catch things lol.
What’s the photo editing plugin’s name?