Laughinglizard
Forum Replies Created
-
Forum: Plugins
In reply to: Moblog Hack Beta: Need Beta TestersCategories other than general or multiple categories have not been implemented in this script. They might be in a future release.
Forum: Plugins
In reply to: WP Backup/Restore new versionFirst idea is easy, though delete would require a little bit of code (unlink the files)
Second idea is workable, but tougher to implement. I did have to wrangle with the code to prevent an infinite loop. 😉
I will look into those, dont know when they will get done though.Forum: Fixing WordPress
In reply to: How to ping to other directories?Try this:
Insert this into my-hacks.php (or functions.php):
// pings bitacoras.net
function pingbitacoras($blog_ID = 1) {
// original function by Dries Buytaert for Drupal
global $blogname,$siteurl,$blogfilename;
if ((!(($blogname==”my weblog”) && ($siteurl==”http://example.com”) && ($blogfilename==”wp.php”))) && (!preg_match(“/localhost\//”,$siteurl))) {
$client = new xmlrpc_client(“/ping”, “bitacoras.net”, 80);
$message = new xmlrpcmsg(“weblogUpdates.ping”, array(new xmlrpcval($blogname), new xmlrpcval($siteurl.”/”.$blogfilename)));
$result = $client->send($message);
if (!$result || $result->faultCode()) {
return false;
}
return true;
} else {
return false;
}
}
And add this to your post.php:
pingbitacoras($blog_ID);Forum: Plugins
In reply to: WP Backup/Restore new version🙂 Thanks! Keep the feedback coming!
Forum: Plugins
In reply to: WordPress Wapwp-config.php from the root of your blog
Forum: Fixing WordPress
In reply to: Just a few questions for you about WordPressAnd…going to #3 again:
Because the blog is completely dynamic, there is no “archiving” done. When someone clicks on the archive links (in the vanilla install), the posts related to the archive search are output on the page (such as a month, year etc) There are many nice hacks to manipulate archives in specific ways. As Podz mentioned, MtDewVirus has a nice archives hack and I have one to sort by various items. Discussed here:
http://wordpress.org/support/10/2598Forum: Plugins
In reply to: WP Backup/Restore new versionThere have been some problems associated with “pasthru” for this backup script and there is an update to it which takes care of just that.
You can download it from here:
http://dinki.mine.nu/word/b2-img/wp_backup11.zip
I would appreciate if bugs were posted on here.
All changes listed in the readme.txtForum: Plugins
In reply to: WP Backup/Restore new version@stip: Not at all!! This backup is just an integerated and convenient way of doing what you could with many many other tools. To move your blog from one domain to the other, you would copy all your files from your old domain to your local computer and then back to the new domain. Then you would use some MySql tool like phpMyAdmin (or anything else provided by your host, check with them) to backup your database. Then you would restore the database with the same (or some other tool) onto your new server. The fact that this particular backup/restore method does not work for you, does NOT mean you cannot backup. Sorry if I caused any confusion.
Forum: Plugins
In reply to: Threaded comments hack – 0.72That will be part of a future release, Felisha. Though I am not sure when that is going to be.
Forum: Plugins
In reply to: Threaded comments hack – 0.72Either you missed some code or another bug has surfaced for the new version of WordPress. I suggest following through the installation again to make sure you put in all the code (especially the ones in wp-comments.php). As your hack stands right now, the reply does not start a thread but continues as a single comment.
Please let me know through email (look at my profile), this thread gets lost.Forum: Everything else WordPress
In reply to: YAWPS – My second official WordPress site! – conti@tony: category description is what you need. Look through the category functions to see how to output the descriptions (relatively simple). As for styling them, this should be the ticket:
http://www.1976design.com/blog/archive/2003/11/21/nice-titles/
PS: I am thinking of using some of your recipes tonight! 😛 Would you consider starting an ethnic section and/or contributions?Forum: Everything else WordPress
In reply to: YAWPS – My second official WordPress site! – contiSweet, thanks. How about the CSS now? 😉
As for teasers for the sub cats: If you see this list of posts
http://cantboilwater.com/index.php?cat=28&orderby=title&order=ASC
I love the little teasers under the topics; very lucid, yet very informative!
Your subcats can be spiced up just like that with little tidbits of what each subcat will have underneath (e.g. fish: fried, baked and brioled to lip smacking tenderness). Could also be done with the CSS link title option (something like dunstan’s).Forum: Everything else WordPress
In reply to: YAWPS – My second official WordPress site!Wonderful job Tony! Kudos are definitely in order. I love the clean navigation the most. Instead of cluttering up the front page with all the posts, you providethe categories and the let users choose their poison. Recent entries work well too! I dont know how effective it would be in a typical blog, but it sure would look and feel right in a “weblog tools collection” kinda site (which is a list of weblog recipes anyways, right?) I would love to see how this index would work in that blog. Care to share the index with us?
One suggestion that I think would be icing on this already nice peice of work: Little teasers around the sub cats maybe?
Linked! This blog goes into my “Movers and Salt Shakers” category! 😉Forum: Plugins
In reply to: Nicer archives with sort by categoryFixed the year thing and also added a fix for author. Check it out!
😛Forum: Plugins
In reply to: archive hacking…chris: Look at http://wordpress.org/support/10/2598
😛