rotwp
Forum Replies Created
-
Forum: Plugins
In reply to: [Shariff Wrapper] Mailform on Index pageWhere is the current source? Is it the one on github?
Forum: Plugins
In reply to: [Shariff Wrapper] Mailform on Index pageSo its wp filter hooks that add the form to the article/page?
And form processing? Is this also some kind of filter hook?
Forum: Plugins
In reply to: [Shariff Wrapper] Mailform on Index pageThanks for the reply!
So there is nothing I could include in the template?
Is the Form added in the wp pipeline or by javascript?
Forum: Plugins
In reply to: [RSS Feed Checker] [Plugin: RSS Feed Checker] RSS do not updatethanks for the fast fix!
Forum: Plugins
In reply to: [RSS Feed Checker] [Plugin: RSS Feed Checker] RSS do not updateI have the exact same Problem and I get the following Error in my log:
PHP Fatal error: Call to undefined function microtime_float() in [...]/wp-content/plugins/rssfeedchecker/RSSFeedCheckerUI.php on line 159, referer: [...]/wp-admin/link-manager.php?page=RSSFeedChecker
I now changed the 2 occurances of
microtime_float(true)
in RSSFeedCheckerUI.php to
microtime(true)
and now i get no errors anymore.I also changed 3 more occrances in RSSFeedCheckerProcessor.php.
What should that
microtime_float(true)
be anyway?https://php.net/manual/en/function.microtime.php gives this code:
<?php
/**
* Simple function to replicate PHP 5 behaviour
*/
function microtime_float()
{
list($usec, $sec) = explode(” “, microtime());
return ((float)$usec + (float)$sec);
}$time_start = microtime_float();
// Sleep for a while
usleep(100);$time_end = microtime_float();
$time = $time_end – $time_start;echo “Did nothing in $time seconds\n”;
?>So this is due to using php5?
Something is wrong wih the plugin !
Forum: Plugins
In reply to: category visibility plug-in won’t work in 2.3another patch
I did some more changes and i added a wdget that overlays the regular category widget to allow for hiding the private categories.
still one of coppit’s issues is not resolved – the private comments are not hidden without patching the wp source.
Forum: Plugins
In reply to: wp-mailman?the good old web archive has the text but not the file – i tried to contact the author – we′ll see if he answers my request for the file.
Forum: Plugins
In reply to: category visibility plug-in won’t work in 2.3category-access patch
I patched Category Acess and it seems to work. But I don′t know if a category that is not visible to a user should appear in the category list in a widget or on a post (which is possible if you use the “or” option on the restriction settings). also the posting titles seem to show up in the rss.
was this ever implemented?
at the moment the following things seem to work with what i changed:
postings in category with insuffient rights are:
* not shown in html listings
* can not be readpostings edited or created and associated with categories the user hat no rights to use should also be modified but I didn′t test this.
the patched file can be found under:
https://granul.at/category-access.php