Follow these steps:
Time Tracking
field is visible (not hidden
) on the Field Configuration.
Note that this last procedure will allow editing of closed issues. If you wish to edit only this one issue, simply reopen the issue, add time tracking, and re-close.
Administration >> Global Settings >> Workflows
and check for the Active workflow that the issue is using.
Active state
.
false
.
true
.
For my case, the project has it’s own field schema, and the ‘Time tracking’ filed was hided, after ‘show’ the ‘Time tracking’ filed, user can log work.
For more details: https://confluence.atlassian.com/display/JIRAKB/Unable+to+Log+Work
Host your code online in as many public and private repositories as you want. Free for 5 users.
Give your code a home on the web. Share what you’re working on with your colleagues, collaborators, or potential employers.
All 5 user accounts are FREE.
Checkout: https://bitbucket.org/
Use sql to delete all the spam comments quickly:
SELECT DISTINCT comment_approved FROM `x_comments`
Results:
0 – Pending
1 – approved
spam – spam
trash – trash
–delete spam & trash:
DELETE FROM `dbName`.`x_comments` WHERE comment_approved = 'spam' or comment_approved = 'trash'
--delete pending: DELETE FROM `dbName`.`x_comments` WHERE comment_approved = '0'
Modify the wp_config.php
/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de.mo to wp-content/languages and set WPLANG to ‘de’ to enable German
* language support.
*/
define (‘WPLANG’, ”);
Keep the value empty.
/**
* WordPress 语言设置,中文版本默认为中文。
*
* 本项设定能够让 WordPress 显示您需要的语言。
* wp-content/languages 内应放置同名的 .mo 语言文件。
* 要使用 WordPress 简体中文界面,只需填入 zh_CN。
*/
define(‘WPLANG’, ‘zh_CN’);
修改后控制台会有提示下载语言包.
HTTP Status 500 – com.opensymphony.module.propertyset.PropertyImplementationException: Unable to esablish a connection with the database. (error in script file line: 1 Unexpected token UNIQUE, requires COLLATION in statement [SET DATABASE UNIQUE])
type Exception report
message com.opensymphony.module.propertyset.PropertyImplementationException: Unable to esablish a connection with the database. (error in script file line: 1 Unexpected token UNIQUE, requires COLLATION in statement [SET DATABASE UNIQUE])
description The server encountered an internal error (com.opensymphony.module.propertyset.PropertyImplementationException: Unable to esablish a connection with the database. (error in script file line: 1 Unexpected token UNIQUE, requires COLLATION in statement [SET DATABASE UNIQUE])) that prevented it from fulfilling this request.
I got this Error after I use DbVisualizer to connect to JIRA HSQL database.
the HSQL driver version I’m using in DbVis is 2.2.9, but the driver in my JIRA is 1.8.0.5.
Update the JIRA_HOME/lib hsdb driver and restart the JIRA server.
Link: http://stackoverflow.com/questions/12969109/error-in-script-file-line-1-unexpected-token-unique-requires-collation-in-stat
// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.