rcain
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] breaks wp if category does not existok. think i have the answer now.
this seems to an underlying problem with Fasthosts 404 handling and wp.
simply coincidence that the problem triggered in this way. there is no suspected bug with the Menucreator plugin.
i am investigating things further and experimenting with Fasthosts domain error handling options. will report back if any success.
Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] breaks wp if category does not exist… stop press…
i still have a problem here, even after removing all my fancy span styles from menu item names (and checking in the database that they are clean). also, having reorderd all items in all menus starting from 0.
the only thing i can track it down to is two separate menu’s appearing in my themes header.php as:
<body> <div id="wrapper"> <div id="header"> <div id="scl_top_nav"> <?php if (function_exists('displayMenu')) displayMenu(1); ?> </div> ... <div id="navcontainer"> <div id="scl_main_nav"> <?php if (function_exists('displayMenu')) displayMenu(2); ?> </div> </div> ....the second call (displayMenu(2)) breaks wp when category or page does not exist.
i also have (different) menus appearing in sidebar.php and footer.php (though these in themselves dont seem to cause a problem).
therefore i still have a problem, can anyone help?
Forum: Plugins
In reply to: [Plugin: WordPress Menu Creator] breaks wp if category does not existah, OK, think I’ve found the problem:
In order to achieve some fancy text effects, I was inputing a menu item name of eg:
media<span class="light_blue">pro</span>.. which it was accepted fine, and also running fine, EXCEPT, it seems, under conditions when page/category not found (?!).
I also note (via direct view of db) that on subsequent save of edited menu items, it was (understandably) truncating this to:
media<span class=(bytheby, I had also started menu item order at 1 instead of 0 – may also have been part of problem).
i will therefore try and hack/extend this plugin to render the text effects I want, and post my results later.
Hope someone finds this useful.
Forum: Fixing WordPress
In reply to: is_page() needs to meet certain conditions?thanks for posting Sergio – solved my exact same problem 🙂
Forum: Plugins
In reply to: external RSS feed from cache brokenhi,
just to report i’ve found an identical/similar issue with maybe_unserialize() when called by the autotagger plugin (v2.0 – http://autotagger.wordpress.com/ ). i am using wp_mu 2.7 – think this uses the same wp-core version 2.7 as you are reporting.the plugin was expecting an array returned, but now (for some reason that i have yet quitre to fathom), it has suddenly decided to return some other data type.
in my case, this happened after i performed what i thought had been a successful data migration between dev and live environments. my suspicion is that somehow during the transcription i (slightly) corrupted the wp-option value stored, hence triggered this issue.
however, the autotagger plugin code itself has slightly suspect/ambiguus coding – most times using a cast to array type –
$tags = (array)maybe_unserialize(get_option('at_tags'));– which works ok, but on the problem line, no cast, hence error.
i’ll report this separately on the plugin authors site/possibly the mu site. just thought adding my experience to yours here might be helpful to others.
Forum: Plugins
In reply to: [Plugin: CurrentlyWatching] Nice idea, but…yep, it conflicts with a lot of stuff. however there is a simple fix:
file: CurrentlyWatching.php
function: update_cw_queue
change ‘echo $content’ to ‘return $content’also:
file: getcurrentim.php
function: begin
remove the link tag in $header_template and place it in your template header.php instead (or other means of selectively inserting it in html head)couple more non-crital styling changes if desired.(eg. get rid of iframe)
more details on authors site: http://www.sajithmr.com/show-wordpress-currently-reading-posts/
apart from all that, nice plugin
good luck with it.Forum: Plugins
In reply to: [ Plugin: Indigestion ] Fatal Errorjust got the same error also. lookin at it. maybe email the author.
Forum: Installing WordPress
In reply to: .zip and .tar.gz crash WinZip 11.2 on VistaThanks Justin85 – this was driving me nuts also. your ‘unblock’ fix works. i have reported problem to winzip (seems a common problem).
Forum: Plugins
In reply to: New Plugin: Role Scopergreat plugin – thanks. however, its so useful, that i am attempting to us it on an WordPress MU 2.6 installation also. seems generally to work ok so far as i’ve tested, however the following warning message is produced:
“
Warning: Illegal offset type in …../htdocs/wp-content/plugins/role-scoper/admin/filters-admin_rs.php on line 1259
“when i select admin, links, edit link.
any idea what might be causing this (it looks a bit worrying)?
thanks in advance