Laughinglizard
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Importing from blogrolling.comLook at this thread
http://wordpress.org/support/2/769Forum: Plugins
In reply to: Standards for HacksHow about a pre-defined form for hack-authors to fill out and include with the hack? It would contain the staples such as author, webpage, versions affected, instructions and other desireables.
Forum: Plugins
In reply to: Waypath Hack: Content related random trackbacks fr@tcervo: My bad. I must have been too tired when I looked at this last night. It works just fine even with the rel=”external” before the href tag. I have the fix documented in the text file linked below.
http://dinki.mine.nu/word/b2-img/waypath1.txtForum: Fixing WordPress
In reply to: Posting ProblemsYour siteurl variable in the admin page, under options, is off. Make sure it points to the folder where WordPress resides, in your case http://www.lyteforce.ca/wordpress
Forum: Plugins
In reply to: Threaded comments hack – 0.72This is what the b2 motor in my b2comments.php looks like.
<ol id=”comments”>
<?php $postAlternate = “odd”; ?>
<?php
// this line is WordPress’ motor, do not delete it.
if ($comments) {
foreach ($comments as $comment) {
?>
<p id=”comment-<?php comment_ID() ?>”>
<div class=”<?php echo $postAlternate; ?>”>
“>
<?php comment_text() ?>
<cite><?php comment_type(); ?> by <?php comment_author_link() ?> <?php comment_date() ?> @ “><?php comment_time() ?> ‘)” title=”reply to this comment” target=”_self”>Reply to this comment
</cite>
<? global $comment; dodos_thread($comment->comment_ID); ?>
</div>
<?php if ($postAlternate==”even”)
$postAlternate=”odd”;
else
$postAlternate=”even”; ?>
<?php } // end for each comment
} else { // this is displayed if there are no comments so far
?>- No comments yet.
<?php } ?>
Forum: Plugins
In reply to: Waypath Hack: Content related random trackbacks frA lot more complicated. The data you see is actually being output by Waypath and returned as a block of HTML from the WayPath XMLRPC server. In order to put a “target=” kind of tag into each HTML link, one would have to parse through the entire output and add the target tags to the links. But here is the solution. The text file linked below explains how to make the links open a new window for wach waypath related item. 🙂
Peace
http://dinki.mine.nu/word/b2-img/waypath1.txtForum: Plugins
In reply to: Waypath Hack: Content related random trackbacks fr@debwire:
The answer is very simple…
Look for this line:
new xmlrpcval(“3”, “int”), #style
Change the three to 2 or 1 to get different amounts of text returned.
The reason the text comes out blurry is because of the text size. You can change that in the CSS.Forum: Plugins
In reply to: Sticky Post Hack – 0.72Thanks Jackie….I only wish!!
Forum: Installing WordPress
In reply to: Running wp using include(“…”)It should work… unless you change the way the links work inside your blog however, they will point back to your folder and the original index file will not be used after someone clicks on a link inside wordpress. I would suggest modifying the wordpress index.php in the fashion of your main site.
To test your theory, I have two different indexes setup:
http://dinki.mine.nu/index1.php
Which uses the include(“wordpress/index.php”) to get to:
http://dinki.mine.nu/wordpress/index.php
Click around the site in the first link and see what is does…
There are other threads on this forum that talk about moving your index file to another folder. It could be messy.Forum: Plugins
In reply to: WordPress One Click BackupThanks for your help David. :=)
Forum: Plugins
In reply to: Sticky Post Hack – 0.72Sure,
Find this line (or an equivalent) in your index.php:
<?php the_date(”,'<h2>’,'</h2>’); ?>
and replace with these lines:
<?php if ($post->post_status != ‘sticky’) the_date(”,'<h2>’,'</h2>’); ?>
Hope it helps.
PeaceForum: Fixing WordPress
In reply to: Password Protected PostJackie, it works for me (toronto community foundation…right?). You must have a cookie set which is causing a problem. Try emptying your cache and clearing your cookies…
Forum: Plugins
In reply to: WordPress One Click Backup@ Cena, Sisob, Sushubh, Pezastic and others that expressed interest in a restore script:
I have made some changes to the Backup procedure and added the Restore script to it. Now you have the ability to backup your MySql database and download it locally, backup your WordPress folder and download it locally, and restore your MySql database, all from the comfort of a web interface (which can be integerated into the WP admin interface). There is added password protection thrown in as well.
I had the nasty fortune of using my own backup and restore script this morning which forced me to code some bugfixes and finally emerged into a completely different way of backing up and restoring.
Please download the new version from the same link: http://dinki.mine.nu/word/b2-img/wp_backup.zip
This has not been tested on a Windows web server (and I am not sure if the applications that I use are present in a Windows/MySql installation, but I need some feedback)
Please let me know what you think.
PeaceForum: Fixing WordPress
In reply to: Comments off errorAha…you are missing a closing tag for your category, even for the ones where the comments are active. When the comments are activated, the second href (comments popup) cascades over the first, thus providing the illusion of correct formatting.
Forum: Installing WordPress
In reply to: wp-install.php fails to recnognize wp-config.phpAnd you really shouldn’t be giving us the password to your database! 🙂