<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "All browsers in the statistic?"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "All browsers in the statistic?"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>All browsers in the statistic?</title>
				<description><![CDATA[ Hello!<br /> <br /> Is it possible to check for all browsers? If somebody uses firefox, the statistic shows this as Netscape, and not as firefox.<br /> <br /> I hope you understand waht I mean. <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13241.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13241.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 23:16:40]]> GMT</pubDate>
				<author><![CDATA[ Matze]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Pheonix/Firebird/Firefox did not exist when the script in question was written. I have never looked at this script but I'm sure I could combine it with a browser detect script I have to increase it's range.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13248.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13248.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 00:02:45]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi, <br /> <br /> Carbonize is correct that the browser was not around when the script was initially written - another factor is the fact that there are so many brands (and off brands) of browsers that you might end up bogging down the script before you ever caught them all. <br /> <br /> <a class="snap_shots" href="http://webtips.dan.info/brand-x/useragent.html" target="_blank" rel="nofollow">http://webtips.dan.info/brand-x/useragent.html</a> <br /> has some good information about user-agents If you are looking to get a general list, you can always add those specific browsers (and operating systems for that matter) into your list.  I modified mine to differentiate between the Windows NT and Windows XP operating system.  But if you are tracking browsers, you will need to just add them in to your list. <br /> <br /> Hoping that helps.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13257.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13257.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 02:15:05]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This will get you the firefox browsers in the list - put this in the $top_browsers portion of the script <br /> <br /> [code]elsif &#40;$agent =~ /Firefox\/&#40;\d&#41;/i&#41; &#123;<br /> 	$browser&#123;&quot;Firefox $1&quot;&#125;++;<br /> 	next;<br />                  &#125;<br /> [/code]<br /> <br /> It needs to be placed before the Mozilla group<br /> <br /> If there are other browsers you are wanting to add, here is a list of browser ids out there.... <br /> http://www.zytrax.com/tech/web/browser_ids.htm<br /> <br /> Hoping that helps]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13258.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13258.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 02:51:39]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thank you!<br /> <br /> @ET: This is the code, I wanted to have.<br /> <br /> But there's a problem, now, in the statistics, netscape ich not there, but there are "forefox 0" and "forefox 1"<br /> <br /> [code]	...<br /> <br /> else &#123;<br /> 		$browser&#123;$agent&#125;++;<br /> 		next;<br /> 	&#125;<br />     &#125;<br />     elsif &#40;$agent =~ /Firefox\/&#40;\d&#41;/i&#41; &#123;<br />     	$browser&#123;&quot;Firefox $1&quot;&#125;++;<br />    	next;<br />     &#125;<br />     elsif &#40;$agent =~ /Mozilla/i&#41; &#123;<br /> 	if &#40;$agent =~ /Mozilla\/5/i || $agent =~ /Mozilla 5/i&#41; &#123;<br /> 		$browser&#123;'Netscape Navigator 6'&#125;++;<br /> 		next;<br /> 	&#125;<br /> <br /> ...[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13273.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13273.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 11:42:15]]> GMT</pubDate>
				<author><![CDATA[ Matze]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Impatient. If you wait a while I can improve th ebrowser detect the the best I can using the user agent string provided by the browser but as I said I am tied up. I will see if I can throw it together.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13281.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13281.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 14:25:48]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ That's nice, thank you.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13283.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13283.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 17:04:20]]> GMT</pubDate>
				<author><![CDATA[ Matze]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Matze, <br /> <br /> The format that the script was originally written needs to be followed if you want to modify (tweek) just a little. Or wait for for Carbonize's generousity.  <br /> <br /> If you want to do it yourself, remember to think in terms of what is the order of appearance, for the pattern seeking process. <br /> <br /> Hoping that helps.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4131/13291.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4131/13291.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 20:31:20]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
	</channel>
</rss>