<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Access Stats 1.12 Problem"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Access Stats 1.12 Problem"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Access Stats 1.12 Problem</title>
				<description><![CDATA[ Hello all together!<br /> <br /> This script doesn't work, but I don't know why.<br /> <br /> My files are in <br /> <br /> /logstat/gif<br /> /logstat/logfiles<br /> /logstat/log.gif<br /> ...<br /> <br /> log.pl, stat.pl and ip.log are in<br /> <br /> /cgi-bin/logstat/<br /> <br /> My log.pl:<br /> <br /> [code]# url to the image file<br /> $output = &quot;/logstat/log.gif&quot;;<br /> <br /> # path to the log files from the server root without trailing &quot;/&quot; &#40;chmoded to 777 &#40;drwxrwxrwx&#41;&#41;<br /> $base_dir = &quot;/logstat/logfiles&quot;;<br /> <br /> # server time offset - add one hour = +1 ; subtract one hour = -1<br /> $offset = 0;<br /> <br /> # Ignored IPs - Comment it out if you don't use it e.g. #@skip=&#40;'127.0.0.1'&#41;;<br /> @skip=&#40;'127.0.0.1','196.109.183.9'&#41;;<br /> <br /> # log file extension<br /> $log_file_ext = &quot;txt&quot;;<br /> <br /> # IP log file - 666 &#40;-rw-rw-rw-&#41;<br /> $ip_file = &quot;/ip.log&quot;;<br /> <br /> # time &#40;in min&#41; to keep visitor IP in table &#40;ip blocking&#41;<br /> $ip_time = 15;<br /> <br /> # Done<br /> ###########[/code]<br /> <br /> Ma stat.pl:<br /> <br /> [code]# url to script<br /> $cgiurl = &quot;http&#58;//www.web82.server-drome.net/cgi-bin/logstat/stat.pl&quot;;<br /> <br /> # url to the image files without trailing &quot;/&quot;<br /> $gif_url = &quot;/logstat/gif&quot;;<br /> <br /> # path to the log files from the server root without trailing &quot;/&quot; &#40;chmoded to 777 &#40;drwxrwxrwx&#41;&#41;<br /> $base_dir = &quot;/srv/www/htdocs/web82/html/logstat/logfiles&quot;;<br /> <br /> # url to the log files without trailing &quot;/&quot;<br /> $log_url = &quot;/logstat/logfiles&quot;;<br /> <br /> # minimum visits before to show in list<br /> $host_min = 1;<br /> $browser_min = 1;<br /> $os_min = 1;<br /> $referer_min = 1;<br /> <br /> # show visits from all countries<br /> $show_ccodes = &quot;yes&quot;;<br /> $show_max = 15; # only valid if $show_ccodes=&quot;no&quot;<br /> <br /> # log file extension<br /> $log_file_ext = &quot;txt&quot;;<br /> <br /> # misc configurations<br /> $font_size = &quot;8pt&quot;; # font size<br /> $table_width = 700; # table width<br /> $max_bar_length = 300; # bar lenght of host,os,browser,etc. in relation to $table_width<br /> $max_bar_day_length = 170; # bar lenght of day should be set in relation to $table_width<br /> $hits_by_weekday = &quot;yes&quot;;<br /> $top_countries =   &quot;yes&quot;;<br /> $top_browsers =    &quot;yes&quot;;<br /> $top_os =          &quot;yes&quot;;<br /> $top_host =        &quot;yes&quot;;<br /> # Done<br /> ###########[/code]<br /> <br /> There are no error messages, but it doesn't log anything.<br /> <br /> The code in my html-file:<br /> <br /> [code]   &lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot;&gt;<br />    &lt;!--<br />    document.write&#40;&quot;&lt;img src=\&quot;/cgi-bin/logstat/log.pl?ref=&quot;+top.document.referrer+&quot;\&quot; width=0 height=0 border=0 alt=0&gt;&quot;&#41;;<br />    //--&gt;<br />    &lt;/script&gt;<br />    &lt;noscript&gt;<br />    &lt;img src=&quot;/cgi-bin/logstat/log.pl?ref=noscript&quot; width=0 height=0 border=0 alt=0&gt;<br />    &lt;/noscript&gt;[/code]<br /> <br /> May I delete these lines:<br /> <br /> [code]&lt;noscript&gt;<br />    &lt;img src=&quot;/cgi-bin/logstat/log.pl?ref=noscript&quot; width=0 height=0 border=0 alt=0&gt;<br />    &lt;/noscript&gt;[/code]<br /> <br /> So, it's not HTML 4.01 transistonal.<br /> <br /> <br /> Where is my mistake? I want use relavive paths, if it's possible.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13230.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13230.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 18:24:51]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Okay, first thing I see wrong is that the base_dir in both Log.pl and Stat.pl are not the same.  Both of them need to be the full path. <br /> /srv/www/htdocs/web82/html/logstat/logfiles<br /> <br /> The other thing may be that you are trying to use relative paths - some times that works, some times it doesn't.  At lot depends on how the cgi-bin has been set up on the server or by the webhost. <br /> <br /> On the last javascript portion, you may take out the noscript portion, however it will not count people who do not have their javascript turned on when they arrive at your pages. The noscript portion forces, at the very least, a visit to be counted in the log as a "noscript" on your print out. <br /> <br /> These are the things that stood out - not guaranteeing it will solve the problems.<br /> <br /> Hoping that helps]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13233.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13233.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 21:47:44]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Make sure you use the complete url in the url variables. [code]# url to the image file <br /> $output = &quot;http&#58;//www.web82.server-drome.net/logstat/log.gif&quot;;[/code]and not[code]# url to the image file <br /> $output = &quot;/logstat/log.gif&quot;;[/code]and so forth for the rest of the url stuff.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13234.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13234.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 21:52:55]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Great! Thank you very much, it works @ET! <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" /><br /> <br /> @Carbonize: Thank you for your answer, too, but it works now (with relative paths).]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13238.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13238.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 22:59:37]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ One more thing. This script sais that I'm using the Internet Explorer, but I'm using firefox.  <img src="https://proxy2.de/forum//images/smilies/136dd33cba83140c7ce38db096d05aed.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13239.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13239.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 23:01:15]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Sorry, as I watched the statistics, another user was on my page an this user has git the IE. <img src="https://proxy2.de/forum//images/smilies/2786c5c8e1a8be796fb2f726cca5a0fe.gif" /><br /> <br /> Thank you.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13240.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13240.php</link>
				<pubDate><![CDATA[Thu, 20 Jan 2005 23:03:09]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I wouldn't read to much into the browsers it says visitors use. Opera identifies it's self as Internet Explorer by default and it is easy to alter the user agent sent by Mozilla based web browsers/]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13247.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13247.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 00:01:12]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Does this mean, it's impossible to get the real browser names?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13269.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13269.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 07:18:11]]> GMT</pubDate>
				<author><![CDATA[ Matze]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Not impossible - just takes work to write the script. See my other response to your other thread you started.<br /> <br /> <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?t=4131" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?t=4131</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13270.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13270.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 07:40:22]]> GMT</pubDate>
				<author><![CDATA[ ET]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Impossible, no. But unless you are going to start checking for DOM models using javascript then no you cannot.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4129/13280.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4129/13280.php</link>
				<pubDate><![CDATA[Fri, 21 Jan 2005 14:23:59]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
	</channel>
</rss>