Laughinglizard
Forum Replies Created
-
Forum: Plugins
In reply to: WP Blacklist Comment SPAM FilterationI would like to know if and where this script misses spam in comments from people that actually use it. It will help in making it better. I am also going to work on a script which lets you add new spammers to the blacklist.
Forum: Plugins
In reply to: WP Blacklist Comment SPAM FilterationIn the wiki now under WP Hacks. The zip file has the same instructions included in it.
PeaceForum: Plugins
In reply to: Right Click “Blog This!” for MozillaThis is meant for Mozilla. The Google toolbar is an Internet explorer API implementation that is not related to this hack. Google does not release their toolbar code (as fas as I know, you could check). However, it is very possible to add your own button to Internet explorer, though it is definitely more work than just editing a few files. You could just use the bookmarklet from the admin page.
Forum: Fixing WordPress
In reply to: A Coment on the CommentsIt is a redirection issue. Changing your siteurl from http://www.frog-net.co.uk to frog-net.tufmedia.net will fix it.
I notice that your blog is hosted at http://frog-net.tufmedia.net/ while your siteurl points to http://www.frog-net.co.uk which is then reflected to frog-net.tufmedia.net via a DNS redirection. DNS redirection (which is effectively an HTML redirection of some sort) munges http POST messages and your comment post gets lost in that transfer. The reason that posts work fine is because they dont source your siteurl but maintain a relative path on your server.
Hope this helps.
PeaceForum: Fixing WordPress
In reply to: Comments on Permalinked Items@debwire: The file which contains the allowed_tags() function is on your server, so the only reason you would get that error would be if that file was somehow not included when you call your settings (just thinking out loud here). Here is something that tends to get overlooked. While performing an upgrade, remember to NOT use your old wp-config.php. Modify the new one and then rename it to wp-config.php (from wo-config-sample.php)
Forum: Requests and Feedback
In reply to: Bugs boardI personally consider a centralized bud repository/depository to be a better solution for developers (and users alike) because there is less browsing/searching involved and a lesser chance of missing something important. Our user and developer base is quite diverse and geographically fragmented which can lead to lack of communication and lack of opportunities to discuss a bug in person. Forums are, by definition, an area of dicussion. They are good places to describe bugs and discuss possible solutions for bugs. However, they are a terrible place to document and list bugs and fixes because dicussions tend to move on and threads get lost in menus.
The wiki fits the bill quite well. I wish more people would look at the wiki and its presence would be further pronounced in the forums and the documentation. It surely would lead to lesser superfluous traffic in the forums.Forum: Requests and Feedback
In reply to: PHP: Return, not print contentOne thought is that it makes your template more code intensive and in order to build or customize your template, you would have to know code fairly well. Creating syntactically correct PHP, for the average user (even someone with a little knowledge of code) can be daunting.
Peace.Forum: Installing WordPress
In reply to: 1.01 upgrade from .072 — ErrorsYou really should replace the old config file with the new one from 1.0 (you really really should try 1.01 RC1 from http://wordpress.org/development/archives/2004/1/15/101-release-candidate/ ) All you have to make sure is that your config values are the same as your old config file. I would suggest removing all the files from the old 0.72 installation and putting the new ones in there (unless you have an old blog in there which has a lot of extra images or files) A lot of installation issues much like yours are caused by missing files. Also, the RC1 has a lot of bugfixes for reported installation errors.
Forum: Installing WordPress
In reply to: bookmarkletFor right click in IE problem with the bookmarklet, please refer to the following thread. I have posted a solution there.
http://dinki.mine.nu/word/index.php?p=111&more=1&c=1Forum: Fixing WordPress
In reply to: bookmarklet…@amoen and others: Here is a small temporary fix as emulated from the Nucleus site (one of their answers is flawed and their own code has bugs, oh well)
Create a new file on the root of your blog called rightclick.php and put the following in there (replace open(‘http://… with your own servername):
<script type=”text/javascript” defer=”defer”>
doc=external.menuArguments.document;
lt=escape(doc.selection.createRange().text);
loglink=escape(external.menuArguments.location.href);
loglinktitle=escape(document.title);
open(‘http://yourserver.com/yourweblogdirectory/wp-admin/bookmarklet.php?text=’+lt+’&trackback=1&pingback=1&popupurl=’+loglink+’&popuptitle=’+loglinktitle,’bookmarklet’,’scrollbars=no,width=480,height=590,left=100,top=150,status=yes’)
</script>
Now create another file on your desktop called wordpress.reg and put the following in there (again replace the varibles please):
REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Post To &WP : Mindful Musings]
@=”http://yourserver.com/yourwordpressdirectory/rightclick.php”
“contexts”=hex:31”
Now double click on the wordpress.reg file to add the information to the registry and the right click in IE should work at that point.
PeaceForum: Plugins
In reply to: REQUEST: Word Press in FlashIt actually works just fine without too many changes. Check out http://dinki.mine.nu/weblog/b2flash.php
You need to change the following to make it work:
After you download and follow all the instructions to install, find b2flashxml.php and in that file replace blog.header.php with wp-blog-header.php
Peace.Forum: Plugins
In reply to: Who is Online?Sorry about that Rupe. The thread got lost 🙂 podz answer above should work.
Forum: Installing WordPress
In reply to: WP is already installed?Do you know if your host uses IIS 4.0?
Forum: Installing WordPress
In reply to: WP is already installed?@antifuse and at Cine: The wp-config-sample.php is compeltely new in 1.0 and later. Please use the new version by changing your database variables in that file and then renaming it to wp-config.php Also, please make sure your database prefix is the same as your old b2 prefix if you are upgrading the old database to the new one.
PeaceForum: Installing WordPress
In reply to: WP is already installed?Run upgrade.php from your wp-admin directory rather than install.php