I had also the problem of missing Captchas.
Because there were absolutely no ttf fonts on the webserver, the only solution was:
upload an arial.ttf to my webspace and use the correct path
$g_system_font_folder = '/usr/xxxx/myurl/fonts/';
$g_font_per_captcha = 'arial.ttf';
then it worked.
Search found 3 matches
- 15 Jan 2013, 06:35
- Forum: Help
- Topic: Mantis signup Captcha image failed to load
- Replies: 9
- Views: 15644
- 22 Feb 2005, 19:36
- Forum: Help
- Topic: User-DB of Mantis useable with Apache Auth?
- Replies: 1
- Views: 9163
SOLVED!!!!!!!!!!!!!!
When you use the mod:
http://modauthmysql.sourceforge.net/
compile it like this:
/usr/local/apache/bin/apxs \
-c -I/usr/local/mysql/include \
-L/usr/local/mysql/lib/mysql \
-lmysqlclient -lm mod_auth_mysql.c
and copy it to apache2
cp mod_auth_mysql.so /usr/local/apache2/extmodules/
and load it ...
http://modauthmysql.sourceforge.net/
compile it like this:
/usr/local/apache/bin/apxs \
-c -I/usr/local/mysql/include \
-L/usr/local/mysql/lib/mysql \
-lmysqlclient -lm mod_auth_mysql.c
and copy it to apache2
cp mod_auth_mysql.so /usr/local/apache2/extmodules/
and load it ...
- 14 Feb 2005, 20:54
- Forum: Help
- Topic: User-DB of Mantis useable with Apache Auth?
- Replies: 1
- Views: 9163
User-DB of Mantis useable with Apache Auth?
I'm trying to use the UserDB of Mantis with Apache authentification to use mantis as master-user-db.
Mantis stores my passwords in md5 currently md5(password);
I tried auth_digest but found that it's not possible because digest encodes the password like this:
md5(user:realm:password) not like ...
Mantis stores my passwords in md5 currently md5(password);
I tried auth_digest but found that it's not possible because digest encodes the password like this:
md5(user:realm:password) not like ...