Select Interface Language:
--Select-- Albanian Arabic Bulgarian Catalan Chinese(Simp) Chinese(Trad) Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Indonesian Italian Japanese Korean Latvian Lithuanian Maltese Norwegian Persian ALPHA Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swedish Thai Turkish Ukrainian Vietnamese
Recent Hits:
• Today:
81
• Yesterday:
1,203
• Trend:
Yearly Hits:
• 2009:
5,463 • 2010:
70,070 • 2011:
122,282 • 2012:
139,559 • 2013:
279,738 • 2014:
211,936 • 2015:
195,374 • 2016:
153,554 • 2017:
110,448 • 2018:
53,122 • 2019:
28,252 • 2020:
70,563 • 2021:
152,497 • 2022:
555,112 • 2023:
224,993 • 2024:
193,226 • 2025:
178,447 • Total:
2,744,960
Average Hits:
• Hourly: 58
• Daily:
1,399
• Monthly:
42,540
• Yearly:
510,479
Objective
am_hydro_dam
Axis and Allied forces have set up operations on either side of a dam, each must collect and return an objective to their bases. Access to the objective is by means of a successful dynamite charge at enemy door. Control of ba
Hits: 3
Total Maps: 85
Top-Ten Countries visiting Fogfighters Hungary 1 United States 2 China 3 Viet nam 4 Russian Federation 5 France 6 Hungary 7 unknown 8 Ukraine 9 Canada 10 United Kingdom 11 Germany 12 Netherlands 13 Poland 14 Italy 15 Taiwan, Province of China 16 Seychelles 17 Australia 18 Romania 19 Indonesia 20 India 21 Thailand 22 Sweden 23 Brazil 24 Japan 25 South Africa 26 Lithuania 27 Argentina 28 Spain 29 Iran, Islamic Republic of 30 Chile 31 Luxembourg 32 Turkey 33 Moldova, Republic of 34 Korea, Republic of 35 Belarus 36 Malaysia 37 Venezuela 38 Switzerland 39 Singapore 40 Colombia 41 Hong Kong 42 Mexico 43 Mongolia 44 Czech Republic 45 Belize 46 Greece 47 Honduras 48 Estonia 49 Latvia 50 Bulgaria View MS-Analysis
Mods: Community: Clans: League: Anticheat: Other:
World Sport Journalist Day
There is a problem right now with this block.
(FD)|Dani:] (2)
How to change the logo in the PHP-Nuke header
One of the first things you will want to change once your PHP-Nuke is up and running, is the site's logo. For this, you only have to replace the logo.gif file that
came with the theme you are using. Search for themes/YourTheme/logo.gif. Whatever graphic you put in logo.gif, it will show as the site's logo in the PHP-Nuke
header.
If you want to change the way the logo is displayed, perhaps by setting a width and height attribute, or specifying a border, you will have to change the HTML code that displays it in the theme.
To do this in a dynamic way, see Section 14.3.5 . Here are the relevant code lines for each one of the standard PHP-Nuke themes:
./themes/3D-Fantasy/header.html:<a href="index.php"><img src="themes/3D-Fantasy/images/logo.gif" border="0"
alt="Welcome to $sitename" align="left"></a>
./themes/ExtraLite/theme.php: ."<a href=\"index.php\"><img src=\"themes/ExtraLite/images/logo.gif\"
alt=\"Welcome to $sitename\" title=\"Welcome to $sitename\" border=\"0\"></a>"
./themes/Kaput/theme.php: ."<a href=\"index.php\"><img src=\"themes/Kaput/images/logo.gif\" border=\"0\"
alt=\""._WELCOMETO." $sitename\" align=\"left\"></a></td>"
./themes/NukeNews/header.html:<a href="index.php">
<img src="themes/NukeNews/images/logo.gif" align="left"
alt=""._WELCOMETO." $sitename" border="0" hspace="10"></a></td>
./themes/Odyssey/header.html:<a href="index.php">
<img src="themes/Odyssey/images/logo.gif"
alt=""._WELCOMETO." $sitename" border="0"></a>
./themes/Slash/theme.php:<a href=$nukeurl>
<img src=themes/Slash/images/logo.gif border=0></a>
./themes/SlashOcean/theme.php:<a href=$nukeurl>
<img src=themes/SlashOcean/images/logo.gif
Alt=\"Welcome to $sitename\" border=0></a>
./themes/Traditional/theme.php: ."<a href=\"index.php\">
<img src=\"themes/Traditional/images/logo.gif\"
alt=\""._WELCOMETO." $sitename\" border=\"0\"></a>"
./themes/Anagram/theme.php: ."<a href=\"index.php\">
<img src=\"themes/Anagram/images/logo.gif\" align=\"left\"
alt=\""._WELCOMETO." $sitename\" border=\"0\"></a></td>\n"
./themes/Karate/theme.php: ."<a href=\"index.php\">
<img src=\"themes/Karate/images/logo.gif\" align=\"left\"
alt=\""._WELCOMETO." $sitename\" border=\"0\"></a></td>\n"
./themes/Milo/theme.php: ."<a href=\"index.php\">
<img src=\"themes/Milo/images/logo.gif\" align=\"left\"
alt=\""._WELCOMETO." $sitename\" border=\"0\"></a></td>\n"
./themes/Sunset/theme.php:echo "<a href=$nuke_url>
<img src=themes/Sunset/images/logo.gif
Alt=\""._WELCOMETO." $sitename\" border=0></a>\n";
./themes/DeepBlue/theme.php: ."<table border=0 width=100% cellpadding=0
cellspacing=0><tr><td align=\"left\"><a href=\"index.php\">
<img border=\"0\" src=\"themes/DeepBlue/images/logo.gif\"
alt=\"Welcome to OpenMax!\" hspace=\"20\"></a></td><td align=\"right\">
<img border=\"0\" src=\"themes/DeepBlue/images/logo-graphic.gif\"
width=\"\"></td></tr></table></td></tr>\n"
This is also the place to put your change, if you want a second graphic besides your logo, or some other logo customization.