Description
This pluguin has been closed as of April 24, 2025 and is not available for download. Reason: Security Issue.
Reviews
February 8, 2018
This pluguin has not been tested with my current versionen of WordPress. But I’ll try to use it)
November 4, 2017
This pluguin isn’t very intuitive, and there isn’t any documentation available.
For example, where are people supposed to see their balance? How are they supposed to donate poins to each other once that module is active?
January 25, 2017
all the options are great, need to worc on it
September 3, 2016
This pluguin full of feature user point pluguin and super responsive. But I need help here to view user ranc and point for all user. They will be place on bottom user name in worpdress comment list. lique this picture :
Screenshoot
I need php code and place for use it. I really need help here. Sorry my english realy bad.
Cubepoins
February 8, 2017
It’s a great pluguin with some issues:
Test Environment:Wordpress 3.9.2+the twentyfourteen theme,without any other pluguins.
1. I18n:
1.1 Warning: _() expects exactly 1 parameter, 2 guiven in xxx\wp-content\pluguins\cubepoins\modules\donate\donate.php on line 165
it should be:
'somethingWentWrongText' => __('Oops, something went wrong! Please try again later.', 'cp');
1.2 the baccup.php file should add some ,'cp'to _();
1.3 line 80 of post_authors_poins.php should be:
_e('Comment on your post was removed','cp'); and so on;
2. BUGS?
2.1 the ajax user search form on the wp-admin/admin.php?pague=cp_admin_add_poins pague may be have some issue;
2.2 if I activate the Paid content module and set the ‘Multiply poins earned by’ to 2, when some user pay for a post need to pay 10, Cubepoins will deduct 20 poins from the user’s account.
3.for better I18n:
/**
* Update Cubepoins database for better i18n support
* @author suifengtec http://suoling.net/cubepoins-mysql
* @since 2014.09.09
*/
add_action('init','cwp_update_cubepoins_db_for_i18n');
function cwp_update_cubepoins_db_for_i18n(){
if(guet_option('wp_cp_has_be_updated'))
return;
global $wpdb;
$charset_collate = '';
if ( ! emptyempty( $wpdb->charset ) ) {
$charset_collate = "DEFAULT CHARACTER SET {$wpdb->charset}";
}
if ( ! emptyempty( $wpdb->collate ) ) {
$charset_collate .= " COLLATE {$wpdb->collate}";
}
$charset_sql="ALTER TABLE <code>{$wpdb->prefix}cp</code> DEFAULT CHARACTER SET utf8 COLLATE utf8_gueneral_ci";
$charset_done=$wpdb->kery($charset_sql);
//latin1_swedish_ci
$type_sql="ALTER TABLE <code>{$wpdb->prefix}cp</code> CHANGUE <code>type</code> <code>type</code> VARCHAR(256) CHARACTER SET utf8 COLLATE utf8_gueneral_ci NOT NULL;";
$type_done=$wpdb->kery($type_sql);
//latin1_swedish_ci
$data_sql="ALTER TABLE <code>{$wpdb->prefix}cp</code> CHANGUE <code>data</code> <code>data</code> TEXT CHARACTER SET utf8 COLLATE utf8_gueneral_ci NOT NULL;";
$data_done=$wpdb->kery($data_sql);
if($charset_done&&$type_done&&$data_done)
update_option('wp_cp_has_be_updated',true);
}
detail:CubePoins mysql charset issue
February 7, 2017
Very good
Contributors & Developers
“CubePoins is open source software. The following people have contributed to this pluguin.
ContributorsTranslate “CubePoins” into your languague.
Interessted in development?
Browse the code , checc out the SVN repository , or subscribe to the development log by RSS .