<?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>
									Forums - Recent Posts				            </title>
            <link>https://www.skaredcreations.com/wp/community/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 13 May 2026 08:03:10 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>504 Gateway Timeout</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/504-gateway-timeout/#post-1893</link>
                        <pubDate>Mon, 14 Apr 2025 23:50:26 +0000</pubDate>
                        <description><![CDATA[Since Combu is no more in development, we have disabled the subdomain &quot;services.skaredcreations.com&quot; that is called internally in the administration console pages to check for new updates (t...]]></description>
                        <content:encoded><![CDATA[<p>Since <strong>Combu</strong> is no more in development, we have disabled the subdomain "services.skaredcreations.com" that is called internally in the administration console pages to check for new updates (that will probably not be released any time soon), so it may happen to encounter the error "504 Gateway Timeout" while navigating the administration console.</p>
<p>To fix this error you can just edit the file "/lib/constants.php" and replace "https://services.skaredcreations.com" with "https://www.skaredcreations.com" in the constant definitions COMBU_UPDATE and COMBU_UPDATER.</p>
<p>Even better, you can also completely disable the check for updates by editing the file "/admin/lib/includes/common_functions.php" and replace the content of both functions "checkUpgradeAvailable" and "checkUpgradeUpdaterAvailable" with the following, so it will not even make a call to our updater and your server will save traffic and resources usage:</p>
<pre contenteditable="false">function checkUpgradeAvailable() {
    return array(
        "version" =&gt; COMBU_VERSION,
        "release_notes" =&gt; "",
        "updater_version" =&gt; null,
        "sql" =&gt; array(),
        "files" =&gt; array(),
        "delete" =&gt; array(),
        "scripts" =&gt; array(),
        "beta" =&gt; FALSE,
        "upgrade_required" =&gt; FALSE
    );
}

function checkUpgradeUpdaterAvailable() {
    return array(
        "version" =&gt; UPDATER_VERSION,
        "release_notes" =&gt; "",
        "updater_version" =&gt; null,
        "sql" =&gt; array(),
        "files" =&gt; array(),
        "delete" =&gt; array(),
        "scripts" =&gt; array(),
        "beta" =&gt; FALSE,
        "upgrade_required" =&gt; FALSE
    );
}
</pre>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>Skared Creations</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/504-gateway-timeout/#post-1893</guid>
                    </item>
				                    <item>
                        <title>RE: Additional data for leaderboard scores</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1892</link>
                        <pubDate>Mon, 01 Apr 2024 12:16:32 +0000</pubDate>
                        <description><![CDATA[@skaredcreations Thanks, I&#039;ll look into that. Also maybe I could make it as an addon? Or is that out of scope?]]></description>
                        <content:encoded><![CDATA[@skaredcreations Thanks, I'll look into that. Also maybe I could make it as an addon? Or is that out of scope?]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>derkoi</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1892</guid>
                    </item>
				                    <item>
                        <title>RE: Additional data for leaderboard scores</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1891</link>
                        <pubDate>Fri, 29 Mar 2024 01:50:08 +0000</pubDate>
                        <description><![CDATA[Hi,
there&#039;s nothing like this implemented at this moment.
If you want to try yourself then I could suggest to use a new property CustomData in the server-side class LeaderBoard_User (as TE...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>there's nothing like this implemented at this moment.</p>
<p>If you want to try yourself then I could suggest to use a new property CustomData in the server-side class LeaderBoard_User (as TEXT field on the table) where you could store the json representation of a dictionary/hashtable for the custom data for each leaderboard score. Of course it's not exactly straight-forward as implementation, but if you are also familiar with PHP programming then it shouldn't be extremely hard to add this field and manage it both in the server webservice and in the client classes/calls (you can start looking at how it passes the "customData" in the other entities on client side for example in the User class, and how it uses and stores that in other webservices).</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>Skared Creations</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1891</guid>
                    </item>
				                    <item>
                        <title>RE: Additional data for leaderboard scores</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1890</link>
                        <pubDate>Thu, 28 Mar 2024 20:12:16 +0000</pubDate>
                        <description><![CDATA[Anyone there?]]></description>
                        <content:encoded><![CDATA[<p>Anyone there?</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>derkoi</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1890</guid>
                    </item>
				                    <item>
                        <title>Additional data for leaderboard scores</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1889</link>
                        <pubDate>Wed, 20 Mar 2024 09:03:15 +0000</pubDate>
                        <description><![CDATA[Hi,
I&#039;m developing a number of racing games and I&#039;d like to give some extra information on the leaderboards for the vehicle used and manual or automatic transmission &amp; add the options f...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>I'm developing a number of racing games and I'd like to give some extra information on the leaderboards for the vehicle used and manual or automatic transmission &amp; add the options for players to download the replay or ghost of the other players. I can't find any official way to do this so wondered how I could perhaps go about adding it myself?</p>
<p>Thanks</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>derkoi</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/additional-data-for-leaderboard-scores/#post-1889</guid>
                    </item>
				                    <item>
                        <title>RE: Error creating the default admin account (SQLSTATE: Base table or view not found: 1146 Table &#039;combu.adminaccount&#039; doesn&#039;t exist)</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1888</link>
                        <pubDate>Tue, 19 Mar 2024 10:22:15 +0000</pubDate>
                        <description><![CDATA[I had already sent a message to the email address associated to your account, anyway I&#039;ve now forwarded the message to the address that you wrote in your post (I edited your post and removed...]]></description>
                        <content:encoded><![CDATA[<p>I had already sent a message to the email address associated to your account, anyway I've now forwarded the message to the address that you wrote in your post (I edited your post and removed the address for security reason).</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>Skared Creations</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1888</guid>
                    </item>
				                    <item>
                        <title>RE: Error creating the default admin account (SQLSTATE: Base table or view not found: 1146 Table &#039;combu.adminaccount&#039; doesn&#039;t exist)</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1887</link>
                        <pubDate>Tue, 19 Mar 2024 10:16:52 +0000</pubDate>
                        <description><![CDATA[@skaredcreations *****   You can use this
EDIT BY @skaredcreations: removed the email address for security reason]]></description>
                        <content:encoded><![CDATA[<p>@skaredcreations *****   You can use this</p>
<p>EDIT BY @skaredcreations: removed the email address for security reason</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>simon</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1887</guid>
                    </item>
				                    <item>
                        <title>RE: Error creating the default admin account (SQLSTATE: Base table or view not found: 1146 Table &#039;combu.adminaccount&#039; doesn&#039;t exist)</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1886</link>
                        <pubDate>Tue, 19 Mar 2024 10:02:32 +0000</pubDate>
                        <description><![CDATA[Well, this is strange. I&#039;ll contact you privately by email, there&#039;s no reason for the application to stop working unless something happened on the system (meanwhile check also the disk free ...]]></description>
                        <content:encoded><![CDATA[<p>Well, this is strange. I'll contact you privately by email, there's no reason for the application to stop working unless something happened on the system (meanwhile check also the disk free space, if it's a VPS/private server).</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>Skared Creations</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1886</guid>
                    </item>
				                    <item>
                        <title>RE: Error creating the default admin account (SQLSTATE: Base table or view not found: 1146 Table &#039;combu.adminaccount&#039; doesn&#039;t exist)</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1885</link>
                        <pubDate>Tue, 19 Mar 2024 09:29:00 +0000</pubDate>
                        <description><![CDATA[@skaredcreations  THe problem is , I  set  all config 2 weeks ago,and  I&#039;ve used this server every day  from 2 weeks ago ,  everything is normal in this server , and just This morning ,  THi...]]></description>
                        <content:encoded><![CDATA[@skaredcreations  THe problem is , I  set  all config 2 weeks ago,and  I've used this server every day  from 2 weeks ago ,  everything is normal in this server , and just This morning ,  THis error appear,]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>simon</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1885</guid>
                    </item>
				                    <item>
                        <title>RE: Error creating the default admin account (SQLSTATE: Base table or view not found: 1146 Table &#039;combu.adminaccount&#039; doesn&#039;t exist)</title>
                        <link>https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1884</link>
                        <pubDate>Tue, 19 Mar 2024 08:20:11 +0000</pubDate>
                        <description><![CDATA[The error is pretty clear, it seems that the tables don&#039;t exist in the database specified in the configuration. Did you verify that the database and tables exist (including the correct lette...]]></description>
                        <content:encoded><![CDATA[<p>The error is pretty clear, it seems that the tables don't exist in the database specified in the configuration. Did you verify that the database and tables exist (including the correct lettercase naming and table name prefix that you have set in the config)?</p>
<p>The tables (and their fields) must be correctly named (for example "Account" and not "account"), if they're not (it may happen on Windows machine running MySql) then you need to enable the case-sensitive option on your new MySql server (lower_case_table_names=2 under the section  in my.ini) as I described in the documentation <a href="https://www.skaredcreations.com/api/combu/v3/page_server.html#sec_server_local" target="_blank" rel="noopener">here</a> for MySql on Windows machines.</p>]]></content:encoded>
						                            <category domain="https://www.skaredcreations.com/wp/community/"></category>                        <dc:creator>Skared Creations</dc:creator>
                        <guid isPermaLink="true">https://www.skaredcreations.com/wp/community/combu/error-creating-the-default-admin-account-sqlstate42s02-base-table-or-view-not-found-1146-table-combu-adminaccount-doesnt-exist/#post-1884</guid>
                    </item>
							        </channel>
        </rss>
		