Welcome to Fogfighters Hungary!
 
  Login or Register
.week  
Time
 
 
 
Languages
Select Interface Language:

 
Google Translation
Translation
 
Traffic Report
 
Where are you from?
 
Map Random
Objective
Hindenburg
View Hindenburg
The Axis HQ constructed a new decoder in the summer of 1944. It was tested in the base of Hindenburg II. blimp.* * The allied forces dropped in the nearby village with the command: 'Steal the decoder and escape with the
Hits: 4
Total Maps: 85
 
Modules
· Home
· About Easter
· Büntetés kalkulátor
· Bible
· Biorythm
· Birds
· Black Gallery
· Cats
· Coppermine
· Dogs
· eCards
· ET Game manual
· ET Handbuch
· ET játékleírás
· ET Maps
· Fórumok
· FIFA World Cup 2006
· Fish
· Google Guide
· Googlemaps
· Hírküldés
· Help Desk
· Internet_TV
· Keresés
· Letöltések
· Members List
· Member_Map
· News
· Online Radios
· PHP-Nuke_HOWTO
· PHP-Nuke_Tools
· Private Messages
· Punkbuster
· Saját beállításaid
· Shout Box
· Statisztikák
· Szavazások
· Szerencsejáték
· Tagfelvétel
· Viccek
· Videó kollekció
· Web címek
· Web Development
 
MS-Analysis
Top-Ten Countries visiting Fogfighters Hungary

1 United States United States
2 China China
3 Viet nam Viet nam
4 Russian Federation Russian Federation
5 France France
6 Hungary Hungary
7 unknown unknown
8 Ukraine Ukraine
9 Canada Canada
10 United Kingdom United Kingdom
11 Germany Germany
12 Netherlands Netherlands
13 Poland Poland
14 Italy Italy
15 Taiwan, Province of China Taiwan, Province of China
16 Seychelles Seychelles
17 Australia Australia
18 Romania Romania
19 Indonesia Indonesia
20 India India
21 Thailand Thailand
22 Sweden Sweden
23 Brazil Brazil
24 Japan Japan
25 South Africa South Africa
26 Lithuania Lithuania
27 Argentina Argentina
28 Spain Spain
29 Iran, Islamic Republic of Iran, Islamic Republic of
30 Chile Chile
31 Luxembourg Luxembourg
32 Turkey Turkey
33 Moldova, Republic of Moldova, Republic of
34 Korea, Republic of Korea, Republic of
35 Belarus Belarus
36 Malaysia Malaysia
37 Venezuela Venezuela
38 Switzerland Switzerland
39 Singapore Singapore
40 Colombia Colombia
41 Hong Kong Hong Kong
42 Mexico Mexico
43 Mongolia Mongolia
44 Czech Republic Czech Republic
45 Belize Belize
46 Greece Greece
47 Honduras Honduras
48 Estonia Estonia
49 Latvia Latvia
50 Bulgaria Bulgaria

View MS-Analysis
 
Scrolling Links
Mods:































Community:




































Clans:






























































League:










Anticheat:












Other:

































 
Special days




July


 
Képes Naptár
There is a problem right now with this block.
 
CPG Random Picture

Szintén szerepelt már a b1 - es verzióban ez az ajtó

 
Latest Videos


Last added videos

Orvosnál

Orvosnál

Last added videos

Funny

Funny Mortar

Last added videos

Shy

Shy Rose - I Cry For You
 
Google Sitemaps
Home UP

Google Sitemaps

From Wikipedia the free encyclopedia, by MultiMedia


Google Sitemaps is a service offered by Google to help its crawlers better index webpages.

Google Sitemaps page

About

The Google Sitemap Protocol allows you to inform search engines about URLs on your website that are available for crawling. A Sitemap is an XML file that lists the URLs for a site using the Google Sitemap Protocol. The protocol was written to be highly scalable so it can accommodate sites of any size. It also enables webmasters to include additional information about each URL. when it was last updated; how often it changes; how important it is in relation to other URLs in the site etc. so that search engines can crawl the site more intelligently.

Sitemaps are particularly beneficial in situations when it is difficult for users to access all areas of a website through the browseable interface. For example, any site where certain pages are only accessible via a search form would benefit from creating a Sitemap and submitting it to search engines.

