Laughinglizard
Forum Replies Created
-
Forum: Plugins
In reply to: WordPress One Click Backup@daisyhead: Did you see the new upgraded version. Look at my post right above yours for the new URI. That has a much better backup engine and should work!
Forum: Plugins
In reply to: Hack Install – Noob@filschiesty: textile is already a part of Wp. You can enable it by looking at the end of the vars.php file which is in your wp-includes folder. Look towards the end and the lines that need to be uncommented will become obvious.
Forum: Plugins
In reply to: Help! – Threaded CommentsSorry. This thread gets lost all the time.
@rose: That means that the column you are trying to add already exists in your database and does not need to be added anymore.
@anon’s: The instructions do not mention that you need to put the functions in my-hacks.php. I was wrong there.
@everyone: There is an update to this hack which will soon be released. Stay tuned. I promise that there will be almost nothing to install! 😉
PeaceForum: Fixing WordPress
In reply to: ping to blo.gs and weblogs.comThere is no change in the pinging code between 1.0.1 and 1.0.2
Forum: Everything else WordPress
In reply to: WordPress vs MovableTypeForum: Themes and Templates
In reply to: Shadowed Backgrounds/Containers@gregor: If you look at the way this forum is done, you might get a good idea of the method.
Here is the line in the CSS that creates the shadowed left and right columns you see here:
#bling {
background: url(images/bg-3.gif) repeat-y center top;
}
and the image looks like:
http://www.wordpress.org/images/bg-3.gifForum: Fixing WordPress
In reply to: Permissions…Easiest solution is to delete all the files, re-upload and re-install. I also strongly suggest that you do not use the nightlies for a production blog and use the 1.0.2 version.
The next easiest method is to use a MySql admin tool like phpMyAdmin, go into the wp_users table and edit the admin user. You will need to obtain an MD5 hashed password, copy and paste the hash into the password row and then login with the password that you hashed.Forum: Installing WordPress
In reply to: 404 error attempting install-config stepI believe that you had a problem with your upload or you have the wrong directory name (wordpressblog)
Forum: Fixing WordPress
In reply to: Ins TagsThat tag is in the CVS.
Forum: Plugins
In reply to: Login Box help@omgwtf and others: There is a solution in the playpen.
🙂
http://wiki.wordpress.org/index.php/PlayPenForum: Plugins
In reply to: Template or CSS Switcher with cookie handling@anatman:
That will work as well. You would have to modify the code very slightly. For an example of how this would work, just download a copy of WW from here:
http://weblogtoolscollection.com/archives/2004/03/07/wuhwuh-01-release-candidate-1/
WW already has these 2 hacks built in and you can look at the code to see the changes. 🙂Forum: Fixing WordPress
In reply to: commenter’s email and spamI third that notion. I have eliminated it already in my own comments and can provide a “gauranteed spam proof” in my comment form. 🙂
Forum: Plugins
In reply to: Help Make Nicer Archives Default To Categories Vie🙂 No worries.
The second change was to make sure the category labels worked. I am having trouble recreating this on my server (due to different configurations).
Would you try adding:
global $orderby;
before the:
if ($orderby == ”) $orderby = $HTTP_POST_VARS[“orderby”];
if ($orderby == ‘category’) {
and see if that helps?Forum: Plugins
In reply to: Help Make Nicer Archives Default To Categories VieI am sorry that I have not been able to address this sooner, but here is an option.
The reason that the date is the default is because that is the way WordPress takes care of default sorting. In order for the archives to be sorted by category automatically, you will have to make 2 changes.
1) Modify the Sorted Archives link to look like this: http://organicgardensite.com/narchives.php?orderby=category
2) Find this line in narchives.php:
if ($HTTP_POST_VARS[“orderby”] == ‘category’) {
and replace it with this:
if ($orderby == ”) $orderby = $HTTP_POST_VARS[“orderby”];
if ($orderby == ‘category’) {
HTH and again, sorry for the delay.
PeaceForum: Installing WordPress
In reply to: Forbidden Login@daynah: I agree with CeeJayCee. A 403 is a permission error.
http://www.checkupdown.com/status/E403.html