Tuesday, September 4, 2012

PHP performance and memory usage: How to implement a real life benchmark with PHP

I found a very interesting blog about PHP coding performance. Every PHP coder should read this blog. Measure and write code. In this order. Check this blog, right?

PHP performance and memory usage: How to implement a real life benchmark with PHP: To determine the maximum capacity of a web page, Apache ab is often used in the first step. Fetching one URL very often is optimal for cac...

Latest Firefox Beta Offers Powerful New Tools for Web Developers


The Developer Toolbar itself is really just a faster, easier way to get to the common web developer tools. To use it just hit the keyboard shortcut Shift-F2 and the Developer Toolbar will appear as a thin, dark gray strip along the bottom of the page.

To the right of the toolbar you’ll find buttons for the Inspector, Console and Debugger panels, but the real star of the Developer Toolbar is the new command line tool, which sits on the left side with a shell-style prompt. Mozilla refers to this as a “Graphical Command Line Interface,” an oxymoron that actually makes sense when you see it in action.


Learn more

Friday, August 31, 2012

How to produce real income your Wordpress site

All marketing expert know how important the good quality email list. Direct marketint is on of the most effective sales method on the world. You have a lot of visitors. I would like to know how many visitor will be customer. 1 from 100 or 1 from 1000 or less?

If you use wordpress you can collect e-mail addresses. And that point you have the control. You can sand offers, or studies newsletters for more thousand people. We have some customers who have Wordpress sites and they couldn't find effective solution for this problem. All visitors stay only few seconds on their sites, but they would subscribe a newsletter. I found the best Wordpress subscribers plug-in. for our customers. I'm sharing with you this plugin, maybe you can grow your profit instantly like my customers.

Even every week you can reach people who once give their e-mail address. The conversation is amazing.

Wordpress subscribers plugin

Friday, August 10, 2012

The secret of UTF-8 encoding websites

There is an important meta tag when you need to do an i18n or multi-language utf-8 website. You have to put this line in HTML code <head> section:

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

There is another method. You can send HTTP header code about encoding. Here is a small PHP code as example:

header('Content-type: text/html; charset=UTF-8');

You should use both method at the same time. If you don't want mysterious invalid chars on your page use these methods all your websites. Yes, on a simple English website. You never know when would you like a new language on your site or special character. use both and you enjoy UTF-8 chars.

Have you problem with UTF-8 php mail sending? 

Saturday, August 4, 2012

Fastest domain redirection

The http server redirection is the fastest. The server don't need to access filesystem before responding new location.
Nginx URL redirection example:
server {
    server_name www.firstexample.com 2ndexample.com www.example.com;
    rewrite ^(.*) http://example.com$1 permanent;
}


Our new logo

domain names and hosting = Webmiral
Our best web-hosting and domain names company's logo.
Our new logo has done. Webmiral word is migrated from web and admiral words. The planet earth is the symbol of web. The admiral hat is the symbol of admiral word.

Friday, August 3, 2012

New extremely fast URL shortener on web

The newest webtool that can use every webpage owner. Check this extremely fast URL shortener tool. Absolutly no advertisement just very fast redirecting.

Go to resize-links.com now.

I welcome all comments, what do you think about this tool?

Saturday, June 30, 2012

Easy, fast and secure Wordpress secure key and salt genration



When you install a new Wordpress blog you need to edit wp-config.php file.
This file contain some defines:

  • These are secure keys define names:
    • AUTH_KEYS
    • SECURE_AUTH_KEY
    • LOGGED_IN_KEY
    • NONCE_KEY
  • These are salts define names:
    • AUTH_SALT
    • SECURE_AUTH_SALT
    • LOGGED_IN_SALT
    • NONCE_SALT 
Keys and salt have serious role in authentication and password storing.

Fast and secure method to generate these


Here is the official wordpress key and salt generator
that is most secure method to give a salt and key to your wordpress blog configuration file. Every time you click this link again, you’ll get another unique Wordpress secure key and salt.