No, but you can disable them and users can reach the max size hardly.kevinroxx wrote:Is there a way to prevent users from inserting too many smilies so an error does not occur?
Thanks
woho! Youre stil alive!shmk wrote:This is simply a message to say that I'm working on 1.0.4 with bugfixes and a iTrade like percentuage visualization other then the basic pos|neu|neg
PS: donation always encouraged
*bows*iTrade like percentuage
shmk wrote:Before inserting the "itrader like" score system I need some infos about how do you prefer it:
- do you prefer a score system (+pos -neg), a percentage (% of positive) or both
- in a score system do you want that even neutral are counted
- under user avatar in topic do you want the score, the percentage, the classical (pos|neu|neg) ,2 of them or all of them?
- in user profile do you want the score, the percentage, the classical (pos|neu|neg), 2 of them or all of them?
If you have other suggestions or any dubt, post here.
i like the % type, the pos,nega, neutral, ar for the overview..- do you prefer a score system (+pos -neg), a percentage (% of positive) or both
No, a neutral is not counted in the % cause its not a bad one, but also not a good one..in a score system do you want that even neutral are counted
i preffer the percentage..- under user avatar in topic do you want the score, the percentage, the classical (pos|neu|neg) ,2 of them or all of them?
both- in user profile do you want the score, the percentage, the classical (pos|neu|neg), 2 of them or all of them?
demon327 wrote:shmk wrote:Before inserting the "itrader like" score system I need some infos about how do you prefer it:
- do you prefer a score system (+pos -neg), a percentage (% of positive) or both
- in a score system do you want that even neutral are counted
- under user avatar in topic do you want the score, the percentage, the classical (pos|neu|neg) ,2 of them or all of them?
- in user profile do you want the score, the percentage, the classical (pos|neu|neg), 2 of them or all of them?
If you have other suggestions or any dubt, post here.i like the % type, the pos,nega, neutral, ar for the overview..- do you prefer a score system (+pos -neg), a percentage (% of positive) or both
No, a neutral is not counted in the % cause its not a bad one, but also not a good one..in a score system do you want that even neutral are counted
i preffer the percentage..- under user avatar in topic do you want the score, the percentage, the classical (pos|neu|neg) ,2 of them or all of them?
both- in user profile do you want the score, the percentage, the classical (pos|neu|neg), 2 of them or all of them?
The sorting in the next version is a little better
Code: Select all
SQL ERROR [ mysql4 ]
Table 'db240506454.SHMK_FEEDBACKCONFIG_TABLE' doesn't exist [1146]
SQL
SELECT * FROM SHMK_FEEDBACKCONFIG_TABLE
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal_mysql->sql_error()
FILE: includes/acp/acp_feedback.php
LINE: 33
CALL: dbal_mysql->sql_query()
FILE: includes/functions_module.php
LINE: 471
CALL: acp_feedback->main()
FILE: adm/index.php
LINE: 75
CALL: p_master->load_active()
Code: Select all
# Table: 'phpbb_shmk_feedback_tot'
CREATE TABLE phpbb_shmk_feedback_tot (
fb_user smallint(4) UNSIGNED DEFAULT '0' NOT NULL,
fb_pos smallint(4) UNSIGNED DEFAULT '0' NOT NULL,
fb_neg smallint(4) UNSIGNED DEFAULT '0' NOT NULL,
fb_neu smallint(4) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (fb_user)
) CHARACTER SET utf8 COLLATE utf8_bin;
# Table: 'phpbb_shmk_feedback'
CREATE TABLE phpbb_shmk_feedback (
fb_id mediumint(8) UNSIGNED NOT NULL auto_increment,
fb_to mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
fb_from mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
fb_role tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
fb_vote tinyint(1) UNSIGNED DEFAULT '2' NOT NULL,
fb_link mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
fb_comment text NOT NULL,
fb_ip varchar(40) DEFAULT '' NOT NULL,
fb_date int(11) UNSIGNED DEFAULT '0' NOT NULL,
bbcode_bitfield varchar(255) DEFAULT '' NOT NULL,
bbcode_uid varchar(8) DEFAULT '' NOT NULL,
PRIMARY KEY (fb_id),
KEY fb_to (fb_to)
) CHARACTER SET utf8 COLLATE utf8_bin;
# Table: 'phpbb_shmk_feedback_config'
CREATE TABLE phpbb_shmk_feedback_config (
fb_config varchar(255) DEFAULT '' NOT NULL,
fb_config_val varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (fb_config)
) CHARACTER SET utf8 COLLATE utf8_bin;
# Insert default config
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_minchars','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_maxchars','500');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_bbcode','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_smilies','1');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_url','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_enable','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_force','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_force_in','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_forum','');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('m_haspower','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('role_enable','1');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_best','50');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_main','10');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_worst','50');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('u_canedit','1');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('u_morethenone','0');
INSERT INTO phpbb_config(config_name,config_value) VALUES ('fb_score','0');
did you edited the file constants.php?Hadebar wrote:Is it possible something's wrong with the MySQL command?
got this error when entering the Mod configuration in ACP:
and your MySQL command in the install-file says:Code: Select all
SQL ERROR [ mysql4 ] Table 'db240506454.SHMK_FEEDBACKCONFIG_TABLE' doesn't exist [1146] SQL SELECT * FROM SHMK_FEEDBACKCONFIG_TABLE BACKTRACE FILE: includes/db/mysql.php LINE: 158 CALL: dbal_mysql->sql_error() FILE: includes/acp/acp_feedback.php LINE: 33 CALL: dbal_mysql->sql_query() FILE: includes/functions_module.php LINE: 471 CALL: acp_feedback->main() FILE: adm/index.php LINE: 75 CALL: p_master->load_active()
In the error it says "feedbackconfig" and in the SQL command it says "feedback_config".Code: Select all
# Table: 'phpbb_shmk_feedback_tot' CREATE TABLE phpbb_shmk_feedback_tot ( fb_user smallint(4) UNSIGNED DEFAULT '0' NOT NULL, fb_pos smallint(4) UNSIGNED DEFAULT '0' NOT NULL, fb_neg smallint(4) UNSIGNED DEFAULT '0' NOT NULL, fb_neu smallint(4) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (fb_user) ) CHARACTER SET utf8 COLLATE utf8_bin; # Table: 'phpbb_shmk_feedback' CREATE TABLE phpbb_shmk_feedback ( fb_id mediumint(8) UNSIGNED NOT NULL auto_increment, fb_to mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, fb_from mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, fb_role tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, fb_vote tinyint(1) UNSIGNED DEFAULT '2' NOT NULL, fb_link mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, fb_comment text NOT NULL, fb_ip varchar(40) DEFAULT '' NOT NULL, fb_date int(11) UNSIGNED DEFAULT '0' NOT NULL, bbcode_bitfield varchar(255) DEFAULT '' NOT NULL, bbcode_uid varchar(8) DEFAULT '' NOT NULL, PRIMARY KEY (fb_id), KEY fb_to (fb_to) ) CHARACTER SET utf8 COLLATE utf8_bin; # Table: 'phpbb_shmk_feedback_config' CREATE TABLE phpbb_shmk_feedback_config ( fb_config varchar(255) DEFAULT '' NOT NULL, fb_config_val varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (fb_config) ) CHARACTER SET utf8 COLLATE utf8_bin; # Insert default config INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_minchars','0'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_maxchars','500'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_bbcode','0'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_smilies','1'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_url','0'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_enable','0'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_force','0'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_force_in','0'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_forum',''); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('m_haspower','0'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('role_enable','1'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_best','50'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_main','10'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_worst','50'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('u_canedit','1'); INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('u_morethenone','0'); INSERT INTO phpbb_config(config_name,config_value) VALUES ('fb_score','0');
Or am I wrong and its another mistake I made?