Note that the Sitemap Protocol is only a supplement and does not in any way replace, the existing crawl-based mechanisms that search engines already use to discover URLs. By submitting a Sitemap (or Sitemaps) to a search engine, you are only helping that engine's crawlers to do a better job of crawling your site.

Using this protocol does not guarantee that your webpages will be included in search indexes nor does it influence the way your pages are ranked by a search engine.

If you submit an XML sitemap via Google account, Google provides current crawler problem reports after a painless verification procedure to ensure only the site owner gets access to the stats area. For WAP sites Google uses a different procedure, and the URLs contained in the XML sitemap must be renderable on a mobile device.

XML Sitemap Format

The Sitemap Protocol format consists of XML tags. The file itself must be UTF-8 encoded.

Sample

A sample Sitemap that contains just one URL and uses all optional tags is shown below.

<urlset
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84
http://www.google.com/schemas/sitemap/0.84/sitemap.xsd">
<url>
<loc>http://www.yoursite.com/</loc>
<lastmod>2005-01-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>

As with all XML files, any data values (including URLs) must use entity escape codes for the characters : ampersand(&), single quote ('), double quote ("), less than (>) and greater than (<).

You can compress your Sitemap files using gzip. Compressing your Sitemap files will reduce your bandwidth requirement. Please note Google requires that your uncompressed Sitemap file is not larger than 10MB. Search engines will not process Sitemaps larger than 10MB.

You can also provide multiple Sitemap files, but each file that you provide must have no more than 50,000 URLs and must be no larger than 10MB (10,485,760 bytes) when uncompressed. These limits help to ensure that your web server does not get bogged down serving very large files.

If you want to list more than 50,000 URLs, you must create multiple Sitemap files. If you anticipate your Sitemap growing beyond 50,000 URLs or 10MB, you can create multiple Sitemap files and list them in a Sitemap index file. Sitemap index files should not list more than 1,000 Sitemaps and should be named as sitemap_index.xml.

It is strongly recommended that you place your Sitemap at the root directory of your Web server (http://yoursite.com/sitemap.gz). After you produce your Sitemap, you will need to notify search engines of the Sitemap's location. The search engines that you notify will they retrieve your Sitemap and make the URLs available to their crawlers.

Tools

Official Google Sitemaps Generator

Google is providing a script to generate the XML file based on the Sitemap Protocol, it will look at your server logs, web directory, or a list of URLs. The script is written in Python, and hosted on Sourceforge. (Sitemap Python Script) The script can be scheduled to run, via cron or Windows Task Scheduler. During the script's execution it will notify Google that the sitemap has changed and to schedule a download of that sitemap.

XML Configuration File

When the script is run it requires at least the configuration file.

$ python sitemap_gen.py --config=<path/config.xml>

In the zip file or gzip download there will be an example_config.xml file which has LOTS of documentation included in it.

Validation Tools

There are a number of tools available to help you validate the structure of your Sitemap based on this schema. You can find a list of XML related tools at each of the following locations:

http://www.w3.org/XML/Schema#Tools

http://www.xml.com/pub/a/2000/12/13/schematools.html

http://www.smart-it-consulting.com/internet/google/submit-validate-sitemap/

Third Party Generation Tools

There are a number of 3rd party tools available to generate, edit, view, submit and validate XML sitemaps. You can find a list of Google Sitemaps related tools at each of the following locations:

http://code.google.com/sm_thirdparty.html

http://www.sitemaptools.com/

http://www.smart-it-consulting.com/article.htm?node=133&page=41

XSLT Stylesheet

Normally the xml files are not human friendly. To improve the readability by humans you can add a xslt script to transform it to html. More information can be found at http://enarion.net/google/sitemaps/stylesheet/

External links


Google Guide made by MultiMedia | Free content and software

This guide is licensed under the GNU Free Documentation License. It uses material from the Wikipedia.

PREVIOUS NEXT
Send all questions and comments to:
Webmaster
All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest Fogfighters Hungary © 2007 - 2022

You can syndicate our news using the file backend.php or ultramode.txt

PHP-Nuke Copyright © 2005 by Francisco Burzi. This is free software, and you may redistribute it under the GPL. PHP-Nuke comes with absolutely no warranty, for details, see the license.
Page Generation: 0.24 Seconds

:: subBlack phpbb2 style by spectre :: PHP-Nuke theme by www.nukemods.com ::