check_legacy_password
to true
.
$dPconfig['check_legacy_password'] = true;
php.ini
file. However, your modifications will likely go beyond simply tweeking the upload_max_filesize
variable.php.ini
modifications used to get a 11mb+ upload to function:You may also find it necessary to modify theupload_max_filesize = 20M
; DEFAULT is 2Mmax_execution_time = 300
; DEFAULT is 30 [seconds]post_max_size = 12M
; DEFAULT is 8M
memory_limit
Resource Limit, but this shouldn't be an issue if you have good bandwidth.upload_max_filesize
variable. However, file uploads may fail because of script timeouts exceeding max_execution_time
if you have a poor network connection between your client and server (e.g. dialup).php.ini
.<?php phpinfo(); ?>Point your browser at this file (via your web server!) and see if there are configuration entries for MySQL.
There is a line in ./index.php that looks like this:
// If you experience a 'white screen of death' or other problems, // uncomment the following line of code: //error_reporting( E_ALL );Un-comment the error reporting line to see if any error messages appear.
The project percent complete is calculated on a weighed average of the task durations. Therefore, a project may not be 50% complete even if it had two tasks at 50% complete but they were of different durations. If no tasks have any duration then the project will always show 0% complete.
If you are wanting to use the translation management facilities, thelocales/{country code}
directory and all the files within this diectory (the *.inc files) will need to have the correct permissions under a POSIX based system to allow the web-server to write to these directories.
If all else fails then post your problem on the SourceForge forum or Tracker. However, to help out we remote developers, please include the following information:
Please describe the problem as best you can. Try not to say "The contacts links are broken". Something like "When I click on the letters on the Contacts index page, it takes me to the user admin list." would be much better and helps us home in on the problems a lot quicker.
Another example might be "When I try and edit a project I get the error 'create a company first'". The critical piece of information missing here is the fact the dotProject user only has READ-ONLY permissions to the Projects module.