<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[MyBB Community Forums - MyBB 1.4.2]]></title>
		<link>https://community.mybb.com/</link>
		<description><![CDATA[MyBB Community Forums - https://community.mybb.com]]></description>
		<pubDate>Tue, 09 Jun 2026 06:39:50 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[[F] Forum Management - Setting permisions (when all perms are 0)]]></title>
			<link>https://community.mybb.com/thread-41002.html</link>
			<pubDate>Wed, 26 Nov 2008 15:38:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=8582">Diogo Parrinha</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-41002.html</guid>
			<description><![CDATA[When all permissions are unchecked: (in ADMINDIR/index.php?module=forum/management&amp;fid=FID#tab_permissions)<br />
foreach(&#36;mybb-&gt;input['permissions'] as &#36;gid =&gt; &#36;permission)<br />
<br />
will not work:<br />
Warning [2] Invalid argument supplied for foreach() - Line: 1662 - File: admin/modules/forum/management.php PHP 4.3.11 (Linux)<br />
<br />
File: /admin/modules/forum/management.php  Line: 1662 	Function: unknown<br />
<br />
it might be only me but I can't seem to fix it :/]]></description>
			<content:encoded><![CDATA[When all permissions are unchecked: (in ADMINDIR/index.php?module=forum/management&amp;fid=FID#tab_permissions)<br />
foreach(&#36;mybb-&gt;input['permissions'] as &#36;gid =&gt; &#36;permission)<br />
<br />
will not work:<br />
Warning [2] Invalid argument supplied for foreach() - Line: 1662 - File: admin/modules/forum/management.php PHP 4.3.11 (Linux)<br />
<br />
File: /admin/modules/forum/management.php  Line: 1662 	Function: unknown<br />
<br />
it might be only me but I can't seem to fix it :/]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] Mass Mail send also to users who disabled to receive mails from Admins]]></title>
			<link>https://community.mybb.com/thread-40973.html</link>
			<pubDate>Tue, 25 Nov 2008 21:16:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=13074">cHarOn</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40973.html</guid>
			<description><![CDATA[Hello,<br />
<br />
i have an Problem, i made an mass mail on my forum (10000 Users) and get now many reports that users who disable "Receive emails from the Administrators." in the UserCP are still receiving the mail?<br />
i use mybb 1.4.3, any idea what is wrong?? or is it an bug in mybb.<br />
<br />
regards<br />
cHarOn]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
i have an Problem, i made an mass mail on my forum (10000 Users) and get now many reports that users who disable "Receive emails from the Administrators." in the UserCP are still receiving the mail?<br />
i use mybb 1.4.3, any idea what is wrong?? or is it an bug in mybb.<br />
<br />
regards<br />
cHarOn]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] [PostgreSQL] Usergoup group by]]></title>
			<link>https://community.mybb.com/thread-40922.html</link>
			<pubDate>Mon, 24 Nov 2008 17:45:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=15683">Gibheer</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40922.html</guid>
			<description><![CDATA[There is a bug in the usercp.php line 2527 at the select of the usergroups.<br />
<pre class="block-code line-numbers language-none"><code class="language-none">MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    42803 - ERROR: column &quot;g.title&quot; must appear in the GROUP BY clause or be used in an aggregate function 
Query:
    SELECT g.title, g.gid, g.type, COUNT(u.uid) AS users, COUNT(j.rid) AS joinrequests, l.canmanagerequests, l.canmanagemembers FROM zero_groupleaders l LEFT JOIN zero_usergroups g ON(g.gid=l.gid) LEFT JOIN zero_users u ON(((','|| u.additionalgroups|| ',' LIKE '%,'|| g.gid|| ',%') OR u.usergroup = g.gid)) LEFT JOIN zero_joinrequests j ON(j.gid=g.gid) WHERE l.uid='1' GROUP BY g.gid</code></pre><br />
You have to give all columns which are listed in the select-statement.<br />
I changed the group by into the following and it works, as far as I can see.<br />
<pre class="block-code line-numbers language-none"><code class="language-none">GROUP BY g.gid, g.title, g.type, l.canmanagerequests, l.canmanagemembers</code></pre>]]></description>
			<content:encoded><![CDATA[There is a bug in the usercp.php line 2527 at the select of the usergroups.<br />
<pre class="block-code line-numbers language-none"><code class="language-none">MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    42803 - ERROR: column &quot;g.title&quot; must appear in the GROUP BY clause or be used in an aggregate function 
Query:
    SELECT g.title, g.gid, g.type, COUNT(u.uid) AS users, COUNT(j.rid) AS joinrequests, l.canmanagerequests, l.canmanagemembers FROM zero_groupleaders l LEFT JOIN zero_usergroups g ON(g.gid=l.gid) LEFT JOIN zero_users u ON(((','|| u.additionalgroups|| ',' LIKE '%,'|| g.gid|| ',%') OR u.usergroup = g.gid)) LEFT JOIN zero_joinrequests j ON(j.gid=g.gid) WHERE l.uid='1' GROUP BY g.gid</code></pre><br />
You have to give all columns which are listed in the select-statement.<br />
I changed the group by into the following and it works, as far as I can see.<br />
<pre class="block-code line-numbers language-none"><code class="language-none">GROUP BY g.gid, g.title, g.type, l.canmanagerequests, l.canmanagemembers</code></pre>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] Reported posts sent as private messages]]></title>
			<link>https://community.mybb.com/thread-40774.html</link>
			<pubDate>Fri, 21 Nov 2008 05:10:00 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=3971">Ryan Loos</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40774.html</guid>
			<description><![CDATA[If you have email notifications for when you receive private messages turned on the email comes out like this:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>rh1n0,<br />
<br />
You have received a new private message on &lt;forum name&gt; from . To view this message, you can follow this link:<br />
<br />
<a href="http://www" target="_blank" rel="noopener" class="mycode_url">http://www</a>.&lt;forum url&gt;.com/private.php<br />
<br />
Please note that you will not receive any further notifications of new messages until you visit &lt;forum name&gt;.<br />
<br />
You can disable new message notifications on your account options page:<br />
<br />
<a href="http://www" target="_blank" rel="noopener" class="mycode_url">http://www</a>.&lt;forum url&gt;.com/usercp.php?action=options<br />
<br />
Thank you,<br />
&lt;forum name&gt; Staff<br />
<a href="http://www" target="_blank" rel="noopener" class="mycode_url">http://www</a>.&lt;forum url&gt;.com</blockquote>
You'll notice where it says "You have received a new private message on &lt;forum name&gt; from" it does not say who it is from.<br />
When looking at the private message, it says it is from "MyBB Engine".<br />
<br />
Shouldn't the email reflect that? <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[If you have email notifications for when you receive private messages turned on the email comes out like this:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>rh1n0,<br />
<br />
You have received a new private message on &lt;forum name&gt; from . To view this message, you can follow this link:<br />
<br />
<a href="http://www" target="_blank" rel="noopener" class="mycode_url">http://www</a>.&lt;forum url&gt;.com/private.php<br />
<br />
Please note that you will not receive any further notifications of new messages until you visit &lt;forum name&gt;.<br />
<br />
You can disable new message notifications on your account options page:<br />
<br />
<a href="http://www" target="_blank" rel="noopener" class="mycode_url">http://www</a>.&lt;forum url&gt;.com/usercp.php?action=options<br />
<br />
Thank you,<br />
&lt;forum name&gt; Staff<br />
<a href="http://www" target="_blank" rel="noopener" class="mycode_url">http://www</a>.&lt;forum url&gt;.com</blockquote>
You'll notice where it says "You have received a new private message on &lt;forum name&gt; from" it does not say who it is from.<br />
When looking at the private message, it says it is from "MyBB Engine".<br />
<br />
Shouldn't the email reflect that? <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] Merge from smf 1.1.7]]></title>
			<link>https://community.mybb.com/thread-40702.html</link>
			<pubDate>Wed, 19 Nov 2008 08:53:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=17209">krawutke</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40702.html</guid>
			<description><![CDATA[Hi,<br />
<br />
I´ve tested the merge system for mybb1.4 and wanted to merge from a smf 1.1.7 board.<br />
But I not all of my data was merged:<br />
- only a few posts were merged<br />
- no sub categories were merged<br />
- no attachments were merged<br />
- and so on<br />
<br />
Is there a way to merge from smf 1.1.7 or is this impossible? Or should I merge from smf 1.1.7 to mybb 1.2 and then merge to mybb 1.4?<br />
<br />
<br />
Best regards<br />
krawutke]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I´ve tested the merge system for mybb1.4 and wanted to merge from a smf 1.1.7 board.<br />
But I not all of my data was merged:<br />
- only a few posts were merged<br />
- no sub categories were merged<br />
- no attachments were merged<br />
- and so on<br />
<br />
Is there a way to merge from smf 1.1.7 or is this impossible? Or should I merge from smf 1.1.7 to mybb 1.2 and then merge to mybb 1.4?<br />
<br />
<br />
Best regards<br />
krawutke]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] Logic flaw in usergroup_permission() function [R]]]></title>
			<link>https://community.mybb.com/thread-40700.html</link>
			<pubDate>Wed, 19 Nov 2008 06:13:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=2877">User 2877</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40700.html</guid>
			<description><![CDATA[This is the result of a long thread which I decided to delete and simplify.<br />
<br />
Okay...well I have issues with my premium members and PM quotas. <br />
<br />
An example of the problem is a user can't recieve PMs.<br />
<br />
Okay...here is an example of a permission array:<br />
<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Array ( [disporder] =&gt; 0 [isbannedgroup] =&gt; 0 [canview] =&gt; 1 [canviewthreads] =&gt; 1 [canviewprofiles] =&gt; 1 [candlattachments] =&gt; 1 [canpostthreads] =&gt; 1 [canpostreplys] =&gt; 1 [canpostattachments] =&gt; 1 [canratethreads] =&gt; 1 [caneditposts] =&gt; 1 [candeleteposts] =&gt; 1 [candeletethreads] =&gt; 0 [caneditattachments] =&gt; 1 [canpostpolls] =&gt; 1 [canvotepolls] =&gt; 1 [canusepms] =&gt; 1 [cansendpms] =&gt; 1 [cantrackpms] =&gt; 1 [candenypmreceipts] =&gt; 0 <span style="font-weight: bold;" class="mycode_b">[pmquota] =&gt; 20</span> [maxpmrecipients] =&gt; 5 [cansendemail] =&gt; 0 [maxemails] =&gt; 5 [canviewmemberlist] =&gt; 1 [canviewcalendar] =&gt; 1 [canaddevents] =&gt; 1 [canbypasseventmod] =&gt; 1 [canmoderateevents] =&gt; 0 [canviewonline] =&gt; 1 [canviewwolinvis] =&gt; 0 [canviewonlineips] =&gt; 0 [cancp] =&gt; 0 [issupermod] =&gt; 0 [cansearch] =&gt; 1 [canusercp] =&gt; 1 [canuploadavatars] =&gt; 1 [canratemembers] =&gt; 1 [canchangename] =&gt; 1 [showforumteam] =&gt; 1 [usereputationsystem] =&gt; 1 [cangivereputations] =&gt; 1 [reputationpower] =&gt; 1 [maxreputationsday] =&gt; 10 [candisplaygroup] =&gt; 1 [attachquota] =&gt; 25000 [cancustomtitle] =&gt; 1 [canwarnusers] =&gt; 0 [canreceivewarnings] =&gt; 1 [maxwarningsday] =&gt; 3 [canmodcp] =&gt; 0 ) </blockquote>
<br />
You can see pmquota is 20 yet his group is actually 1500. This function is the problem.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">function usergroup_permissions($gid=0)
{
	global $cache, $groupscache, $grouppermignore, $groupzerogreater;

	if(!is_array($groupscache))
	{
		$groupscache = $cache-&gt;read(&quot;usergroups&quot;);
	}

	$groups = explode(&quot;,&quot;, $gid);


	if(count($groups) == 1)
	{
		return $groupscache[$gid];
	}

	foreach($groups as $gid)
	{
		if(trim($gid) == &quot;&quot; || !$groupscache[$gid])
		{
			continue;
		}

		foreach($groupscache[$gid] as $perm =&gt; $access)
		{
			if(!in_array($perm, $grouppermignore))
			{
				if(isset($usergroup[$perm]))
				{
					$permbit = $usergroup[$perm];
				}
				else
				{
					$permbit = &quot;&quot;;
				}

				if(in_array($perm, $groupzerogreater))
				{
					if($access == 0)
					{
						$usergroup[$perm] = 0;
						continue;
					}
				}

				if($access &gt; $permbit || ($access == &quot;yes&quot; &amp;&amp; $permbit == &quot;no&quot;) || !$permbit) // Keep yes/no for compatibility?
				{
					$usergroup[$perm] = $access;
				}
			}
		}
	}

	return $usergroup;
}</code></pre><br />
I see checks for 0 so is the pmquota getting reset at some point? The array look seems to have a flaw.<br />
<br />
Okay...that's it then. There is a logic problem apparently in the function usergroup_permissions().<br />
<br />
I can reproduce too.  <br />
<br />
Array example of usergroups (just an example)<br />
<br />
[10] <br />
 pmquota -&gt; 0<br />
<br />
[11]<br />
 pmquota -&gt; 100<br />
<br />
[12]<br />
 pmquota -&gt; 0<br />
<br />
[13]<br />
 pmquota -&gt; 50<br />
<br />
It's going to make the pmquota 50 because the 0 resets it if the user is inside all 4 groups or even just 11,12,13.  Now I realize looking at the permissions array in the cache that this might also effect other things like maxwarningsday, maxpmrecipients,maxemails, reputationpower, and maxreputationsday.  The old yes/no system didn't have this problem conflicting with results that use a number.  Also this wouldn't be noticed by those without lots of additional groups.  <br />
<br />
For now I am adding numbers to each pmquota instead of a zero which does fix this but obviously not optimal or permanent.  Zero is also for some of these suppose to be unlimited which also won't stick for any of the parameters I mentioned like maxemails.<br />
<br />
So this needs to be sorted out and looked into. If I have made errors please let me know but I have spent the afternoon on this.  Hopefully it's not confusing to understand.]]></description>
			<content:encoded><![CDATA[This is the result of a long thread which I decided to delete and simplify.<br />
<br />
Okay...well I have issues with my premium members and PM quotas. <br />
<br />
An example of the problem is a user can't recieve PMs.<br />
<br />
Okay...here is an example of a permission array:<br />
<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Array ( [disporder] =&gt; 0 [isbannedgroup] =&gt; 0 [canview] =&gt; 1 [canviewthreads] =&gt; 1 [canviewprofiles] =&gt; 1 [candlattachments] =&gt; 1 [canpostthreads] =&gt; 1 [canpostreplys] =&gt; 1 [canpostattachments] =&gt; 1 [canratethreads] =&gt; 1 [caneditposts] =&gt; 1 [candeleteposts] =&gt; 1 [candeletethreads] =&gt; 0 [caneditattachments] =&gt; 1 [canpostpolls] =&gt; 1 [canvotepolls] =&gt; 1 [canusepms] =&gt; 1 [cansendpms] =&gt; 1 [cantrackpms] =&gt; 1 [candenypmreceipts] =&gt; 0 <span style="font-weight: bold;" class="mycode_b">[pmquota] =&gt; 20</span> [maxpmrecipients] =&gt; 5 [cansendemail] =&gt; 0 [maxemails] =&gt; 5 [canviewmemberlist] =&gt; 1 [canviewcalendar] =&gt; 1 [canaddevents] =&gt; 1 [canbypasseventmod] =&gt; 1 [canmoderateevents] =&gt; 0 [canviewonline] =&gt; 1 [canviewwolinvis] =&gt; 0 [canviewonlineips] =&gt; 0 [cancp] =&gt; 0 [issupermod] =&gt; 0 [cansearch] =&gt; 1 [canusercp] =&gt; 1 [canuploadavatars] =&gt; 1 [canratemembers] =&gt; 1 [canchangename] =&gt; 1 [showforumteam] =&gt; 1 [usereputationsystem] =&gt; 1 [cangivereputations] =&gt; 1 [reputationpower] =&gt; 1 [maxreputationsday] =&gt; 10 [candisplaygroup] =&gt; 1 [attachquota] =&gt; 25000 [cancustomtitle] =&gt; 1 [canwarnusers] =&gt; 0 [canreceivewarnings] =&gt; 1 [maxwarningsday] =&gt; 3 [canmodcp] =&gt; 0 ) </blockquote>
<br />
You can see pmquota is 20 yet his group is actually 1500. This function is the problem.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">function usergroup_permissions($gid=0)
{
	global $cache, $groupscache, $grouppermignore, $groupzerogreater;

	if(!is_array($groupscache))
	{
		$groupscache = $cache-&gt;read(&quot;usergroups&quot;);
	}

	$groups = explode(&quot;,&quot;, $gid);


	if(count($groups) == 1)
	{
		return $groupscache[$gid];
	}

	foreach($groups as $gid)
	{
		if(trim($gid) == &quot;&quot; || !$groupscache[$gid])
		{
			continue;
		}

		foreach($groupscache[$gid] as $perm =&gt; $access)
		{
			if(!in_array($perm, $grouppermignore))
			{
				if(isset($usergroup[$perm]))
				{
					$permbit = $usergroup[$perm];
				}
				else
				{
					$permbit = &quot;&quot;;
				}

				if(in_array($perm, $groupzerogreater))
				{
					if($access == 0)
					{
						$usergroup[$perm] = 0;
						continue;
					}
				}

				if($access &gt; $permbit || ($access == &quot;yes&quot; &amp;&amp; $permbit == &quot;no&quot;) || !$permbit) // Keep yes/no for compatibility?
				{
					$usergroup[$perm] = $access;
				}
			}
		}
	}

	return $usergroup;
}</code></pre><br />
I see checks for 0 so is the pmquota getting reset at some point? The array look seems to have a flaw.<br />
<br />
Okay...that's it then. There is a logic problem apparently in the function usergroup_permissions().<br />
<br />
I can reproduce too.  <br />
<br />
Array example of usergroups (just an example)<br />
<br />
[10] <br />
 pmquota -&gt; 0<br />
<br />
[11]<br />
 pmquota -&gt; 100<br />
<br />
[12]<br />
 pmquota -&gt; 0<br />
<br />
[13]<br />
 pmquota -&gt; 50<br />
<br />
It's going to make the pmquota 50 because the 0 resets it if the user is inside all 4 groups or even just 11,12,13.  Now I realize looking at the permissions array in the cache that this might also effect other things like maxwarningsday, maxpmrecipients,maxemails, reputationpower, and maxreputationsday.  The old yes/no system didn't have this problem conflicting with results that use a number.  Also this wouldn't be noticed by those without lots of additional groups.  <br />
<br />
For now I am adding numbers to each pmquota instead of a zero which does fix this but obviously not optimal or permanent.  Zero is also for some of these suppose to be unlimited which also won't stick for any of the parameters I mentioned like maxemails.<br />
<br />
So this needs to be sorted out and looked into. If I have made errors please let me know but I have spent the afternoon on this.  Hopefully it's not confusing to understand.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] [PostgreSQL] Adding a attachment [R]]]></title>
			<link>https://community.mybb.com/thread-40629.html</link>
			<pubDate>Mon, 17 Nov 2008 14:35:38 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=1331">Chris W. B.</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40629.html</guid>
			<description><![CDATA[On a forum that is running PostgreSQL, a user can't add a attachment.<br />
<br />
To reproduce the error, follow the steps below:<br />
<br />
1. In a thread, click the "New Reply" button<br />
2. Enter a message into the new thread input box<br />
3. In the "Attachments" section, click "Browse"<br />
5. Select the file you want to attach<br />
6 Now click "Add attachment"<br />
<br />
The following error is returned:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    22P02 - ERROR: invalid input syntax for integer: &quot;&quot; 
Query:
    SELECT * FROM trunk_attachments WHERE filename='logo.gif' AND (posthash='fa4510cdde8caa64188cef558b7e1ed5' OR (pid='' AND pid!='0')) </code></pre><br />
PostgreSQL 8.3.4<br />
PHP 5.2.6<br />
MyBB 1.4.3]]></description>
			<content:encoded><![CDATA[On a forum that is running PostgreSQL, a user can't add a attachment.<br />
<br />
To reproduce the error, follow the steps below:<br />
<br />
1. In a thread, click the "New Reply" button<br />
2. Enter a message into the new thread input box<br />
3. In the "Attachments" section, click "Browse"<br />
5. Select the file you want to attach<br />
6 Now click "Add attachment"<br />
<br />
The following error is returned:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    22P02 - ERROR: invalid input syntax for integer: &quot;&quot; 
Query:
    SELECT * FROM trunk_attachments WHERE filename='logo.gif' AND (posthash='fa4510cdde8caa64188cef558b7e1ed5' OR (pid='' AND pid!='0')) </code></pre><br />
PostgreSQL 8.3.4<br />
PHP 5.2.6<br />
MyBB 1.4.3]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] [PostgreSQL] Optimize Database [R]]]></title>
			<link>https://community.mybb.com/thread-40627.html</link>
			<pubDate>Mon, 17 Nov 2008 14:17:37 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=1331">Chris W. B.</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40627.html</guid>
			<description><![CDATA[On a forum that is running PostgreSQL, the optimize table tool doesn't work in the Admin CP.<br />
<br />
To reproduce the error, follow the steps below:<br />
<br />
1. Admin CP &gt; 'Tools &amp; Maintenance' Tab &gt; Optimize Database (Left Menu)<br />
2. Click "Select All" in the Table Selection area<br />
3. Click "Optimize Selected Tables"<br />
<br />
The following error is returned:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    42601 - ERROR: syntax error at or near &quot;TABLE&quot; LINE 1: ANALYZE TABLE trunk_settinggroups ^ 
Query:
    ANALYZE TABLE trunk_settinggroups 
</code></pre><br />
PostgreSQL 8.3.4<br />
PHP 5.2.6<br />
MyBB 1.4.3]]></description>
			<content:encoded><![CDATA[On a forum that is running PostgreSQL, the optimize table tool doesn't work in the Admin CP.<br />
<br />
To reproduce the error, follow the steps below:<br />
<br />
1. Admin CP &gt; 'Tools &amp; Maintenance' Tab &gt; Optimize Database (Left Menu)<br />
2. Click "Select All" in the Table Selection area<br />
3. Click "Optimize Selected Tables"<br />
<br />
The following error is returned:<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    42601 - ERROR: syntax error at or near &quot;TABLE&quot; LINE 1: ANALYZE TABLE trunk_settinggroups ^ 
Query:
    ANALYZE TABLE trunk_settinggroups 
</code></pre><br />
PostgreSQL 8.3.4<br />
PHP 5.2.6<br />
MyBB 1.4.3]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] error in searching item in template admin [C-Michael83]]]></title>
			<link>https://community.mybb.com/thread-40447.html</link>
			<pubDate>Thu, 13 Nov 2008 15:40:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=3085">luke83</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40447.html</guid>
			<description><![CDATA[admin cp-&gt;templates-&gt;search template<br />
<br />
try to find agreement_1 leaving blank the replace input and you will have:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">Warning [2] Missing argument 2 for build_str_ireplace() - Line: 99 - File: inc/functions_compat.php PHP 4.4.7 (Linux)
File 	Line 	Function
[PHP] 	  	errorhandler-&gt;error
/inc/functions_compat.php 	99 	build_str_ireplace
/inc/functions_compat.php 	112 	build_str_ireplace
/admin/modules/style/templates.php 	577 	str_ireplace
/admin/index.php 	378 	require
Warning [2] Missing argument 2 for build_str_ireplace() - Line: 99 - File: inc/functions_compat.php PHP 4.4.7 (Linux)
File 	Line 	Function
[PHP] 	  	errorhandler-&gt;error
/inc/functions_compat.php 	99 	build_str_ireplace
/inc/functions_compat.php 	112 	build_str_ireplace
/admin/modules/style/templates.php 	577 	str_ireplace
/admin/index.php 	378 	require
</code></pre><br />
mybb version: 1.4.3<br />
php version: 5.2.4<br />
os: ubuntu 5.3]]></description>
			<content:encoded><![CDATA[admin cp-&gt;templates-&gt;search template<br />
<br />
try to find agreement_1 leaving blank the replace input and you will have:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">Warning [2] Missing argument 2 for build_str_ireplace() - Line: 99 - File: inc/functions_compat.php PHP 4.4.7 (Linux)
File 	Line 	Function
[PHP] 	  	errorhandler-&gt;error
/inc/functions_compat.php 	99 	build_str_ireplace
/inc/functions_compat.php 	112 	build_str_ireplace
/admin/modules/style/templates.php 	577 	str_ireplace
/admin/index.php 	378 	require
Warning [2] Missing argument 2 for build_str_ireplace() - Line: 99 - File: inc/functions_compat.php PHP 4.4.7 (Linux)
File 	Line 	Function
[PHP] 	  	errorhandler-&gt;error
/inc/functions_compat.php 	99 	build_str_ireplace
/inc/functions_compat.php 	112 	build_str_ireplace
/admin/modules/style/templates.php 	577 	str_ireplace
/admin/index.php 	378 	require
</code></pre><br />
mybb version: 1.4.3<br />
php version: 5.2.4<br />
os: ubuntu 5.3]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] 10,000 PMs problem [C-Ryan Gordon]]]></title>
			<link>https://community.mybb.com/thread-40412.html</link>
			<pubDate>Wed, 12 Nov 2008 23:57:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=2877">User 2877</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40412.html</guid>
			<description><![CDATA[I just had a member last night send 10,000 PMs to my members.  I woke up to see that.  Now...I know officially this isn't a bug but imho it's a priority to stop spammers especially if they can write a script and have 10,000 PMs sent in minutes. This is a grave cause for concern. They could have flooded my server with 1,000,000 PMs and probably crashed the site, server or database.<br />
<br />
I have max recipients set to just 1 for the registered group.  <br />
<br />
I will probably do a custom fix for now to prevent this but please mybb look into this. I exported the data from my logs.  There is some really disturbing stuff if it can be repeated.  <br />
<br />
Sample logs:<br />
<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>59.93.176.72 - - [12/Nov/2008:04:46:37 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"<br />
59.93.176.72 - - [12/Nov/2008:04:46:37 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"<br />
59.93.176.72 - - [12/Nov/2008:04:46:38 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"<br />
59.93.176.72 - - [12/Nov/2008:04:46:38 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"</blockquote>
<br />
<br />
Appears to probably be using a firefox plugin that would automate the process for them.  Hard to really tell for sure but that's how it looks to me.  If the flood-control setting "postfloodsecs" can be applied to PM's...I think that's best solution.<br />
<br />
Thank you.]]></description>
			<content:encoded><![CDATA[I just had a member last night send 10,000 PMs to my members.  I woke up to see that.  Now...I know officially this isn't a bug but imho it's a priority to stop spammers especially if they can write a script and have 10,000 PMs sent in minutes. This is a grave cause for concern. They could have flooded my server with 1,000,000 PMs and probably crashed the site, server or database.<br />
<br />
I have max recipients set to just 1 for the registered group.  <br />
<br />
I will probably do a custom fix for now to prevent this but please mybb look into this. I exported the data from my logs.  There is some really disturbing stuff if it can be repeated.  <br />
<br />
Sample logs:<br />
<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>59.93.176.72 - - [12/Nov/2008:04:46:37 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"<br />
59.93.176.72 - - [12/Nov/2008:04:46:37 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"<br />
59.93.176.72 - - [12/Nov/2008:04:46:38 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"<br />
59.93.176.72 - - [12/Nov/2008:04:46:38 -0500] "POST /private.php HTTP/1.1" 302 203 "http://www.hackforums.net/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"</blockquote>
<br />
<br />
Appears to probably be using a firefox plugin that would automate the process for them.  Hard to really tell for sure but that's how it looks to me.  If the flood-control setting "postfloodsecs" can be applied to PM's...I think that's best solution.<br />
<br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] Mail Reply Address: Issue Resolved]]></title>
			<link>https://community.mybb.com/thread-40396.html</link>
			<pubDate>Wed, 12 Nov 2008 20:32:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=16689">classixiii</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40396.html</guid>
			<description><![CDATA[I did  a search for the answer to my question until I got a migraine so forgive this post if the answer is obvious and I missed it...<br />
<br />
I'm using PHP mail <br />
<br />
When you send an email from my forum to a user, the reply address is the admin email address, meaning I, not the sender, get every email reply. <br />
<br />
I did not find any where in the ACP where this could be changed.<br />
<br />
How do I get the senders email as the reply to address so any replys go to the original sender and not me?<br />
<br />
<br />
Also, is there an answer to the SMTP problem that I have seen posted <br />
regarding "The mail server does not understand the MAIL FROM command" in the log file when trying to use SMTP.<br />
<br />
Everything else that uses my SMTP server work well?<br />
<br />
Thanks for any help !]]></description>
			<content:encoded><![CDATA[I did  a search for the answer to my question until I got a migraine so forgive this post if the answer is obvious and I missed it...<br />
<br />
I'm using PHP mail <br />
<br />
When you send an email from my forum to a user, the reply address is the admin email address, meaning I, not the sender, get every email reply. <br />
<br />
I did not find any where in the ACP where this could be changed.<br />
<br />
How do I get the senders email as the reply to address so any replys go to the original sender and not me?<br />
<br />
<br />
Also, is there an answer to the SMTP problem that I have seen posted <br />
regarding "The mail server does not understand the MAIL FROM command" in the log file when trying to use SMTP.<br />
<br />
Everything else that uses my SMTP server work well?<br />
<br />
Thanks for any help !]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] [Calender] HTML encoding / stripping problem [C-Chris]]]></title>
			<link>https://community.mybb.com/thread-40387.html</link>
			<pubDate>Wed, 12 Nov 2008 15:06:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=11454">Dreamwalker</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40387.html</guid>
			<description><![CDATA[This error occurs with version <span style="font-weight: bold;" class="mycode_b">1.4.3</span> with german language pack - but I think it will occur with english / each other language pack, too <img src="https://community.mybb.com/images/smilies/wink.gif" alt="Wink" title="Wink" class="smilie smilie_3" /><br />
<br />
Here's a screenshot of this error:<br />
<img src="https://camo.mybb.com/2afea04771e836316c054e5d584db62ec493a740/687474703a2f2f726169642e7261747a2d647265616d7a2e64652f706f7274616c2f696d616765732f6d7962625f31345f6275672e706e67" data-original-url="http://raid.ratz-dreamz.de/portal/images/mybb_14_bug.png" loading="lazy"  alt="[Image: mybb_14_bug.png]" class="mycode_img" /><br />
(see date at 13st "Start des &amp;quot"...)<br />
<br />
I think this is a bug when trying to strip characters <span style="text-decoration: underline;" class="mycode_u">after</span> encoding it at dates topic (in this case: <span style="font-style: italic;" class="mycode_i">Start des "Wrath of the Lich King" WoW Addons</span>).<br />
<br />
This bug isn't a real "high priority" bug, cause you can change the dates topic, so that the characters are stripped without destroying html entities - but nevertheless a statement of a developer would be nice <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Thanks,<br />
Dreamwalker (from Germany)<br />
<br />
<span style="font-size: x-small;" class="mycode_size">PS: please excuse my poor skills at writing an english text (or at least something that <span style="font-style: italic;" class="mycode_i">sounds</span> like an english text).</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Edit:</span><br />
I just saw, that there's a "Bug Report" forum @ a mod: please move this thread to this forum - thanks <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[This error occurs with version <span style="font-weight: bold;" class="mycode_b">1.4.3</span> with german language pack - but I think it will occur with english / each other language pack, too <img src="https://community.mybb.com/images/smilies/wink.gif" alt="Wink" title="Wink" class="smilie smilie_3" /><br />
<br />
Here's a screenshot of this error:<br />
<img src="https://camo.mybb.com/2afea04771e836316c054e5d584db62ec493a740/687474703a2f2f726169642e7261747a2d647265616d7a2e64652f706f7274616c2f696d616765732f6d7962625f31345f6275672e706e67" data-original-url="http://raid.ratz-dreamz.de/portal/images/mybb_14_bug.png" loading="lazy"  alt="[Image: mybb_14_bug.png]" class="mycode_img" /><br />
(see date at 13st "Start des &amp;quot"...)<br />
<br />
I think this is a bug when trying to strip characters <span style="text-decoration: underline;" class="mycode_u">after</span> encoding it at dates topic (in this case: <span style="font-style: italic;" class="mycode_i">Start des "Wrath of the Lich King" WoW Addons</span>).<br />
<br />
This bug isn't a real "high priority" bug, cause you can change the dates topic, so that the characters are stripped without destroying html entities - but nevertheless a statement of a developer would be nice <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Thanks,<br />
Dreamwalker (from Germany)<br />
<br />
<span style="font-size: x-small;" class="mycode_size">PS: please excuse my poor skills at writing an english text (or at least something that <span style="font-style: italic;" class="mycode_i">sounds</span> like an english text).</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Edit:</span><br />
I just saw, that there's a "Bug Report" forum @ a mod: please move this thread to this forum - thanks <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] SQL error when editing thread]]></title>
			<link>https://community.mybb.com/thread-40378.html</link>
			<pubDate>Wed, 12 Nov 2008 07:37:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=16635">kvikkjokk</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40378.html</guid>
			<description><![CDATA[I'm running 1.4.2. When I edit (quick edit) an existing thread and click on save changes I get<br />
<br />
MyBB SQL Error<br />
MyBB has experienced an internal SQL error and cannot continue.<br />
SQL Error:<br />
0 - ERROR: invalid input syntax for integer: "" <br />
Query:<br />
DELETE FROM mybb_threadsubscriptions WHERE uid='' AND tid='10' <br />
<br />
This is with Postgresql 8.2.9.<br />
<br />
Funny enough when looking at the thread the changes where successfully made.]]></description>
			<content:encoded><![CDATA[I'm running 1.4.2. When I edit (quick edit) an existing thread and click on save changes I get<br />
<br />
MyBB SQL Error<br />
MyBB has experienced an internal SQL error and cannot continue.<br />
SQL Error:<br />
0 - ERROR: invalid input syntax for integer: "" <br />
Query:<br />
DELETE FROM mybb_threadsubscriptions WHERE uid='' AND tid='10' <br />
<br />
This is with Postgresql 8.2.9.<br />
<br />
Funny enough when looking at the thread the changes where successfully made.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] phpBB 3 to MyBB loginconvert.php problems]]></title>
			<link>https://community.mybb.com/thread-40377.html</link>
			<pubDate>Wed, 12 Nov 2008 07:06:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=17081">Teoman</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40377.html</guid>
			<description><![CDATA[Hi,<br />
<br />
I have a phpbb 3 forum and want to convert it to MyBB. I am running a few test conversions and having some issues.<br />
<br />
If I convert from phpbb 3 to MyBB 1.2.x it works fine and users can login with the loginconvert.php plugin enabled.<br />
<br />
If I convert direct from phpbb 3 to MyBB 1.4.x, users can't login whether the plugin is enabled or not. Also, when I convert from phpbb 3 to MyBB 1.2.x, and then upgrade to MyBB 1.4.x (and use the new loginconvert.php plugin, of course <img src="https://community.mybb.com/images/smilies/wink.gif" alt="Wink" title="Wink" class="smilie smilie_3" />), users can't login either.<br />
<br />
Is there an issue with this plugin for 1.4.x versions, or is there a way to work around this?? There's no point in upgrading if I have to use an old version, or if I use the new version but every single user has to request a new password.<br />
<br />
Thanks <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><hr class="mycode_hr" />
To update this issue - I have Joomla CMS and it only interfaces with MyBB 1.4.x (with JFusion) properly, not MyBB1.2.x.<br />
<br />
I really need this to work ASAP, I hope there is solution.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I have a phpbb 3 forum and want to convert it to MyBB. I am running a few test conversions and having some issues.<br />
<br />
If I convert from phpbb 3 to MyBB 1.2.x it works fine and users can login with the loginconvert.php plugin enabled.<br />
<br />
If I convert direct from phpbb 3 to MyBB 1.4.x, users can't login whether the plugin is enabled or not. Also, when I convert from phpbb 3 to MyBB 1.2.x, and then upgrade to MyBB 1.4.x (and use the new loginconvert.php plugin, of course <img src="https://community.mybb.com/images/smilies/wink.gif" alt="Wink" title="Wink" class="smilie smilie_3" />), users can't login either.<br />
<br />
Is there an issue with this plugin for 1.4.x versions, or is there a way to work around this?? There's no point in upgrading if I have to use an old version, or if I use the new version but every single user has to request a new password.<br />
<br />
Thanks <img src="https://community.mybb.com/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" /><hr class="mycode_hr" />
To update this issue - I have Joomla CMS and it only interfaces with MyBB 1.4.x (with JFusion) properly, not MyBB1.2.x.<br />
<br />
I really need this to work ASAP, I hope there is solution.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[F] [WOL] Viewing an attachment [R] [C-Michael83]]]></title>
			<link>https://community.mybb.com/thread-40363.html</link>
			<pubDate>Tue, 11 Nov 2008 23:37:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://community.mybb.com/member.php?action=profile&uid=895">Michael S.</a>]]></dc:creator>
			<guid isPermaLink="false">https://community.mybb.com/thread-40363.html</guid>
			<description><![CDATA[If someone is viewing an attachment and you click on the link in the Who's online list it opens in the same window. The link should open a new window like the attachment links in posts do.]]></description>
			<content:encoded><![CDATA[If someone is viewing an attachment and you click on the link in the Who's online list it opens in the same window. The link should open a new window like the attachment links in posts do.]]></content:encoded>
		</item>
	</channel>
</rss>