schun
Forum Replies Created
-
Forum: Plugins
In reply to: [SAML 2.0 Single Sign-On] Contribute to the pluginI would love to get the copy as well…
Forum: Plugins
In reply to: RSS password protectionI would like to know about this as well. If anyone have done this using wordpress?
Forum: Fixing WordPress
In reply to: RSS URI in LinksI have the exact same question as above. help~!
Forum: Fixing WordPress
In reply to: Unwanted msg when selecting categorieshelp anyone? thanx!
Forum: Fixing WordPress
In reply to: How registered user only can read post ?Also see the list of plugins listed here:
https://codex.www.ads-software.com/Plugins/RestrictionForum: Fixing WordPress
In reply to: Unwanted msg when selecting categoriesI am experiencing the same issue. When I try to create a new post/or page, I enter the title and the content of it.. then I try to click on any of those advanced menu; categories, discussions,post-slugs..etc, I get a pop up message saying “Are you sure you want to navigate away from this page?” I was trying to look for this message in php files but could not find it. Any idea how to stop this message? This only happens with IE.
Forum: Fixing WordPress
In reply to: no “awaiting moderation” messageIn addition to the message above:
Comment awaiting for moderation message shows only when,
1) Before a comment appear: An administer must approve the comment – CHECKED
Before a comment appear: Comment authors must fill out name, email – CHECKED
2) both Membership options UNCHCKED.Very odd it seems..
Forum: Fixing WordPress
In reply to: no “awaiting moderation” messageI have the same issue with nrsz..
Options:
Before a comment appears: An administer must approve the comment – CHECKED
Membership: User must be registered and logged into comment – CHECKEDAny ideas why?
Forum: Everything else WordPress
In reply to: rss feed lengthOtto42,
I don’t think its the problem with iTunes itself. When I look at the RSS2 feed that WordPress generates (with the full text setting on syndication feed), WP still generates “description” field with only 255 characters (putting the rest of content into “<content:encoded>…</content:encoded>” and iTune’s description field grab whatever the content in “descrption” in the feed. If “full text” setting is selected, I think WP should put the full content of post into “description” field when RSS feed gets generated when full text is selected, no?If I generate feed using a wordpress plugin called “Podpress” with the full text setting on syndication feed on wp, this problem goes away and iTunes displays full context without any problem. So I think Podpress is generating the feed correctly in this case but not WP RSS2. Please correct me if I am wrong.
Thanks.
Forum: Everything else WordPress
In reply to: rss feed lengthAnyone has solution to this? thx!
Forum: Everything else WordPress
In reply to: rss feed lengthI still see this problem when I am using iTunes. I use Mac and if I use the browser built RSS feeder – Safari, I can see the full content but iTune just show me 255 character in the description column although I set it up as full text in blog admin for syndication feed.
No fix for this?
Thanks!Forum: Plugins
In reply to: Organizer – New PluginI am having the same issue as lonetrotter, anyone has the solution to this?
Thanks!
Forum: Your WordPress
In reply to: WP based PhotoBlogvery nice and clean!
Forum: Fixing WordPress
In reply to: Previous/Next Posts still not workingI had a same problem, but this is how I fixed it.
In the file: template-functions-links.php
Find the function: get_pagenum_link($pagenum = 1),
Change $qstr = $_SERVER[‘REQUEST_URI’];
to $qstr = $_POST[‘REQUEST_URI’];I believe this is caused by the php version that you are running in your server.
Hope this will fix your problem!
Forum: Fixing WordPress
In reply to: Comments RSS and trackback for static pages?I was able to fix this problem by modifying the following files.
1. /wp-includes/comment-functions.php
Find the function get_trackback_url() and modify the following lines:
$tb_url = get_settings(‘siteurl’) . ‘/wp-trackback.php?p=’ . $id;
to
if(is_page()){
$tb_url = get_settings(‘siteurl’) . ‘/wp-trackback.php?page_id=’ . $id;
}else{
$tb_url = get_settings(‘siteurl’) . ‘/wp-trackback.php?p=’ . $id;
}2. /wp-includes/feed-functions.php
Find function comments_rss and change the following lines:
$url = get_settings(‘siteurl’) . “/$commentsrssfilename?p=$id”;
to
if (is_page()){
$url = get_settings(‘siteurl’) . “/$commentsrssfilename?page_id=$id”;
}else{
$url = get_settings(‘siteurl’) . “/$commentsrssfilename?p=$id”;
}Hope this helps!