<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/styles/v2/template/feed/rss_web_en.xsl?v=2.0.2.13" type="text/xsl"?>
<!-- Some spaces                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        to force xlst -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<channel>
	<title><![CDATA[CaniDev]]></title>
	<description><![CDATA[]]></description>
	<link>/feed/?lang=en</link>
	<language>en</language>
	<ttl>10</ttl>
	<lastBuildDate>Sat, 14 Feb 2026 12:30:11 +0000</lastBuildDate>
	<copyright><![CDATA[2011-2026 CaniDev]]></copyright>
	<image>
		<title><![CDATA[CaniDev]]></title>
		<url>/static/canidev-image-small.jpg</url>
		<link>/feed/?lang=en</link>
	</image>
	<atom:link rel="self" href="/feed/forum?lang=en" type="application/rss+xml"/>

	<item>
		<title><![CDATA[Re: Report post breaks the extension]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1621&amp;p=7335&amp;lang=en#p7335</link>
		<pubDate>Sat, 14 Feb 2026 12:30:11 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Currently, extension development is temporarily paused due to lack of time.<br />As soon as I have time, I will release new versions to fix all the problems found.]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Report post breaks the extension]]></title>
		<dc:creator>deiux3</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1621&amp;p=7334&amp;lang=en#p7334</link>
		<pubDate>Sat, 14 Feb 2026 03:30:50 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Any news on this? <img class="smiley" src="/images/smilies/icon_idea.png">]]></description>
	</item>
	<item>
		<title><![CDATA[Show topic title instead of description]]></title>
		<dc:creator>deiux3</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1632&amp;p=7267&amp;lang=en#p7267</link>
		<pubDate>Tue, 30 Sep 2025 06:39:43 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Hello,<br /><br />Is it possible to change the reactions notifications to show the title of the topic that has been reacted to instead of the description of the topic?]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Report post breaks the extension]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1621&amp;p=7254&amp;lang=en#p7254</link>
		<pubDate>Fri, 05 Sep 2025 19:21:51 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Thanks for the report.<br />I'll try to provide a solution as soon as possible.]]></description>
	</item>
	<item>
		<title><![CDATA[Report post breaks the extension]]></title>
		<dc:creator>deiux3</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1621&amp;p=7253&amp;lang=en#p7253</link>
		<pubDate>Fri, 05 Sep 2025 15:44:32 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Hey cani,<br /><br />There's a small issue with &quot;Reactions&quot; extension.<br /><br />If someone reports a post with internal phpbb tool, the users can not react anymore to that specific post until the report is closed/deleted.<br /><br />How can we fix this?]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Notifications not appearing]]></title>
		<dc:creator>deiux3</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1597&amp;p=7229&amp;lang=en#p7229</link>
		<pubDate>Mon, 11 Aug 2025 10:38:20 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[<blockquote><div><cite>IvanPF wrote:</cite><br />Hi,<br /><br />I have to try to reproduce that same mistake and do tests to find out the cause.<br />I currently do not have much free time, I will do it as soon as possible<br /></div></blockquote><br /><br />So basically, I think there's a problem with how the user id feature is implemented.<br /><br />Because I changed the add_notification with this one:<br /><dl class="codebox"><dt>Code: </dt><dd><code>public function add_notification($notification_type_name, $notification_data)<br />{<br />    $notification_type_id = $this-&gt;manager-&gt;get_notification_type_id($notification_type_name);<br />    $item_parent_id = isset($notification_data&#91;'item_parent_id'&#93;) ? $notification_data&#91;'item_parent_id'&#93; : 0;<br /><br />    /** @var \canidev\reactions\notification\post */<br />    $notification = $this-&gt;manager-&gt;get_item_type_class($notification_type_name);<br /><br />    $sql = 'SELECT *<br />        FROM ' . $this-&gt;notifications_table . '<br />        WHERE notification_type_id = ' . (int)$notification_type_id . '<br />        AND item_id = ' . (int)$notification_data&#91;'item_id'&#93; . '<br />        AND item_parent_id = ' . $item_parent_id;<br />    $result = $this-&gt;db-&gt;sql_query($sql);<br />    $notification_row = $this-&gt;db-&gt;sql_fetchrow($result);<br />    $this-&gt;db-&gt;sql_freeresult($result);<br /><br />    if (!$notification_row || !$notification-&gt;allow_multiple_users())<br />    {<br />        return $this-&gt;manager-&gt;add_notifications($notification_type_name, $notification_data);<br />    }<br /><br />    $notification_data = array_merge($notification_row, $notification_data);<br /><br />    return $this-&gt;manager-&gt;update_notifications($notification_type_name, $notification_data, &#91;<br />        'item_id' =&gt; $notification_data&#91;'item_id'&#93;,<br />        'item_parent_id' =&gt; $item_parent_id,<br />    &#93;);<br />}</code></dd></dl><br /><br /><span style="font-weight: bold">And now every react sends a notification,</span> but the &quot;User1, user2, USer3 and x others reacted to your post&quot; feature it's gone with this method.<br /><br /><span style="font-weight: bold">But with this method every react -&gt; sends a notification to the author with the latest person that reacted.</span><br /><br />With the original add_notification method, there's a 40% chance that the notification is not sent.<br /><br />I even tried with a new user to react to an old post that has not beed reacted to in more than 30 days, and the author did not recieve any notification for that post..]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Notifications not appearing]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1597&amp;p=7228&amp;lang=en#p7228</link>
		<pubDate>Sun, 10 Aug 2025 21:04:13 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Hi,<br /><br />I have to try to reproduce that same mistake and do tests to find out the cause.<br />I currently do not have much free time, I will do it as soon as possible]]></description>
	</item>
	<item>
		<title><![CDATA[Notifications not appearing]]></title>
		<dc:creator>deiux3</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1597&amp;p=7227&amp;lang=en#p7227</link>
		<pubDate>Sun, 10 Aug 2025 10:26:32 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Hello.<br /><br />I have reaction extension 1.0.4 and I have a problem with notifications..<br /><br />1) Sometimes, the notification is not sent when a user reacts, sometimes it is sent correctly!<br /><br />2) If I have a post where 15 people reacted, sometimes the notification will show only 10 people reacted..<br /><br />I think there's a problem from<span style="font-weight: bold"><span style="font-style: italic"> add_notification</span></span> but I'm not 100% sure.<br /><br />The strange thing is, if I delete all reactions (as an admin) from a post where notifications are not sent when reacting, and react again - the notification is sent correctly!<br /><br />What can be the cause and how can I fix it? Thank you!]]></description>
	</item>
	<item>
		<title><![CDATA[Re: timeout]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1589&amp;p=7217&amp;lang=en#p7217</link>
		<pubDate>Thu, 19 Jun 2025 17:53:09 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[I'm glad you could solve it.<br />When you have such a problem you can install the extension through the command line with the phpbb cli.<br /><dl class="codebox"><dt>Code: </dt><dd><code> php ./bin/phpbbcli.php extension:enable canidev/reactions</code></dd></dl><br /><br />Just to take it into account. How many registered users does your forum have?]]></description>
	</item>
	<item>
		<title><![CDATA[Re: timeout]]></title>
		<dc:creator>jimsefton</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1589&amp;p=7216&amp;lang=en#p7216</link>
		<pubDate>Thu, 19 Jun 2025 07:39:19 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[I was struggling to get this to work. I ended up adding the user_reaction_score column manually and giving it a default of 0 instead of running the full SQL. I then deleted the entry in the ext table and re-activated the plugin and it worked.]]></description>
	</item>
	<item>
		<title><![CDATA[timeout]]></title>
		<dc:creator>jimsefton</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1589&amp;p=7215&amp;lang=en#p7215</link>
		<pubDate>Wed, 18 Jun 2025 21:26:41 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[I am getting a timeout when installing onto my very big forum. It is fine on my test forum (small). Is there a way of doing the install from the command line to avoid the timeout?]]></description>
	</item>
	<item>
		<title><![CDATA[Re: SQL Error]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1588&amp;p=7212&amp;lang=en#p7212</link>
		<pubDate>Wed, 18 Jun 2025 20:51:36 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[Hi,<br /><br />This issue will be fixed in the next release.]]></description>
	</item>
	<item>
		<title><![CDATA[SQL Error]]></title>
		<dc:creator>ravedeath</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1588&amp;p=7211&amp;lang=en#p7211</link>
		<pubDate>Wed, 18 Jun 2025 19:57:06 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[EN: I have a lot of forums (or rather, subforums) and after I selected them all and clicked Submit, I got the following error:<br /><br />ES: Tengo muchos foros (o más bien, subforos) y después de seleccionarlos todos y de enviar la configuración, me sale este error:<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>General Error<br /><br />SQL ERROR &#91; mysqli &#93;<br /><br />Data too long for column 'config_value' at row 1 &#91;1406&#93;<br /><br />SQL<br /><br />UPDATE phpbb_config SET config_value = '2,81,4,5,50,44,70,121,54,140,122,20,7,79,144,88,96,65,62,6,29,107,181,77,176,66,150,80,37,146,110,136,114,109,154,69,86,111,72,139,21,19,129,125,168,100,137,25,108,180,147,135,18,39,17,36,16,155,71,173,10,179,159,46,84,169,163,56,97,119,32,138,24,49,63,117,99,162,157,60,172,141,30,89,134,58,132,126,87,23,145,151,174,153,34,178,26,95,14,38,98,47,33,92,167,91,31,42,83,142,82,61,128,166,15,152,158,68,90,85,177,22,35,165,161,94,102,115,40,118,143,104,78,130,133,113,116,57,175,148,112,127,149,103,93,124,51,11,131,75,64,67,53,120,55,76,171,160,170,28,27,41,105,43,182,9,59,73,13' WHERE config_name = 'reactions_forums'<br /><br />BACKTRACE<br /><br />FILE: (not given by php)<br />LINE: (not given by php)<br />CALL: msg_handler()<br /><br />FILE: &#91;ROOT&#93;/phpbb/db/driver/driver.php<br />LINE: 1031<br />CALL: trigger_error()<br /><br />FILE: &#91;ROOT&#93;/phpbb/db/driver/mysqli.php<br />LINE: 216<br />CALL: phpbb\db\driver\driver-&gt;sql_error()<br /><br />FILE: &#91;ROOT&#93;/phpbb/db/driver/factory.php<br />LINE: 353<br />CALL: phpbb\db\driver\mysqli-&gt;sql_query()<br /><br />FILE: &#91;ROOT&#93;/phpbb/config/db.php<br />LINE: 163<br />CALL: phpbb\db\driver\factory-&gt;sql_query()<br /><br />FILE: &#91;ROOT&#93;/phpbb/config/db.php<br />LINE: 137<br />CALL: phpbb\config\db-&gt;set_atomic()<br /><br />FILE: &#91;ROOT&#93;/ext/canidev/reactions/controller/admin_config.php<br />LINE: 128<br />CALL: phpbb\config\db-&gt;set()<br /><br />FILE: &#91;ROOT&#93;/ext/canidev/reactions/acp/main_module.php<br />LINE: 27<br />CALL: canidev\reactions\controller\admin_config-&gt;display()<br /><br />FILE: &#91;ROOT&#93;/includes/functions_module.php<br />LINE: 684<br />CALL: canidev\reactions\acp\main_module-&gt;main()<br /><br />FILE: &#91;ROOT&#93;/adm/index.php<br />LINE: 81<br />CALL: p_master-&gt;load_active()</code></dd></dl>]]></description>
	</item>
	<item>
		<title><![CDATA[The submitted form is invalid on flatboots]]></title>
		<dc:creator>eunaumtenhoid</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1581&amp;p=7198&amp;lang=en#p7198</link>
		<pubDate>Tue, 06 May 2025 11:30:07 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[When I click on the icon to react to a post I see the reactions to the post I get this message &gt;&gt; The submitted form is invalid. Please try submitting it again.<br /><br />only in flatboots style, yes i added the style to the site and cleared the cache<br /><br />ver 1.0.4]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Reaction score as parameter in Auto Groups]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1400&amp;p=7178&amp;lang=en#p7178</link>
		<pubDate>Mon, 21 Apr 2025 10:45:20 +0000</pubDate>
		<category>cBB Reactions</category>
		<description><![CDATA[I think I checked it in the past and it wasn't possible, but I'll look at it again.]]></description>
	</item>

</channel>
</rss>
