randompage
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] feature request: preload images, fine-tune cropping100% agreed.
please add image preloading features on nextgen.
Forum: Plugins
In reply to: Batcache ignores content type header, sends everything as text/htmlyups. it broke robots.txt if i generate it via wordpress engine.
so i add some codes as suggested by misterbisson :$cache['headers']= array(); if ( function_exists( 'apache_response_headers' ) ) $cache['headers'] = array_merge($cache['headers'], apache_response_headers()); if ( function_exists( 'headers_list' ) ) { $heads= headers_list(); if (is_array($heads)) foreach ($heads as $ahead) { list($head_name, $head_value)= explode(":", $ahead); if ($head_name) $cache['headers'][$head_name]= trim($head_value); } }Forum: Fixing WordPress
In reply to: upgraded from 2.8 to 2.9 – getting array_reverse errorForum: Installing WordPress
In reply to: dashboard and site warning after upgrading to 2.9wp-includes/rewrite.php line 788:
$posts = get_page_hierarchy($wpdb->get_results(“SELECT ID, post_name, post_parent FROM $wpdb->posts WHERE post_type = ‘page'”));either “get_page_hierarchy” or “$wpdb->get_results” can be null or empty if the blog have no page at all.
so, i think its wise if we check $posts before feed it to array_reverse.line 795:
if ( !$posts )
return array( array(), array() );for short solution, i think we can move line 95-96 in the ealier lines before array_reverse.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Flash Uploaded is Not Working Well After Updatei’m experiencing the same problem.
what is the meaning of -2 ? is that error code?please help me..
Forum: Fixing WordPress
In reply to: Delete a tag from a specific postsimply edit the post without “will be deleted” tags.
Forum: Fixing WordPress
In reply to: Parsing RSS Feedsi did the same for now, but it only suppress the warning message. it does not cure the problem..
maybe dev team can cure this.
Forum: Fixing WordPress
In reply to: How to validate comment’s email?to hide my identity, i use several valid email address and hiding my “real” email address used for commenting or any browsing activities.
IMO, it’s simpler for admin if there is an option to drop automatically the comment if the email address is not valid one.
Forum: Plugins
In reply to: [Plugin: Google News Sitemap Generator] Category keywordsjust another tough:
maybe a link to force the update from admin area will be good addition for the next release.
Forum: Plugins
In reply to: [Plugin: Google News Sitemap Generator] Category keywordshi chris,
i just install your plugin and found some errors on admin page.
line 319:
$excludedCats = get_option(‘googlenewssitemap_excludeCat’);$excludedCats used in line 322 if (in_array($cat->cat_ID,$excludedCats)), it may generate warning errors if $excludedCats is not an array.
for the time being i add one line after line 319, here is the complete codes:
$excludedCats = get_option(‘googlenewssitemap_excludeCat’);
if (!is_array($excludedCats)) $excludedCats= array();regards,