Why do I need image verification on my website ?
Image verification, another name CAPTCHA, will prevent bots (internet bots or web robots) from using your web form for sending email spam.
CAPTCHAs have found active use in stopping automated posting to blogs, forums etc.
There are two methods to protect your website from sending an automatic emails:
The first one is to insert free CAPTCHA code into your website. Use Google to search for "Free CAPTCHA", "Free CAPTCHA script" etc.
Another method is to create CAPTCHA script by yourself. I found a nice and simple CAPTCHA script here.
Relevant links:
Free CAPTCHA script: http://www.thefreecountry.com/php/captcha.shtml
Showing posts with label Learn Web Development. Show all posts
Showing posts with label Learn Web Development. Show all posts
Saturday, March 28, 2009
Sunday, February 3, 2008
How to Do a Redirect With GooglePages?
If you are planning to create or already created a website with GooglePages you must be aware of one little thing. If someday you'll want to move on to a regular, paid web hosting there will be a problem to do the right redirect to the new website.
How can I create the right redirect from an old website to the new one?
The best way to tell the search engines that your website moved, is with permanent redirect. The permanent redirect, which is referred to as 301 redirect, "sends" users and search engines from the old URL to the new one. The problem is that you cannot use any of 301 redirect methods with GooglePages.
You can accomplish the GooglePages redirect with Meta Refresh (method, that refreshes a web page after a given time interval). The disadvantage of Meta Refresh redirection is, that search engines will show the old website address in the search results. In addition, Meta Refresh is common spam technique. It is recommended to set the meta refresh to at least 5 seconds.
Meta Refresh Tag Sample
Redirect to www.mywebsiteadviser.com after 5 seconds:
<meta http-equiv="refresh" content="5;url=http://www.mywebsiteadivser">
Place the code between the <head> and </head> tags.
View Meta Refresh Sample.
Read how to choose free web hosting and paid web hosting.
How can I create the right redirect from an old website to the new one?
The best way to tell the search engines that your website moved, is with permanent redirect. The permanent redirect, which is referred to as 301 redirect, "sends" users and search engines from the old URL to the new one. The problem is that you cannot use any of 301 redirect methods with GooglePages.
You can accomplish the GooglePages redirect with Meta Refresh (method, that refreshes a web page after a given time interval). The disadvantage of Meta Refresh redirection is, that search engines will show the old website address in the search results. In addition, Meta Refresh is common spam technique. It is recommended to set the meta refresh to at least 5 seconds.
Meta Refresh Tag Sample
Redirect to www.mywebsiteadviser.com after 5 seconds:
<meta http-equiv="refresh" content="5;url=http://www.mywebsiteadivser">
Place the code between the <head> and </head> tags.
View Meta Refresh Sample.
Read how to choose free web hosting and paid web hosting.
Monday, September 3, 2007
How to Change Gallery Logo
You can change gallery logo very easy.
Copy file .../gallery2/themes/" your theme name "/templates/theme.tpl to the "local" folder and edit that file there. Gallery will look for that file in the "local" folder first and use it if it exists.
I changed logo only in matrix theme.
From:
<div id="gsHeader">
<img src="{g->url href="images/galleryLogo_sm.gif"}" width="107" height="48" alt=""/>
</div>
To:
<div id="gsHeader" align="center">
<img src="{g->url href="images/MyWebsiteAdviser.gif"}" width="750" height="70" alt="www.MyWebsiteAdviser.com Logo"/>
</div>
You can also set a logo image as a link, for example:
<a href="http://www.MyWebsiteAdviser.com"><img src="{g->url href="images/MyWebsiteAdviser.gif"}" width="750" height="70" alt="www.MyWebsiteAdviser.com Logo"/></a>
See my example: Gallery Example.
Repeat on other themes you want to change logo.
And ... don't forget to upload your logo image to the "images" folder (located in root folder of Gallery).
Alex Webs,
Create Online Gallery.
Copy file .../gallery2/themes/" your theme name "/templates/theme.tpl to the "local" folder and edit that file there. Gallery will look for that file in the "local" folder first and use it if it exists.
I changed logo only in matrix theme.
From:
<div id="gsHeader">
<img src="{g->url href="images/galleryLogo_sm.gif"}" width="107" height="48" alt=""/>
</div>
To:
<div id="gsHeader" align="center">
<img src="{g->url href="images/MyWebsiteAdviser.gif"}" width="750" height="70" alt="www.MyWebsiteAdviser.com Logo"/>
</div>
You can also set a logo image as a link, for example:
<a href="http://www.MyWebsiteAdviser.com"><img src="{g->url href="images/MyWebsiteAdviser.gif"}" width="750" height="70" alt="www.MyWebsiteAdviser.com Logo"/></a>
See my example: Gallery Example.
Repeat on other themes you want to change logo.
And ... don't forget to upload your logo image to the "images" folder (located in root folder of Gallery).
Alex Webs,
Create Online Gallery.
Thursday, August 9, 2007
CSS Property Min Height Doen't Work in Internet Explorer 6
The min-height property sets the minimum height of an element. But for some reason this property doesn't work in Internet Explorer 6.
Instead use this code:
p {
min-height: 10px;
}
Use this solution:
p {
min-height:10px;
height:auto !important;
height:10px;
}
I've checked this solution with Internet Explore 6, Internet Explorer 7 and Firefox, works fine.
Enjoy,
Learn Web Development
Instead use this code:
p {
min-height: 10px;
}
Use this solution:
p {
min-height:10px;
height:auto !important;
height:10px;
}
I've checked this solution with Internet Explore 6, Internet Explorer 7 and Firefox, works fine.
Enjoy,
Learn Web Development
Friday, June 1, 2007
Add cool DHTML menu to your website
Do you want to add or to upgrade navigation menu in your website ?
There is a site with many free useful examples of vertical menus, horizontal menus, multi-level menus etc.
Visit DynamicDrive website.
Enjoy,
Learn Web Development.
There is a site with many free useful examples of vertical menus, horizontal menus, multi-level menus etc.
Visit DynamicDrive website.
Enjoy,
Learn Web Development.
Tuesday, May 29, 2007
Free Web Editor
Araneae is a simple and powerful web development tool, providing only the features necessary to create websites and scripts using the latest web technologies. Araneae supports for HTML, XHTML, CSS, JavaScript, PHP, and more.
Download Araneae - Free Web Editor.
Enjoy,
Learn Web Development
Download Araneae - Free Web Editor.
Enjoy,
Learn Web Development
Sunday, May 13, 2007
Learn Web Development
Learning web development is not as hard as you think it might be.
If you're looking to learn web development, the following list of links will help you get started.
We collected and divided recommended sites to three categories: Web development for beginners, intermediate level and advanced level. Some sites may appear more than in one category.
Enjoy,
Learn Web Development
If you're looking to learn web development, the following list of links will help you get started.
We collected and divided recommended sites to three categories: Web development for beginners, intermediate level and advanced level. Some sites may appear more than in one category.
Enjoy,
Learn Web Development
Subscribe to:
Posts (Atom)