Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Q
question2answer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
outils
question2answer
Commits
a741dd8c
Commit
a741dd8c
authored
Sep 06, 2017
by
Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove error suppression on constants
parent
23b1aa33
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
83 additions
and
53 deletions
+83
-53
users-edit.php
qa-include/app/users-edit.php
+10
-2
users.php
qa-include/app/users.php
+7
-2
maxima.php
qa-include/db/maxima.php
+40
-37
qa-base.php
qa-include/qa-base.php
+17
-9
string.php
qa-include/util/string.php
+9
-3
No files found.
qa-include/app/users-edit.php
View file @
a741dd8c
...
...
@@ -24,8 +24,16 @@ if (!defined('QA_VERSION')) { // don't allow this page to be requested directly
exit
;
}
@
define
(
'QA_MIN_PASSWORD_LEN'
,
4
);
@
define
(
'QA_NEW_PASSWORD_LEN'
,
8
);
// when resetting password
if
(
!
defined
(
'QA_MIN_PASSWORD_LEN'
))
{
define
(
'QA_MIN_PASSWORD_LEN'
,
4
);
}
if
(
!
defined
(
'QA_NEW_PASSWORD_LEN'
)){
/**
* @deprecated This was the length of the reset password generated by Q2A. No longer used.
*/
define
(
'QA_NEW_PASSWORD_LEN'
,
8
);
}
/**
...
...
qa-include/app/users.php
View file @
a741dd8c
...
...
@@ -47,8 +47,13 @@ define('QA_FIELD_FLAGS_MULTI_LINE', 1);
define
(
'QA_FIELD_FLAGS_LINK_URL'
,
2
);
define
(
'QA_FIELD_FLAGS_ON_REGISTER'
,
4
);
@
define
(
'QA_FORM_EXPIRY_SECS'
,
86400
);
// how many seconds a form is valid for submission
@
define
(
'QA_FORM_KEY_LENGTH'
,
32
);
if
(
!
defined
(
'QA_FORM_EXPIRY_SECS'
))
{
// how many seconds a form is valid for submission
define
(
'QA_FORM_EXPIRY_SECS'
,
86400
);
}
if
(
!
defined
(
'QA_FORM_KEY_LENGTH'
))
{
define
(
'QA_FORM_KEY_LENGTH'
,
32
);
}
if
(
QA_FINAL_EXTERNAL_USERS
)
{
...
...
qa-include/db/maxima.php
View file @
a741dd8c
...
...
@@ -25,43 +25,46 @@ if (!defined('QA_VERSION')) { // don't allow this page to be requested directly
}
// Maximum column sizes - any of these can be defined in qa-config.php to override the defaults below,
// but you need to do so before creating the database, otherwise it's too late.
$maximaDefaults
=
array
(
// Maximum column sizes - any of these can be defined in qa-config.php to override the defaults below,
// but you need to do so before creating the database, otherwise it's too late.
'QA_DB_MAX_EMAIL_LENGTH'
=>
80
,
'QA_DB_MAX_HANDLE_LENGTH'
=>
20
,
'QA_DB_MAX_TITLE_LENGTH'
=>
800
,
'QA_DB_MAX_CONTENT_LENGTH'
=>
12000
,
'QA_DB_MAX_FORMAT_LENGTH'
=>
20
,
'QA_DB_MAX_TAGS_LENGTH'
=>
800
,
'QA_DB_MAX_NAME_LENGTH'
=>
40
,
'QA_DB_MAX_WORD_LENGTH'
=>
80
,
'QA_DB_MAX_CAT_PAGE_TITLE_LENGTH'
=>
80
,
'QA_DB_MAX_CAT_PAGE_TAGS_LENGTH'
=>
200
,
'QA_DB_MAX_CAT_CONTENT_LENGTH'
=>
800
,
'QA_DB_MAX_WIDGET_TAGS_LENGTH'
=>
800
,
'QA_DB_MAX_WIDGET_TITLE_LENGTH'
=>
80
,
'QA_DB_MAX_OPTION_TITLE_LENGTH'
=>
40
,
'QA_DB_MAX_PROFILE_TITLE_LENGTH'
=>
40
,
'QA_DB_MAX_PROFILE_CONTENT_LENGTH'
=>
8000
,
'QA_DB_MAX_CACHE_AGE'
=>
86400
,
'QA_DB_MAX_BLOB_FILE_NAME_LENGTH'
=>
255
,
'QA_DB_MAX_META_TITLE_LENGTH'
=>
40
,
'QA_DB_MAX_META_CONTENT_LENGTH'
=>
8000
,
@
define
(
'QA_DB_MAX_EMAIL_LENGTH'
,
80
);
@
define
(
'QA_DB_MAX_HANDLE_LENGTH'
,
20
);
@
define
(
'QA_DB_MAX_TITLE_LENGTH'
,
800
);
@
define
(
'QA_DB_MAX_CONTENT_LENGTH'
,
12000
);
@
define
(
'QA_DB_MAX_FORMAT_LENGTH'
,
20
);
@
define
(
'QA_DB_MAX_TAGS_LENGTH'
,
800
);
@
define
(
'QA_DB_MAX_NAME_LENGTH'
,
40
);
@
define
(
'QA_DB_MAX_WORD_LENGTH'
,
80
);
@
define
(
'QA_DB_MAX_CAT_PAGE_TITLE_LENGTH'
,
80
);
@
define
(
'QA_DB_MAX_CAT_PAGE_TAGS_LENGTH'
,
200
);
@
define
(
'QA_DB_MAX_CAT_CONTENT_LENGTH'
,
800
);
@
define
(
'QA_DB_MAX_WIDGET_TAGS_LENGTH'
,
800
);
@
define
(
'QA_DB_MAX_WIDGET_TITLE_LENGTH'
,
80
);
@
define
(
'QA_DB_MAX_OPTION_TITLE_LENGTH'
,
40
);
@
define
(
'QA_DB_MAX_PROFILE_TITLE_LENGTH'
,
40
);
@
define
(
'QA_DB_MAX_PROFILE_CONTENT_LENGTH'
,
8000
);
@
define
(
'QA_DB_MAX_CACHE_AGE'
,
86400
);
@
define
(
'QA_DB_MAX_BLOB_FILE_NAME_LENGTH'
,
255
);
@
define
(
'QA_DB_MAX_META_TITLE_LENGTH'
,
40
);
@
define
(
'QA_DB_MAX_META_CONTENT_LENGTH'
,
8000
);
// How many records to retrieve for different circumstances. In many cases we retrieve more records than we
// end up needing to display once we know the value of an option. Wasteful, but allows one query per page.
'QA_DB_RETRIEVE_QS_AS'
=>
50
,
'QA_DB_RETRIEVE_TAGS'
=>
200
,
'QA_DB_RETRIEVE_USERS'
=>
200
,
'QA_DB_RETRIEVE_ASK_TAG_QS'
=>
500
,
'QA_DB_RETRIEVE_COMPLETE_TAGS'
=>
1000
,
'QA_DB_RETRIEVE_MESSAGES'
=>
20
,
// Keep event streams trimmed - not worth storing too many events per question because we only display the
// most recent event for each question, that has not been invalidated due to hiding/unselection/etc...
'QA_DB_MAX_EVENTS_PER_Q'
=>
5
,
);
// How many records to retrieve for different circumstances. In many cases we retrieve more records than we
// end up needing to display once we know the value of an option. Wasteful, but allows one query per page.
@
define
(
'QA_DB_RETRIEVE_QS_AS'
,
50
);
@
define
(
'QA_DB_RETRIEVE_TAGS'
,
200
);
@
define
(
'QA_DB_RETRIEVE_USERS'
,
200
);
@
define
(
'QA_DB_RETRIEVE_ASK_TAG_QS'
,
500
);
@
define
(
'QA_DB_RETRIEVE_COMPLETE_TAGS'
,
1000
);
@
define
(
'QA_DB_RETRIEVE_MESSAGES'
,
20
);
// Keep event streams trimmed - not worth storing too many events per question because we only display the
// most recent event for each question, that has not been invalidated due to hiding/unselection/etc...
@
define
(
'QA_DB_MAX_EVENTS_PER_Q'
,
5
);
foreach
(
$maximaDefaults
as
$key
=>
$def
)
{
if
(
!
defined
(
$key
))
{
define
(
$key
,
$def
);
}
}
qa-include/qa-base.php
View file @
a741dd8c
...
...
@@ -241,15 +241,23 @@ function qa_initialize_constants_2()
{
// Default values if not set in qa-config.php
@
define
(
'QA_COOKIE_DOMAIN'
,
''
);
@
define
(
'QA_HTML_COMPRESSION'
,
true
);
@
define
(
'QA_MAX_LIMIT_START'
,
19999
);
@
define
(
'QA_IGNORED_WORDS_FREQ'
,
10000
);
@
define
(
'QA_ALLOW_UNINDEXED_QUERIES'
,
false
);
@
define
(
'QA_OPTIMIZE_LOCAL_DB'
,
true
);
// no longer used
@
define
(
'QA_OPTIMIZE_DISTANT_DB'
,
false
);
@
define
(
'QA_PERSISTENT_CONN_DB'
,
false
);
@
define
(
'QA_DEBUG_PERFORMANCE'
,
false
);
$defaults
=
array
(
'QA_COOKIE_DOMAIN'
=>
''
,
'QA_HTML_COMPRESSION'
=>
true
,
'QA_MAX_LIMIT_START'
=>
19999
,
'QA_IGNORED_WORDS_FREQ'
=>
10000
,
'QA_ALLOW_UNINDEXED_QUERIES'
=>
false
,
'QA_OPTIMIZE_LOCAL_DB'
=>
true
,
'QA_OPTIMIZE_DISTANT_DB'
=>
false
,
'QA_PERSISTENT_CONN_DB'
=>
false
,
'QA_DEBUG_PERFORMANCE'
=>
false
,
);
foreach
(
$defaults
as
$key
=>
$def
)
{
if
(
!
defined
(
$key
))
{
define
(
$key
,
$def
);
}
}
// Start performance monitoring
...
...
qa-include/util/string.php
View file @
a741dd8c
...
...
@@ -812,12 +812,18 @@ function qa_string_matches_one($string, $matches)
// Some static definitions and initialization
// Notable exclusions here: $ & - _ # % @
@
define
(
'QA_PREG_INDEX_WORD_SEPARATOR'
,
'[\n\r\t\ \!\"\\\'\(\)\*\+\,\.\/\:\;\<\=\>\?\[\\\\\]\^\`\{\|\}\~]'
);
if
(
!
defined
(
'QA_PREG_INDEX_WORD_SEPARATOR'
))
{
define
(
'QA_PREG_INDEX_WORD_SEPARATOR'
,
'[\n\r\t\ \!\"\\\'\(\)\*\+\,\.\/\:\;\<\=\>\?\[\\\\\]\^\`\{\|\}\~]'
);
}
// Asterisk (*) excluded here because it's used to match anything
@
define
(
'QA_PREG_BLOCK_WORD_SEPARATOR'
,
'[\n\r\t\ \!\"\\\'\(\)\+\,\.\/\:\;\<\=\>\?\[\\\\\]\^\`\{\|\}\~\$\&\-\_\#\%\@]'
);
if
(
!
defined
(
'QA_PREG_BLOCK_WORD_SEPARATOR'
))
{
define
(
'QA_PREG_BLOCK_WORD_SEPARATOR'
,
'[\n\r\t\ \!\"\\\'\(\)\+\,\.\/\:\;\<\=\>\?\[\\\\\]\^\`\{\|\}\~\$\&\-\_\#\%\@]'
);
}
// Pattern to match Chinese/Japanese/Korean ideographic symbols in UTF-8 encoding
@
define
(
'QA_PREG_CJK_IDEOGRAPHS_UTF8'
,
'\xE2[\xBA-\xBF][\x80-\xBF]|\xE3[\x80\x88-\xBF][\x80-\xBF]|[\xE4-\xE9][\x80-\xBF][\x80-\xBF]|\xEF[\xA4-\xAB][\x80-\xBF]|\xF0[\xA0-\xAF][\x80-\xBF][\x80-\xBF]'
);
if
(
!
defined
(
'QA_PREG_CJK_IDEOGRAPHS_UTF8'
))
{
define
(
'QA_PREG_CJK_IDEOGRAPHS_UTF8'
,
'\xE2[\xBA-\xBF][\x80-\xBF]|\xE3[\x80\x88-\xBF][\x80-\xBF]|[\xE4-\xE9][\x80-\xBF][\x80-\xBF]|\xEF[\xA4-\xAB][\x80-\xBF]|\xF0[\xA0-\xAF][\x80-\xBF][\x80-\xBF]'
);
}
qa_string_initialize
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment