Chek popularity of your site

December 2, 2009 at 12:59 pm | In Search Engine Optmisation | Leave a Comment

Good toll to check page rank, alexa rank, google backlinks, yahoo backlinks, technorati lisning, whois data etc
popuri.us

Google event tracking script

November 26, 2009 at 2:22 pm | In Google | Leave a Comment

New script for Google analytic tools allows to track clicking on the links on your site
Go to content->event tracking
you see stat for clicking on internal and external links
click on view all, after that on click and get list of clicks on links on the page where this code is installed
<script src=”jquery.google-analytics.js” type=”text/javascript”></script>
<script type=”text/javascript”>
$(document).ready(function() {
$.trackPage(‘UA-xxxxxxx-x’);
$(‘a’).track();
});
</script>

php on windows computer

November 15, 2009 at 8:29 pm | In Software, Web Sites | Leave a Comment

Download and install http://www.wampserver.com/ (open source project, free to use)
Apache 2.2.11
PHP 5.3.0
MySQL 5.1.36
Phpmyadmin
size: 16Mo

– then you have a PHP webserver + mySQL database on your computer.

After installation you need to configure 2 small things:

-install php version 5.2.9-1 (click ‘get more’)

-Activate ‘rewrite module’ in Apache – modules (to have friendly url’s)

Automated Browser Compatibility Testing

October 26, 2009 at 12:06 pm | In Web Tools | Leave a Comment

The fact is a web programmer may spend 12 hours in the office. Good programmer must be highly skilled analyzing and developing complex code for applications and more. All the time programmer should increase his different technical skills including programming languages such as C, C++, operating systems such as Windows, Linux, Platform IDE such as Eclipse, Hardware, PC, Networking, Word processing, steeping learning curve to pick up a new skill.

But don’t you know that sometimes web programmer is obliged to spend more than 80% his time in fixing browser compatibility problems. There are many different browsers people use today – Internet Explorer, FireFox, Opera, Netscape etc and very often one needs to check the site with every of them.

I’ve found the solution; here is 2 sites that offer Automate Testing any Browser Compatibility you need to be tested. So, you can also try it to.

http://www.browsera.com/

http://browsershots.org/

Q. How did the programmer die in the shower?
A. He read the shampoo bottle instructions: Lather. Rinse. Repeat:-)

WAMP5 Server

October 20, 2009 at 3:56 pm | In Software | Leave a Comment

If you want to work with your Drupal site on local computer good decision is WAMP5 Server that installs automatically Apache 1.3.31 ,PHP5, MySQL database ,PHPmyadmin and SQLitemanager on your computer. After installation check if it works properly on http://localhost and add to host file (C:\WINDOWS\system32\drivers\etc\hosts) address of your site, for example loc.n1.development.yourdomian.com

How to create HTML text block on WordPress blog

October 19, 2009 at 1:01 pm | In Blogs | Leave a Comment

Login to your account, go to wp-admin/widgets.php
Drop text widget from the list of all widgets to the sitebar – now save it
After saving click on edit button and put any html text you want

Rotate your screen

October 14, 2009 at 9:05 am | In General | Leave a Comment

If you clicked by mistake on something wrong on your keyboard and you see your screen rotated 90 degree do right click on the screen, choose Graphics Properties -> Display Settings-> choose Zero in rotation options. You can also do Rotation option disable.

Web dictionary (C)

October 12, 2009 at 9:10 am | In General | Leave a Comment
CashCheck A cash-transaction reporting tool that provides a complete statement of cash transactions made to and from the customers.
CPA Cost Per Acquisition,the cost for each customer acquired through an ad
CPC Cost Per Click , the cost for each click on an ad
CRM Customer Relation Management, CRM is a general term for the range of marketing activities company conducts in order to retain customers.
CSV CSV Comma Separated Value, CSV lists of account numbers in a spreadsheet format.

More important things:
restaurant equipment
air conditioning
cavity wall insulation
exercise bikes

How to use proxy IP in FireFox

October 7, 2009 at 2:59 pm | In Web Tools | Leave a Comment

Go to Tools->Options->Advanced->Network->Settings
Check Manually proxy configuration check box, enter IP address into the http proxy text box adn number of port (usually 80)

Link on input button

September 30, 2009 at 10:20 am | In Programming Feauters | Leave a Comment

<input type=”button” class=”button” value=”All Holidays Info” onclick=”location.href=’http://allholidaysinfo.com’” />

If you want to see hand on the mouse over on the button you should add to css to the “button” class cursor:hand; for IE and cursor:pointer; for Mozila
.button {
border:solid 1px #000000;
color:#FFFFFF;
font-weight:bold;
font-size:11px;
cursor:hand;
cursor:pointer;
}

Next Page »

Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.