thewebhead
Forum Replies Created
-
Works now. Thanks
Now the error is:
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /wp-content/plugins/admin-word-count-column/wc-column.php on line 88to have it just check new content you can set the hours to 99999 or whatever huge number, then it just checks links in new posts as you add them.
I upgraded to the latest wordpress and on sites with fewer articles the plugin works, though it slows the load of the admin page. The admin blanks out on a large database (ie. 50,000+ posts)
Same issue. had to downgrade and hope for another update
Forum: Plugins
In reply to: [Plugin: WP-PageNavi] getting pages with page/*/?junk everywhereIf anyone wants a guide to how to remove most of the impact of this issue, plug this into the .htaccess:
RewriteCond %{QUERY_STRING} ^a.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^b.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^c.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^d.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^e.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^f.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^g.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^h.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^i.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^j.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^k.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^l.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^m.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^n.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^o.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^p.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^q.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^r.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^t.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^u.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^v.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^w.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^x.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^y.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^z.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^1.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^2.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^3.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^4.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^5.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^6.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^7.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^8.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^9.*$ [NC,OR] RewriteCond %{QUERY_STRING} ^0.*$ [NC] RewriteRule ^page/(.*)/?$ http://domain.com/page/$1/$2? [R=301,L]and you could add ^sa, ^sb, etc. to give some extra safeguards.
Forum: Plugins
In reply to: [Plugin: WP-PageNavi] getting pages with page/*/?junk everywhereHere’s an example:
http://wordpress.org/development/page/2/?info
If you page down to the page bottom the newer/older post navigation links are:
http://wordpress.org/development/?info
http://wordpress.org/development/page/3/?infoWhat results is a duplicate content and potential load issues if a search engine crawls a potentially infinite number of pages
Forum: Plugins
In reply to: [Plugin: WP-PageNavi] getting pages with page/*/?junk everywhereOkay to some degree I’ve solved my problem w/ the following:
RewriteCond %{QUERY_STRING} ^referrer=.*$ RewriteRule ^(.*)$ http://domain.com/$1? [R=301,L]But generally I’d like the ability to strip anything after /page/#/ but since search produces /page/#/s= I’m not sure there’s an “anything but” directive. On the wordpress blog this issue can be replicated btw, just type ?whatever at the end of the paged URLs. Not only does the URL show the ?whatever at the end but the navigation links as well. It should be fixed at the software level rather than plugging holes with rewrite rules.
Forum: Plugins
In reply to: [Plugin: Broken Link Checker] Feature requestif it could be done automatically by domain that would be better.. Some of these redirections don’t go to the new link but to a homepage or they 301 to a 404 page because they’re improperly configured.
Hi, it was disabled and deactivated when I attempted to delete.
Forum: Fixing WordPress
In reply to: [Plugin: WP Ajax Edit Comments] problem with automatic moderationI also hope the ability to edit while waiting for moderation is addressed in the next release.. Otherwise the plugin has no use for me.
Forum: Plugins
In reply to: Batch Categories plugin not working with WP 2.5.1It doesn’t work for me in 2.6. You try to change 15 posts at once and it says it changed one when it didn’t.
Cool. I added that line below the two !=POST lines and it now works in both IE and Firefox. I think you may want to update based on this minor edit, since many don’t go and check if their redirects work often and especially if it only occurs in IE. All those pages returning a 200 code at the homepage can result in duplicate content issues as well.
Forum: Installing WordPress
In reply to: Integrate wp-print into preview frame pluginMake this change after installing wp-print on preview-frame.php line 14:
$preview_url = clean_url(apply_filters('preview_page_link', add_query_arg('preview', 'true', add_query_arg('print', '1', get_permalink($post->ID)))));and that does the trick.
Forum: Plugins
In reply to: [Plugin: Permalink Redirect] Name conflict?the Scott Yang plug-in I believe is much more widely in use, and he updated to 2.0 so that for now, his plugin has the higher release, besides whatever changes that have been made to the code:
http://scott.yang.id.au/2008/07/permanent-redirect-20-released/Install that and you don’t have the link to upgrade to the Joost one.