How to enable multi user support in WordPress 3.0

Since version 3.0, regular WordPress and WordPress MU are merged into WordPress 3. All betas of WP 3.0 had Site Admin section in backend (even if upgraded from regular WordPress), but since RC and final release this option disappeared. It is a hidden part of WordPress 3.0 and has to be activated manually with a a …

Disable default WordPress search query

If you’re going to implement your custom wordpress search (not wordpress native) on search.php template – for example using Google Custom Search or Bing – you might have everything working ok, but wordpress is still performing search queries to database which can slow down your site. This is because wordpress treats search.php template as search …

Search & Replace via command line in Linux

I needed to replace domain name in MySQL DB dump which was 700MB, so i’ve googled a bit to find a command line expression. If you need to search/replace in files via command line, you can simply use following command (if perl is installed): For example we can replace css link in all template files: …

How to make iPhone ringtone for free by yourself

Bought an iPhone and have no idea how to make personal ringtones? Wish to have your ringtone from previous phone? Or just don’t want to pay Apple for ringtone? No problem. Actually adding your ringtone to iPhone is really easy. It should be a file with .m4r extention which is actually .m4a file. So just …

How to make Magento’s checkout in a one page

Dealing with Magento we’ve noticed there’s with 6 steps checkout. Magento is not very flexible to customize so 1 step there’s 1 step checkout plugins you can buy for this. Here’s what I’ve found about that. Basicaly a page can be shown in Magento using simple Core_Template type. Basically all code is set inside the …

Improving WordPress .htaccess – optimize WP’s 404 response

WordPress has a 404.php template that’s generated for not found posts/pages. That’s fine, but what happens if post contains an image that’s deleted or moved from your blog or just path is set incorrect? It will output this 404.php template to the browser that’s actually doubles the traffic for a single page (for every not …

New ITL.ua Launched!

Congrats, ITL, we’ve launched new site design of the ITL Company Corporate Site, designed by my team of web-designers and programmers. We’ve worked all around this site’s user interface to make it clean, modern, user-friendly and different to other WordPress sites. If you don’t already know, ITL is a telecom company that represent the whole …

How to Override Inline CSS Styles

css_logo_medium

One of the most powerful features of CSS is the cascading. Knowing how a browser chooses and applies your styles is invaluable knowledge. Novices can find it especially confusing given that style use is influenced by the method used to include the CSS, the order of the rules, how the selectors are specified, and special declarations such as !important.