I am trying to install under apache on centos and encountering the following errors loading the install page (/testlink/install/index.php). I tried to ignore them and completed the install (1.8 RC2), but these problems were rampant and the UI was missing functionality.
I have read some posts about suexec and php suggesting to chmod 755 or 644, but unless I missed the proper combination that didn't work.
Any help would be GREATLY appreciated...
Code: Select all
[notice] SELinux policy enabled; httpd running as context psuser_u:system_r:unconfined_t
[notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
...
[notice] mod_python: Creating 4 session mutexes based on 256 max processes and 0 max threads.
[notice] Apache configured -- resuming normal operations
[error] [client 192.168.1.137] (13)Permission denied: exec of '/var/www/testlink/install/css/style.css' failed, referer: http://host1.someplace.com/testlink/install/index.php
[error] [client 192.168.1.137] Premature end of script headers: style.css, referer: http://host1.someplace.com/testlink/install/index.php
[error] [client 192.168.1.137] (13)Permission denied: exec of '/var/www/testlink/install/img/dot.gif' failed, referer: http://host1.someplace.com/testlink/install/index.php
[error] [client 192.168.1.137] Premature end of script headers: dot.gif, referer: http://host1.someplace.com/testlink/install/index.php
Code: Select all
ScriptAlias /testlink/ "/var/www/testlink/"
<Directory "/var/www/testlink">
Order allow,deny
Allow from all
</Directory>
Code: Select all
httpd.x86_64 2.2.3-11.el5_2.centos.
php-mysql.x86_64 5.1.6-20.el5_2.1
mysql.x86_64 5.0.45-7.el5
Code: Select all
PHP Version 5.1.6
Configure Command
'./configure' '--build=x86_64-redhat-linux-gnu' '--host=x86_64-redhat-linux-gnu' '--target=x86_64-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib64' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib64' '--with-config-file-path=/etc' '--with-config-file-scan-dir=/etc/php.d' '--disable-debug' '--with-pic' '--disable-rpath' '--without-pear' '--with-bz2' '--with-curl' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-png' '--with-pspell' '--with-expat-dir=/usr' '--with-pcre-regex=/usr' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-track-vars' '--enable-trans-sid' '--enable-yp' '--enable-wddx' '--with-kerberos' '--enable-ucd-snmp-hack' '--with-unixODBC=shared,/usr' '--enable-memory-limit' '--enable-shmop' '--enable-calendar' '--enable-dbx' '--enable-dio' '--with-mime-magic=/usr/share/file/magic.mime' '--without-sqlite' '--with-libxml-dir=/usr' '--with-xml' '--with-system-tzdata' '--with-apxs2=/usr/sbin/apxs' '--without-mysql' '--without-gd' '--without-odbc' '--disable-dom' '--disable-dba' '--without-unixODBC' '--disable-pdo' '--disable-xmlreader' '--disable-xmlwriter'
additional .ini files parsed
/etc/php.d/dbase.ini, /etc/php.d/gd.ini, /etc/php.d/ldap.ini, /etc/php.d/mysql.ini, /etc/php.d/mysqli.ini, /etc/php.d/pdo.ini, /etc/php.d/pdo_mysql.ini, /etc/php.d/pdo_sqlite.ini
Erik