MyBB Community Forums

Full Version: CoderMe Donation v6.0.0
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
(2019-02-11, 02:03 PM)tera Wrote: [ -> ]Yes, it is.

I took the servers down, for sometime. (thats why coderme.com is not online)

you can use this thread for support, also can use github.

ok, Can you tell me which themes support this plugin? Also, where can you get the paid version? All the links I've seen are dead.
(2019-02-26, 01:27 PM)knobblywobbly Wrote: [ -> ]
(2019-02-11, 02:03 PM)tera Wrote: [ -> ]Yes, it is.

I took the servers down, for sometime. (thats why coderme.com is not online)

you can use this thread for support, also can use github.

ok, Can you tell me which themes support this plugin? Also, where can you get the paid version? All the links I've seen are dead.

Most themes should be able to accommodate this plugin.

However, the links are down. Supposedly, the author knows about this.
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'rows FROM mybb_settinggroups' at line 1
Query:
SELECT COUNT(*) as rows FROM mybb_settinggroups
Please contact the MyBB Group for technical support.
(2019-03-29, 07:52 AM)kuttysoft Wrote: [ -> ]MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'rows FROM mybb_settinggroups' at line 1
Query:
SELECT COUNT(*) as rows FROM mybb_settinggroups
Please contact the MyBB Group for technical support.

In inc/plugins/naoardonate.php  search for rows and replace it with rose

or anything else 

just void Mariadb keywords

look here instead https://community.mybb.com/thread-84084-...pid1328060
Where can I buy the gold version? Links are down.. Sadly.
(2019-04-22, 03:13 PM)Hugo220 Wrote: [ -> ]Where can I buy the gold version? Links are down.. Sadly.

I'll try to bring up the website again soon..
(2019-03-31, 03:58 PM)tera Wrote: [ -> ]
(2019-03-29, 07:52 AM)kuttysoft Wrote: [ -> ]MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'rows FROM mybb_settinggroups' at line 1
Query:
SELECT COUNT(*) as rows FROM mybb_settinggroups
Please contact the MyBB Group for technical support.

In inc/plugins/naoardonate.php  search for rows and replace it with rose

or anything else 

just void Mariadb keywords

good plugin. but unfortunately a problem arises. and my problem not solved

install -> problem -> cancel installation -> delete from server
Quote:... a problem arises. and my problem not solved
what exactly is that problem ?
I've tried it as recommended by Tera. but the plugin still can't be used

(2019-04-26, 01:23 PM).m. Wrote: [ -> ]
Quote:... a problem arises. and my problem not solved
what exactly is that problem ?

the problem is....
(2019-03-29, 07:52 AM)kuttysoft Wrote: [ -> ]MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'rows FROM mybb_settinggroups' at line 1
Query:
SELECT COUNT(*) as rows FROM mybb_settinggroups
Please contact the MyBB Group for technical support.
I do not know. whether the entire word rows must be replaced with rose or not. but I tried it, but it still failed. plugin cannot be used / installed  Confused
The trouble is rows, which is a reserved keyword with MariaDB.

You have to change 2 lines in the plugin (238 and 239)

Original
$query = $db->simple_select("settinggroups", "COUNT(*) as rows");
$rows = $db->fetch_field($query, "rows");

new
$query = $db->simple_select("settinggroups", "COUNT(*) as nbrows");
$rows = $db->fetch_field($query, "nbrows");
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49