Laughinglizard
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: REQ: deliver empty my-hacks.phpActually, the whole point of my-hacks.php is that this file does not get overwritten (or rewritten with a CVS diff) on upgrade of a version of WordPress. If an empty my-hacks.php was included in the installation, many people would overwrite (by mistake) their existing my-hacks with the new, empty version, thus defeating the purpose of having a my-hacks file.
Furthermore, not everyone uses hacks inside their WordPress installation and in my opinion, the hack file should not be set to true by default. You mention performance problems with my-hacks.php that I am not aware of. As for including a simple my-hacks with the install, the same problem arises as above.
The documentation in the wiki is the best source (at this time) for information about this file and how to set it up.Forum: Fixing WordPress
In reply to: Help!🙂 Just saw your post. So here are some semblances of answers.
1) (Assuming you mean passworded posts when you say private posts) Find the function that creates the commenter plugger names in index.php and wrap it in this if statement:
if (empty($post->post_password)) {
comment_plugger_function_of_some_kind();
}
2) Take the second $text=…blah… out of the code and replace the first $test=… with:
$text = preg_replace(“#$acronym(?!</(ac|sp))#”, “$acronym”, $text);
3) A fair amount of extra code is needed to keep private (again assuming you mean passworded entries) entries out of these stats. I would make GamerZ a request to add that featuer.
4) I think this version spits out the categories’ links:
http://www.pixel-junkies.net/kore/gamerz/portfolio/programming/wp-stats.txt
Hope these help a little.
PeaceForum: Requests and Feedback
In reply to: REQ: Post read X times counterQuick and (really) dirty fix: Find the mysql_fetch_array() function in question and add an @ in front of it, like so:
@mysql_fetch_array()Forum: Plugins
In reply to: AutoUpdate LiveJournal Hack@zenandjuice: are you using a mac or a linux box when you post your entries? You could try the following and see if it helps:
Find this inside the ljautoupdate function:
$lineendings = “pc”;
And you could try the other variations in place of “pc” , namely:
“unix”
“mac”Forum: Plugins
In reply to: Sticky Post Hack – 0.72@nexia: point well taken, but no promises on when that will be available. I will, however, see what breaks it in 1.1
Forum: Everything else WordPress
In reply to: bug file uploadIt might not be a bug. Does the directory exist and does it have the right permissions?
Please do a search on this forum for upload problems and look through some of the issues and solutions provided. Might help you with your problem.Forum: Fixing WordPress
In reply to: Photo Blog Ability?My opinion: Just choose one.
Frankly, WP and MT are both so nice that you will forget (in either case) about the trials of making the decision as soon as you make it. You will be too caught up with the blogging experience.
And register already! 🙂Forum: Installing WordPress
In reply to: atten. Laughing Lizard sql dumpFor the benefit of everyone trying to find a solution to this problem, ronco’s issue was solved in this thread:
http://wordpress.org/support/2/2825Forum: Installing WordPress
In reply to: can not get past #4.Courtney, for your blog’s protection, I would remove the above link to your install-config.php (though it is somewhat safe, it might cause problems later)
Forum: Installing WordPress
In reply to: att.LaughLizard&WillM-RuntimeErrorsInternet Explorer is weird ( annoying really, try http://www.mozilla.org ) and very strange errors crop up with every little plug in and program install. Glad you got everything working!
Welcome to the WordPress community and the blogging bug!!
PeaceForum: Fixing WordPress
In reply to: Photo Blog Ability?hipoxia uses MT.
However, the CSS and the design/photographic capabilities of Brian are what make his photoblog such a pleasure to visit, not the tool he uses!
I run a very simple moblog (WordPress) at http://dinki.mine.nu/moblog/
Every picture in there is emailed to the blog through my phone. I never, ever log into the admin. (though mine is NOT as aesthetically pleasing as Brian’s)Forum: Installing WordPress
In reply to: att.LaughLizard&WillM-RuntimeErrorsTry this if you are using Internet Explorer (which I believe you are):
Go to the menu bar, click on Tools, and then Internet Options. Once the window is open, click on the Advanced tab and scroll down till you see “Disable Script Debugging”. Check that checkbox and restart Internet Explorer. See if that helps your posting problem.Forum: Fixing WordPress
In reply to: Movable Type import problems!You could do a
UPDATE wp_posts SET ping_status = 'open';
to open the pingbacks for all the posts. Trackbacks are just handled as comments and thus when comments are on, trackbacks will also be allowed.
PeaceForum: Plugins
In reply to: Sticky Post Hack – 0.72“It lets a blogger indefinitely leave a post on top of their WordPress blog”
… is correct. If it does not behave this way, there is a bug which needs to be fixed. Post bugs on here or through email.Forum: Installing WordPress
In reply to: atten. Laughing Lizard sql dumpThere is an item that I did not think about and that is my mistake. Once you download these files, before you import them (applies to both the dumps) open the text file and do a search for
http://dinki.mine.nu/wp
and replace that link with the siteurl for your WP installation (leave the single quotes intact)
e.g. Right now he files have this line:
INSERT INTOwp_optionsVALUES (1, 0, ‘siteurl’, ‘Y’, 3, ‘http://dinki.mine.nu/wp’, 30, 8, ‘siteurl is your blog\’s URL: for example, \’http://example.com/wordpress\’ (no trailing slash !)’, 8);
Replace with:
INSERT INTOwp_optionsVALUES (1, 0, ‘siteurl’, ‘Y’, 3, ‘http://yourwebsite.com/wpfolder’, 30, 8, ‘siteurl is your blog\’s URL: for example, \’http://example.com/wordpress\’ (no trailing slash !)’, 8);
Again, sorry for that oversight, that should fix your issue (you might have to re-import).