![]() ![]() |
|
Technical FAQ for ConfToolBefore you contact me, please have a look at these hints. I would like to use HTTPS / a secure connection. What do I have to do?ConfTool supports https, but it is the web server that does create the secure connection. Therefore you have to modify your server accordingly, get a certificate etc. You find the information on this on the internet, e.g. http://slacksite.com/apache/certificate.html http://buecher.lingoworld.de/apache2/mod_ssl.html (in German) To use https with conftool, you just have to adapt the variable $ctconf['web/baseurl'] in etc/conftool.conf. That's it.
I still have problems sending E-MAILS with ConfTool
UPLOADING files does not work. I just get an empty document
Downloading files does not work with HTTPS and Internet ExplorerThis problem is caused by a (old but still unfixed!) bug in Microsoft Internet Explorer. It occurs if downloaded files are not being cached by MSIE and therefore the browser is unable to store the file or handle it to the associated application. ConfTool has a workaround for this bug, but if your server or php settings set some HTTP header parameters that disable the browser cache (and override the ConfTool settings), you have to do the following:
The ConfTool Pro Version (1.8 or later) has another workaround that can force http for the download of files, but this requires a setup of ConfTool for http and https at the same address.
The Uploaded files are corrupted and have the wrong size. They are about doubled in size.This is a Apache or PHP problem. Please try to locate the file php.conf which is usually in /etc/httpd/conf.d/php.conf and comment out the following lines: #<Files *.php> You might also have to add AddType application/x-httpd-php .php to httpd.conf. Restart Apache. See: http://bugs.php.net/bug.php?id=19263
Problems with PHP and MySQLIf you get "Fatal error: Call to undefined function: mysql_pconnect() in ..../conftool/lib/mysql.dbi on line XX" you probably don't have the php_mysql library loaded (required for PHP 5.x). Things to do for Windows:
If you have problems connecting to the mysql database or get wrong results, please check if the php_mysql library corresponds to the mysql version you are using. This is a quite common problem! (For example: The encoding of passwords was changed in MySQL 4.1) If you have problems connecting to the mysql database and use MySQL 4.1 or later and cannot update your PHP version you might use the function password_old() to create your database account. Instead of the commands in createDBUser.sql use the following: USE mysql; FLUSH PRIVILEGES; INSERT INTO `db` VALUES ('localhost', 'conference', 'confuser',
INSERT INTO `user` VALUES ('localhost', 'confuser', password_old('confpass'),'N','N',
FLUSH PRIVILEGES;
PHP Problems and Error MessagesIf you get: Fatal error: Call to undefined function: session_cache_limiter() in .../conftool/htdocs/index.php there may be several reasons:
If you do what you want, but always get back to the initial login page:
|
|