<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Forum for Combu - Forums				            </title>
            <link>https://www.skaredcreations.com/wp/community/combu-addon-forum/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 07 Jun 2026 14:28:00 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Adding users to forum user groups</title>
                        <link>https://www.skaredcreations.com/wp/community/combu-addon-forum/adding-users-to-forum-user-groups/</link>
                        <pubDate>Tue, 25 Feb 2020 18:26:56 +0000</pubDate>
                        <description><![CDATA[This seems like a silly problem but I can&#039;t figure out how to add users to forum user groups (as opposed to normal Combu user groups) via script. You can add them in the Combu admin panel, o...]]></description>
                        <content:encoded><![CDATA[<p>This seems like a silly problem but I can't figure out how to add users to forum user groups (as opposed to normal Combu user groups) via script. You can add them in the Combu admin panel, or set the group to default, you can also ban them. But how is a user added?</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/combu-addon-forum/">Forum for Combu</category>                        <dc:creator>Cloudlessrain</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu-addon-forum/adding-users-to-forum-user-groups/</guid>
                    </item>
				                    <item>
                        <title>status of forum asset</title>
                        <link>https://www.skaredcreations.com/wp/community/combu-addon-forum/status-of-forum-asset/</link>
                        <pubDate>Tue, 18 Feb 2020 06:08:18 +0000</pubDate>
                        <description><![CDATA[HI there, I just got the Combu demo up and working and I&#039;m excited to dive deeper.
In particular I want to build a forum system but before I purchase the forum asset I thought I&#039;d check to ...]]></description>
                        <content:encoded><![CDATA[<p>HI there, I just got the Combu demo up and working and I'm excited to dive deeper.</p>
<p>In particular I want to build a forum system but before I purchase the forum asset I thought I'd check to make sure that it isn't deprecated. On the asset store it appears that there hasn't been an updated for a couple years.</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/combu-addon-forum/">Forum for Combu</category>                        <dc:creator>Cloudlessrain</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu-addon-forum/status-of-forum-asset/</guid>
                    </item>
				                    <item>
                        <title>Updating a int in column in database</title>
                        <link>https://www.skaredcreations.com/wp/community/combu-addon-forum/updating-a-int-in-column-in-database/</link>
                        <pubDate>Sat, 06 Jul 2019 13:57:11 +0000</pubDate>
                        <description><![CDATA[I&#039;m using opencart and a rewards point addon module so when a user buys coins on my website for real money the rewards points are added to their coins column in the user table. I&#039;m having a ...]]></description>
                        <content:encoded><![CDATA[<p>I'm using opencart and a rewards point addon module so when a user buys coins on my website for real money the rewards points are added to their coins column in the user table. I'm having a hard time figuring out how to make this happen.</p><p>The table name has a <span style="text-decoration: underline">prefix</span>, table name is 'customer', each customer has an id 'customer_id' and the column that needs to be updated (int added) with the reward points is 'coins'.</p><p>This is the script that does this:</p><div><span style="background-color: #ffffff;font-family: Consolas,Monaco,monospace">&lt;modification&gt;<br /> &lt;id&gt;Auto Reward Points&lt;/id&gt;<br /> &lt;version&gt;OC 1.5&lt;/version&gt;<br /> &lt;vqmver&gt;2.0.0&lt;/vqmver&gt;<br /> &lt;author&gt;Equotix&lt;/author&gt;<br /> &lt;!-- ADMIN --&gt;<br /> &lt;file name="admin/model/sale/order.php"&gt;<br />  &lt;operation&gt;<br />   &lt;search position="after"&gt;&lt;![CDATA]&gt;&lt;/search&gt;<br />   &lt;add&gt;&lt;![CDATA[<br />    // Auto Reward Points<br />    $this-&gt;load-&gt;model('sale/customer');<br />    <br />    $reward_total = $this-&gt;model_sale_customer-&gt;getTotalCustomerRewardsByOrderId($order_id);</span></div><div><span style="background-color: #ffffff;font-family: Consolas,Monaco,monospace">    if (!$reward_total &amp;&amp; $data == $this-&gt;config-&gt;get('config_complete_status_id')) {<br />     $this-&gt;language-&gt;load('sale/order');<br />     <br />     $order_info = $this-&gt;getOrder($order_id);<br />    <br />     if ($order_info &amp;&amp; $this-&gt;config-&gt;get(base64_decode('YXV0b19yZXdhcmRfcG9pbnRzX2xpY2Vuc2VfbGljZW5zZV9rZXk='))) {<br />      $this-&gt;db-&gt;query("INSERT INTO " . DB_PREFIX . "customer_reward SET customer_id = '" . (int)$order_info . "', order_id = '" . (int)$order_id . "', points = '" . (int)$order_info . "', description = '" . $this-&gt;db-&gt;escape($this-&gt;language-&gt;get('text_order_id') . ' #' . $order_id) . "', date_added = NOW()");<br />     }<br />    }<br />    // End Auto Reward Points<br />   ]]&gt;&lt;/add&gt;<br />  &lt;/operation&gt;<br /> &lt;/file&gt;<br /> &lt;!-- CATALOG --&gt;<br /> &lt;file name="catalog/model/checkout/order.php"&gt;<br />  &lt;operation&gt;<br />   &lt;search position="after"&gt;&lt;![CDATA]&gt;&lt;/search&gt;<br />   &lt;add&gt;&lt;![CDATA[<br />    // Auto Reward Points<br />    $reward = 0;</span></div><div><span style="background-color: #ffffff;font-family: Consolas,Monaco,monospace">    $reward_query = $this-&gt;db-&gt;query("SELECT * FROM " . DB_PREFIX . "order_product WHERE order_id = '" . (int)$order_id . "'");</span></div><div><span style="background-color: #ffffff;font-family: Consolas,Monaco,monospace">    foreach ($reward_query-&gt;rows as $product) {<br />     $reward += $product;<br />    }<br />    <br />    $reward_total = $this-&gt;db-&gt;query("SELECT COUNT(*) AS total FROM " . DB_PREFIX . "customer_reward WHERE order_id = '" . (int)$order_id . "' AND points &gt; 0");<br />    <br />    if (!$reward_total-&gt;row &amp;&amp; $order_status_id == $this-&gt;config-&gt;get('config_complete_status_id')) {<br />     $this-&gt;language-&gt;load('account/order');<br />    <br />     $order_info = $this-&gt;getOrder($order_id);<br />   <br />     if ($order_info &amp;&amp; $this-&gt;config-&gt;get('auto_reward_points_license_license_key')) {<br />      $this-&gt;db-&gt;query("INSERT INTO " . DB_PREFIX . "customer_reward SET customer_id = '" . (int)$order_info . "', order_id = '" . (int)$order_id . "', points = '" . (int)$reward . "', description = '" . $this-&gt;db-&gt;escape($this-&gt;language-&gt;get('text_order_id') . ' #' . $order_id) . "', date_added = NOW()");<br />     }<br />    }<br />    // End Auto Reward Points<br />   ]]&gt;&lt;/add&gt;<br />  &lt;/operation&gt;<br /> &lt;/file&gt;<br />&lt;/modification&gt;</span></div><div> </div><pre>Script also added as attachment.</pre>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/combu-addon-forum/">Forum for Combu</category>                        <dc:creator>slthompson</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu-addon-forum/updating-a-int-in-column-in-database/</guid>
                    </item>
				                    <item>
                        <title>Import xml</title>
                        <link>https://www.skaredcreations.com/wp/community/combu-addon-forum/import-xml/</link>
                        <pubDate>Wed, 26 Jun 2019 13:08:11 +0000</pubDate>
                        <description><![CDATA[I&#039;m getting the following when importing the xml file into my database:ErrorSQL query: USE `combu_addons`MySQL said:  #1044 - Access denied for user &#039;cpses_baor6zseuz&#039;@&#039;localhost&#039; to databas...]]></description>
                        <content:encoded><![CDATA[<p style="color: #333333;quot;quot;quot;quot;,times,serif;font-size: 16px;font-style: normal;font-variant: normal;font-weight: 400;letter-spacing: normal;text-align: left;text-decoration: none;text-indent: 0px;text-transform: none">I'm getting the following when importing the xml file into my database:</p><div style="color: #333333;quot;quot;quot;quot;,times,serif;font-size: 16px;font-style: normal;font-variant: normal;font-weight: 400;letter-spacing: normal;text-align: left;text-decoration: none;text-indent: 0px;text-transform: none"><span style="background-color: #ffffff">Error<br />SQL query: </span></div><div style="color: #333333;quot;quot;quot;quot;,times,serif;font-size: 16px;font-style: normal;font-variant: normal;font-weight: 400;letter-spacing: normal;text-align: left;text-decoration: none;text-indent: 0px;text-transform: none"><span style="background-color: #ffffff">USE `combu_addons`</span></div><div style="color: #333333;quot;quot;quot;quot;,times,serif;font-size: 16px;font-style: normal;font-variant: normal;font-weight: 400;letter-spacing: normal;text-align: left;text-decoration: none;text-indent: 0px;text-transform: none"><span style="background-color: #ffffff">MySQL said:  <br />#1044 - Access denied for user 'cpses_baor6zseuz'@'localhost' to database 'combu_addons'<br /></span></div><div style="color: #333333;quot;quot;quot;quot;,times,serif;font-size: 16px;font-style: normal;font-variant: normal;font-weight: 400;letter-spacing: normal;text-align: left;text-decoration: none;text-indent: 0px;text-transform: none"> </div><div style="color: #333333;quot;quot;quot;quot;,times,serif;font-size: 16px;font-style: normal;font-variant: normal;font-weight: 400;letter-spacing: normal;text-align: left;text-decoration: none;text-indent: 0px;text-transform: none">There isn't a combu_addons table in the combu database, is something missing?</div>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/combu-addon-forum/">Forum for Combu</category>                        <dc:creator>slthompson</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu-addon-forum/import-xml/</guid>
                    </item>
							        </channel>
        </rss>
		