Laughinglizard
Forum Replies Created
-
Forum: Plugins
In reply to: Admin based CSS Style Manager hackThere has been an update to this hack which can be downloaded from the same link. xtool: your problem would probably be solved through that update.
@kayaker: Your error is very intriguing. This hack has been tested on almost every version of WordPress after 1.0 platinum (till 1.2 alpha) However, try this and see if it helps.
Open chose-style.php with your editor and find:
require_once(‘admin-header.php’);
Add this right below that line:
function checked($checked, $current) {
if ($checked == $current) echo ‘ checked=”checked”‘;
}Forum: Plugins
In reply to: AutoUpdate LiveJournal Hackyep 🙂
Forum: Plugins
In reply to: Sticky Post Hack – 0.72If you click on “publish” instead of “save”, the status will change to publish.
Forum: Fixing WordPress
In reply to: wordpress-2004-03-08Did you redo the rewrite rules from the permalinks menu for the nightly (if this was an upgrade)?
Forum: Fixing WordPress
In reply to: SQL/DB Error messageThis might give you some insight. This works fine:
http://www.urbanredneck.org/index.php?p=12&cat=1Forum: Requests and Feedback
In reply to: SQL query for turning on all comments again?UPDATE b2posts SET comment_status = ‘open’;
Where b2posts is the name of your posts table, it could also be wp-posts etc.Forum: Plugins
In reply to: Sticky Post Hack – 0.72@andy91fr, Anon and nexia: There will be a new version of this hack soon (maybe sometime this week) But till then, try this MySql query:
ALTER TABLE $tableposts CHANGEpost_statuspost_statusENUM( ‘publish’, ‘draft’, ‘private’, ‘sticky’ ) DEFAULT ‘publish’ NOT NULL;
Where $tableposts is the name of your posts table (wp-posts in Andy’s case) I believe Andy’s query is missing the ending ‘;’Forum: Your WordPress
In reply to: my three wp blogsVery nice designs!! Added you to my Weblog Tools Collection (I hope you dont mind)
Forum: Your WordPress
In reply to: My WordPress Blogs – a MenagerieSure they are. Most of the excess stuff like categories and titles have been stripped out to prevent warnings. The Sprint script is readily available from http://dinki.mine.nu/word/ and is being worked on all the time (thus the difference in size of pictures). It will have a clickable thumbnail gallery sometime. 🙂
Forum: Plugins
In reply to: Threaded comments hack – 0.72@caroline: did you put the add_comment_reply_ID.php in the root of your WordPress blog? Also, what version of WP are you using?
PS: If this thread gets lost and I do not reply, please feel free to email me.
🙂Forum: Fixing WordPress
In reply to: Last Updates LinksChmod the weblogs.com.cache as mentioned in the install readme and make sure the line ending with links-update-xml.php in index.php is uncommented (remove the double backslashes)
Also, the function call made from your index, that shows the links list, should have “show updated” enabled somehow. There is a nice writeup in the wiki to explain some of this. Another little peeve of mine is that once all of this is enabled and working correctly, the links take a little time to show updated, so be a little patient with it. 🙂
PeaceForum: Plugins
In reply to: Part of an entry.You would have to use some sort of an RSS reader if you wanted this to be dynamic (that is, the first item would be dynamically grabbed from the other blog)
Check out my news reader at
http://dinki.mine.nu/word/index.php?p=137&more=1&c=1
And if you like the way that looks, let me know and I will modify the code to allow an input of the number of posts you want to show.
PeaceForum: Plugins
In reply to: WP Backup/Restore new versionA “permission denied” in line 217 can mean a couple of different things.
1) Permissions for the backup folder are incorrect (but you have said that those are set to be 766)
2) The backup folder is in the wrong path. It has to be in the root of your WordPress folder.
3) Your webserver does not have the right (even with 766) to write to the backup directory you have setup. In this case, you will either have to try a 777 or ask your system admin to make some changes.
If these do not solve the issue, please email me outside this thread and I will try to help you out as much as I can.Forum: Fixing WordPress
In reply to: Very strange problem reading postsYou could do something like:
<?php
if (!isset($cat) && !isset($p))
$cat = 1;
?>
That would force a category only when there is no $p defined (as well as $cat not defined)Forum: Plugins
In reply to: AutoUpdate LiveJournal HackIt is really not very insecure to have the username and password in that file. It is as secure as having a wp-config.php with your database and password in it. Just dont send that file to someone without changing the info first.
As for the request, I am in the middle of a thesis and extremely busy. However, I am willing to get it done when I have some free time. Could you do me a favor and send me an email reminding me of this and I will try to work that in for you.
Peace