Michael Clark
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS Feed Error – Other WordPress NewsI increased the PHP memory, and now several days later the problem came back. I restarted apache again, no help. Any other ideas?
Forum: Plugins
In reply to: [FeedWordPress] [Plugin: FeedWordPress] iconv/mbstring warningIncreasing the value of memory_limit in the server’s php.ini worked for me as well. Thanks for the suggestion!
Forum: Plugins
In reply to: [FeedWordPress] [Plugin: FeedWordPress] iconv/mbstring warningThis just started happening to me today as well. Is there a cache somewhere we should flush? Very odd.
Forum: Fixing WordPress
In reply to: After installing 3.3.2 my Widgets menu does nothing…After experimenting, it’s something to do with the drag and drop functionality on the nav-menus.php and widgets.php pages in the wp-admin area. Looking at the server logs, load-scripts.php is generating a 403 error (Forbidden). It’s not consistently a 403 though. Here is the full request:
GET /wp-admin/load-scripts.php?c=1&load=admin-bar,hoverIntent,common,jquery-color,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-ui-draggable,jquery-ui-droppable,admin-widgets&ver=e2b9538ee6c35d104768e2daa5de0273
Forum: Fixing WordPress
In reply to: After installing 3.3.2 my Widgets menu does nothing…I’m having the same problem (unable to move or edit widgets) on both a fresh install of WP3.3.2 and an upgrade of an existing WP blog. The widgets page is uneditable. I can’t pull up the Screen Options or Help menu either. The other admin areas seem to be working just fine. Not with my regular theme, or Twenty Eleven (version 1.3). There aren’t any plugins active at all. I’m stumped. Any ideas out there?
Nothing in the plugin deletes anything. Contact me via email (address is at http://www.planetmike.com/contact/ ) and I’m willing to take a look at your site. Your report is the only one I’ve ever received reporting problems with posts being deleted. There is something really odd with your site setup.
Also, make sure you don’t have any kind of caching active. Can you look at your database with a tool like PHPMyAdmin or Navicat? I don’t know have any other suggestions off the top of my head, but my gut still says this is an instance of your site being hacked. Do you have backups? Do you have web server logs, both the access and error logs?
Ummm, what?!? I’d guess you have some other plugin installed that is causing your headaches; or you’ve been hacked. Ultimate Category Excluder does nothing with user levels or your posts. Send me an email if you want me to take a brief look at your site. I’m sorry you’re having trouble.
Forum: Plugins
In reply to: [FeedWordPress] [Plugin: FeedWordPress] Changing Feed NamesI found where you can change the name of a feed. Clck on Syndication > Feeds & Updates. Then choose the feed in the dropdown box and click on the “Feed” link t the immediate right of the dropdown list. In the “Feed Information” section next to “Link Name” click on the radio button next to “Edit manually” Then you can change the name to whatever you like. Hot the “Save Changes” button and you should be all set.
Forum: Plugins
In reply to: [FeedWordPress] [Plugin: FeedWordPress] Changing Feed NamesI came here looking for the answer to this exact question. It is a little frustrating. It’s the first odd thing I’ve run across with FeedWordPress.
You might be able to have it coexist if (1) none of your other CMS uses the same file names for its files. So in your root directory you’ll have files from both CMSes present; and (2) you’ll have to tweak your .htaccess file. Maybe something like this to handle the WordPress rewrites for the blog directory:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^blog/index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} ^blog RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>I haven’t tested that, but basically the rewrite rules should pass any URL starting with blog to WordPress, and any other URL to your regular CMS. You’ll need to put the WP rewrite rules above your other CMS rewrite rules in the .htacess. Good luck.
That’s interesting. Let me experiment some, and see what I can discover. It’ll be after Christmas though. I don’t think I’ve ever tried to do what you’re describing.
Hi, I don’t think so, because all of the feeds are generated from the same hunk of WordPress code. Are you trying to create private feeds? I’d guess that category is visible only in Archives?
Forum: Plugins
In reply to: [Ultimate Category Excluder] [Plugin: Ultimate Category Excluder] OverridingHow are you adding the “Top10” category to your sidebar? You may be able to hard code a WordPress query into the sidebar to generate the listing. Read through this page http://www.kimwoodbridge.com/wordpress-how-to-list-recent-posts-from-one-category/ for tips on how to get started. I don’t know if this will conflict with UCE or other category management plugins. I hope this helps. Mike
Sorry, an archive is an archive. Date or category or tag, they are all the same as far as I know. Let me ponder it, you might be able to do some creative php programming along the lines of:
if the archive is date then don’t show category X.That might have to go into a theme’s functions.php file. Let me ponder it. Mike