Test form iPayMu
Author Archives: Xrvel
PHP HtmlEntities for UTF-8 Characters
If you just use simple PHP htmlentities function with one argument, you will notice that when you pass string that contains UTF-8 characters, the result is incorrect leaving you with some incorrect characters on the result.
To use it correctly, use this code ![]()
htmlentities($your_string, ENT_COMPAT, 'UTF-8');
jQuery Not Class Selector to Exclude
For example we want to hide all hyperlinks that do not have “banana” class. How to do that with jQuery?
You can use the javascript code below.
$('a').not('.banana').hide();
Easy right?
My Proxy List Script and ProxyNoid
I made a free proxy list script about 1-2 years ago which is called “proxycoder script”.
I haven’t continued to develop it for a long time. Recently Oxuro, owner of ProxyNoid.com contacted me at DigitalPoint and told me that he has done some modification to my script. He kindly asked if i can include his modification on the next proxycoder script or if i can give him permission to distribute his modified script. I chose the second choice, i will be happy to see my script to become a well developed proxy list script.
From now, i give permission to ProxyNoid.com to distribute the modified version of my script.
Good luck, Oxuro
Sphinx Search Engine for vBulletin 4
Why sphinx? With fully configured sphinx search engine, your script can search on large amount of data very very quickly, like a speed of light compared with normal way.
On vBulletin 4, rebuilding search index takes very long time especially if you have lot of posts (more than one million) on your forum. My forum has about 1,5 million of posts. And to rebuild search index of about 10,000 posts, it can take hours. So to rebuild search index of 1,5 million posts, it takes days.
Because rebuilding search index was a painful process for my forum, i was thinking to use sphinx search engine for my vBulletin forum.
So first important point is : if your forum has lot of posts, you’d better to use Sphinx. But if your forum has small amount of posts, you do not need Sphinx search engine.
Continue reading