Troubleshooting Tiki on IIS | |
|
GD library in Windows | |
Many functionalities of Tikiwiki rely on the presence of a graphical library - gd.
Some binary distributions of PHP for Windows contain this library, but some don't. Make sure you check the extensions directory and see if you can find a library called php_gd2.dll. If you don't see it there, download the full package from php.net (it's about 6 megs) and copy the dll into your extensions directory. Then edit your php.ini, and uncomment the following line:
Save the ini file, and check out the phpinfo page in your admin menu. It should show a section called GD. userpageterris — Doesn't work for me. I use ISAPI. Any ideas?
If everything's OK, you'll see a bar chart.
|
Installation bugs | |
Error message :
|
MySQL Client Error | |
Error Message:Client does not support authentication protocol requested by server; consider upgrading MySQL client This happened to me with MySQL 5.03 and PHP 4.3.10. The problem is the
SET PASSWORD FOR 'tikiuser'@'hostname' = OLD_PASSWORD('TikiPassword'); |
Fix Tiki Batch File | |
For some unknown reason, mysql (I use 4.0.15) sometimes corrupts itself. When you attempt to access Tiki Wiki you will get the error: Warning: MYSQL error: DB Error: unknown error in query:
textThis fixtiki.bat script will fix the problem. You will need to alter line 2 depending on where you have installed mysql and the Tiki database. net stop mysql cd /d c:\mysql\data\tiki del *.tmd \mysql\bin\myisamchk *.myi \mysql\bin\myisamchk -r *.myi net start mysql
|
Using LDAP | |
This thread describes how to configure LDAP. An anonymous ldap_bind will not work for all Active Directories. In lib/userslib.php, I added the following two lines: Copy to clipboard
Copy to clipboard
Copy to clipboard
|