<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[PunBB Forums — Admin logs (pun_admin_log)]]></title>
		<link>https://punbb.informer.com/forums/topic/21902/admin-logs-punadminlog/</link>
		<atom:link href="https://punbb.informer.com/forums/feed/rss/topic/21902/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Admin logs (pun_admin_log).]]></description>
		<lastBuildDate>Mon, 15 Oct 2012 18:45:57 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Admin logs (pun_admin_log)]]></title>
			<link>https://punbb.informer.com/forums/post/146743/#p146743</link>
			<description><![CDATA[<p>Please, update into latest version.</p>]]></description>
			<author><![CDATA[null@example.com (Trace)]]></author>
			<pubDate>Mon, 15 Oct 2012 18:45:57 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/146743/#p146743</guid>
		</item>
		<item>
			<title><![CDATA[Re: Admin logs (pun_admin_log)]]></title>
			<link>https://punbb.informer.com/forums/post/145060/#p145060</link>
			<description><![CDATA[<p>Well based on the above post - I&#039;m assuming the stop spam function needs tweaking a bit.&nbsp; <img src="https://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (Intelifuel)]]></author>
			<pubDate>Sat, 26 May 2012 22:01:32 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/145060/#p145060</guid>
		</item>
		<item>
			<title><![CDATA[Re: Admin logs (pun_admin_log)]]></title>
			<link>https://punbb.informer.com/forums/post/144350/#p144350</link>
			<description><![CDATA[<div class="quotebox"><cite>Slavok wrote:</cite><blockquote><p>The pun_admin_log extension has been released! It logs a lot of forum&#039;s events. You can find more information about pun_admin_log on the extension&#039;s <a href="http://punbb.informer.com/wiki/punbb13/extensions/pun_admin_log">Wiki page</a>.<br />Download links:<br /></p><ul><li><p>pun_admin_log.7z</p></li><li><p>pun_admin_log.tgz</p></li><li><p>pun_admin_log.zip</p></li><li><p>SVN link.</p></li></ul><p>You can get it with the help of the pun_repository extension. Feel free to suggest your ideas about the extension&#039;s improvement.</p><p><strong>This extension depends on the pun_admin_events extension.</strong> So this extension should be installed for correct working of the pun_admin_log.</p></blockquote></div><p>is there an updated version of this extension which is compatible to the punbb 1.4.2 version?&nbsp; i tried to reinstall the version 1.0 but it says it is not compatible with the current version of PunBB (1.4.2)</p>]]></description>
			<author><![CDATA[null@example.com (rvmanz)]]></author>
			<pubDate>Tue, 13 Mar 2012 02:48:24 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/144350/#p144350</guid>
		</item>
		<item>
			<title><![CDATA[Re: Admin logs (pun_admin_log)]]></title>
			<link>https://punbb.informer.com/forums/post/138661/#p138661</link>
			<description><![CDATA[<p>How about logging changes to censored words list?</p>]]></description>
			<author><![CDATA[null@example.com (8k84)]]></author>
			<pubDate>Tue, 23 Nov 2010 23:37:30 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/138661/#p138661</guid>
		</item>
		<item>
			<title><![CDATA[Re: Admin logs (pun_admin_log)]]></title>
			<link>https://punbb.informer.com/forums/post/134212/#p134212</link>
			<description><![CDATA[<p>Hi,</p><p>pun_admin_log won&#039;t install while punBB is running with PostgreSQL because the double quotes aren&#039;t considered like string but like columns.</p><p>The patch :<br /></p><div class="codebox"><pre><code>Index: manifest.xml
===================================================================
--- manifest.xml    (révision 1596)
+++ manifest.xml    (copie de travail)
@@ -41,21 +41,21 @@
         $query_log = array(
             &#039;INSERT&#039;    =&gt; &#039;conf_name, conf_value&#039;,
             &#039;INTO&#039;        =&gt; &#039;config&#039;,
-            &#039;VALUES&#039;    =&gt; &#039;&quot;o_pun_admin_path_log_file&quot;, &quot;&#039;.$forum_db-&gt;escape(realpath(FORUM_ROOT.&#039;/extensions/&#039;.$id.&#039;/forum.log&#039;)).&#039;&quot;&#039;,
+            &#039;VALUES&#039;    =&gt; &#039;\&#039;o_pun_admin_path_log_file\&#039;, \&#039;&#039;.$forum_db-&gt;escape(realpath(FORUM_ROOT.&#039;/extensions/&#039;.$id.&#039;/forum.log&#039;)).&#039;\&#039;&#039;,
         );
         $forum_db-&gt;query_build($query_log) or error(__FILE__, __LINE__);
 
         $query_log = array(
             &#039;INSERT&#039;    =&gt; &#039;conf_name, conf_value&#039;,
             &#039;INTO&#039;        =&gt; &#039;config&#039;,
-            &#039;VALUES&#039;    =&gt; &#039;&quot;o_pun_admin_log_write_file&quot;, &quot;1&quot;&#039;
+            &#039;VALUES&#039;    =&gt; &#039;\&#039;o_pun_admin_log_write_file\&#039;, \&#039;1\&#039;&#039;
         );
         $forum_db-&gt;query_build($query_log) or error(__FILE__, __LINE__);
 
         $query_log = array(
             &#039;INSERT&#039;    =&gt; &#039;conf_name, conf_value&#039;,
             &#039;INTO&#039;        =&gt; &#039;config&#039;,
-            &#039;VALUES&#039;    =&gt; &#039;&quot;o_pun_admin_log_write_db&quot;, &quot;1&quot;&#039;
+            &#039;VALUES&#039;    =&gt; &#039;\&#039;o_pun_admin_log_write_db\&#039;, \&#039;1\&#039;&#039;
         );
         $forum_db-&gt;query_build($query_log) or error(__FILE__, __LINE__);
 
@@ -355,4 +355,4 @@
 }
         ]]&gt;&lt;/hook&gt;
     &lt;/hooks&gt;
-&lt;/extension&gt;
\ No newline at end of file
+&lt;/extension&gt;</code></pre></div><p>Charly.</p>]]></description>
			<author><![CDATA[null@example.com (charlyx)]]></author>
			<pubDate>Sun, 07 Mar 2010 17:18:49 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/134212/#p134212</guid>
		</item>
		<item>
			<title><![CDATA[Re: Admin logs (pun_admin_log)]]></title>
			<link>https://punbb.informer.com/forums/post/129120/#p129120</link>
			<description><![CDATA[<p>Wanted to try the pun_admin_log extension and installed first the pun_admin_events. After that i go to the admin panel and there under events i got this error:<br />Parse error: syntax error, unexpected T_RETURN in /www/htdocs/w00a012d/forums/extensions/pun_admin_events/functions.php on line 178</p><p>Was a fresh installation, never installed before.</p><p>Thanks for help.</p>]]></description>
			<author><![CDATA[null@example.com (demo-world)]]></author>
			<pubDate>Fri, 17 Jul 2009 20:22:56 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/129120/#p129120</guid>
		</item>
		<item>
			<title><![CDATA[Admin logs (pun_admin_log)]]></title>
			<link>https://punbb.informer.com/forums/post/129111/#p129111</link>
			<description><![CDATA[<p>The pun_admin_log extension has been released! It logs a lot of forum&#039;s events. You can find more information about pun_admin_log on the extension&#039;s <a href="http://punbb.informer.com/wiki/punbb13/extensions/pun_admin_log">Wiki page</a>.<br />Download links:<br /></p><ul><li><p><a href="http://punbb.informer.com/extensions/pun_admin_log/pun_admin_log.7z">pun_admin_log.7z</a></p></li><li><p><a href="http://punbb.informer.com/extensions/pun_admin_log/pun_admin_log.tgz">pun_admin_log.tgz</a></p></li><li><p><a href="http://punbb.informer.com/extensions/pun_admin_log/pun_admin_log.zip">pun_admin_log.zip</a></p></li><li><p><a href="http://punbb.informer.com/svn/additions/punbb-1.3/extensions/pun_admin_log/">SVN link</a>.</p></li></ul><p>You can get it with the help of the pun_repository extension. Feel free to suggest your ideas about the extension&#039;s improvement.</p><p><strong>This extension depends on the <a href="http://punbb.informer.com/wiki/punbb13/extensions/pun_admin_events">pun_admin_events</a> extension.</strong> So this extension should be installed for correct working of the pun_admin_log.</p>]]></description>
			<author><![CDATA[null@example.com (Slavok)]]></author>
			<pubDate>Fri, 17 Jul 2009 14:46:23 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/129111/#p129111</guid>
		</item>
	</channel>
</rss>
