DrLightman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: tag anomalyJust as reminder, I found the culprit in the alinks v3 cache management, it kept caching the excerpts instead of the full content where required.
Forum: Fixing WordPress
In reply to: Custom post type menu_order quick edit bug?I’m glad a fix is ready for the next version.
Forum: Fixing WordPress
In reply to: paginating custom post types on a static pageWait, thanks to your reply I checked the name of the page and it was the same of the plural fo the custom post type I’m using, so this conflict lead to the 404. Changing the slug of the page to something else fixed it.
Forum: Fixing WordPress
In reply to: paginating custom post types on a static pageWith default permalink structure it does work as expected.
Forum: Plugins
In reply to: [Plugin: WP-Super-Cache] Delete Cache doesn't delete wp-cache FilesDoesn’t work in the dev version for me either. Maybe because I’m using subdomains and under wp-super-cache are created subdirectory like:
sub1.example.org/…
sub2.example.org/…??? bohhh
Forum: Plugins
In reply to: [Plugin: WP-Super-Cache] Delete Cache doesn't delete wp-cache FilesHappens to me also, when testing I have to delete files via ftp. (WPSC 1.0, WP 3.2.1)
Thank you both guys, I needed both the plugin and the include category support π
But, I noticed that at present time plugin version is 2.2.1 while the modified version with the include cat thing is 2.1.6, si I guess HΓ©ctor forgot to include this feature in the latest release? I hope he does, it’s useful!
Forum: Plugins
In reply to: error_log says: File does not exist: /home/…/popup.js …Apparently for an unknown reason popup.js and popup.dev.js were gone, copied from another installation the error has gone away.
Forum: Fixing WordPress
In reply to: 120'000 posts, 218'000 tagsWith 8GB instead of 4GB no sign of crashes, memory consumption varies from 4GB to 6GB for now.
Forum: Installing WordPress
In reply to: 404 on /wp-admin/Had this problem a while ago and I didn’t remember how I fixed it at first. Now I fixed it again, by chmodding to 755 wp-admin and its sub directories, and to 644 files inside wp-admin and subdirectories.
I don’t know what happens during the update, if existing files’s attributes got changed or attributes of new files.
Forum: Networking WordPress
In reply to: 3.1 Upgrade, now user and site search not workingIpstenu:
Okay, what’s the blog NAME, not the title, the NAME.Like ‘camels’ is titled ‘meals on camels’ and ‘camisoles’ is ‘Shirts I live in!’
Sorry but I don’t understand what are you asking me.
Under Settings>General>’Site Title’ of my domain mapped “awesomeblog” to www/.awesomeblog/.com I put “Awesome blog”.
Now if I search for “awesome” from my/.mainsite/.com/wp-admin/network/sites.php, I don’t see any results.
I run WP 3.1.3 network install, with WP Super Cache and other plugins of course, but they shouldn’t interfere with that dashboard function(s), I suppose.
Forum: Networking WordPress
In reply to: 3.1 Upgrade, now user and site search not workingSearching for titles, doesn’t work for me either.
If a blog is titled “Example Blog”, searching for “Exam” or “Exam*” or “Exam%”, doesn’t return any results π
Forum: Networking WordPress
In reply to: 3.1 Upgrade, now user and site search not workingI doesn’t work for me either, the site search. I don’t understand what it searches for? The domain? If I have a site with domain “www.example.org” it doesn’t work if I type in the box any of:
www .example. org (anti auto link)
example.org
exampleForum: Plugins
In reply to: [WordPress.com Stats] [Plugin: WordPress.com Stats] Stats still brokenI agree.
I network updated my WordPress to the latest 3.1 and I can’t even find the stats plugin management menΓΉ label.
I also have a broken image to click in the new top admin bar in the frontend that links to wp-admin/?page=stats but when clicked it loads a page that says wp-admin/?c=1 that doesn’t show anything different from the typical dashboard homepage.
Forum: Networking WordPress
In reply to: wp-cron causing excessive processesThanks mrarrow for your cron’s adventures feedback π
I’m trying myself to shed some light upon missing scheduled posts in a network of 100+ blogs of a WP3 multisite installation, WP-super-cache enabled.
I’ve pretty much followed the instructions listed here to crontab a custom wp-cron-all.php script, but authors of some blogs report that their scheduled posts doesn’t get published, dashboard reports “missing schedule”.
wp-cron-all.php is crontabbed to run every 15 minutes.
This file contains among other things a loop made this way:
foreach ($blogs as $blog) { $cronStartTime = microtime(true); echo date('Y/m/d H:i:s', $cronStartTime) . " Starting wp-cron for $blog->domain"."$blog->path..."; $cron_url = $blog->domain . $blog->path . 'wp-cron.php?doing_wp_cron'; wp_remote_post( $cron_url, array('timeout' => 0.01, 'blocking' => false, 'sslverify' => false) ); $cronEndTime = microtime(true); $duration = $cronEndTime - $cronStartTime; echo " (completed in ". $duration ." seconds)<br />\r\n"; }The log.txt that is output indicates that every call to blogXXX/wp-cron.php?doing_wp_cron is executed correctly. (I don’t know what “doing_wp_cron” is for).
But if I run a-blog/wp.cron.php manually from a browser, it loads and loads and loads, never ends, this makes me think.
Trying to re-enable default WP cron, removing the constant from wp-config.php, caused the server to freeze, and needed to reboot.