Hi all,
I was trying to install this on a server where I just setup a subversion repository. I got this error in my apache error log:
PHP Parse error: parse error, unexpected ')', expecting '(' in
/var/www/html/svnmanager/prado- 2.0.1/prado.php on line 85
I guess I realized that I had missed one of the requirements, php5. Is it at all possible for this app to run using php4? This server is running enterprise linux (CentOS) and I dont want to install the newer version. Thanks in advance.
C
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Nevermind, found a solutiong. Install the packages php5-cgi. Do not install libapache-mod-php5 or the like. Then go to the $path-to-svnmanager/svnmanager and create the file .htaccess . Put these lines in it:
AddHandler php5-cgi .php
AddType php5-cgi .php
Action php5-cgi /cgi-bin/php5
and save. Done.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
I was trying to install this on a server where I just setup a subversion repository. I got this error in my apache error log:
PHP Parse error: parse error, unexpected ')', expecting '(' in
/var/www/html/svnmanager/prado- 2.0.1/prado.php on line 85
I guess I realized that I had missed one of the requirements, php5. Is it at all possible for this app to run using php4? This server is running enterprise linux (CentOS) and I dont want to install the newer version. Thanks in advance.
C
I'm in the same boat. I can't upgrade php because it will break many many things. Can no one help us on this one?
Nevermind, found a solutiong. Install the packages php5-cgi. Do not install libapache-mod-php5 or the like. Then go to the $path-to-svnmanager/svnmanager and create the file .htaccess . Put these lines in it:
AddHandler php5-cgi .php
AddType php5-cgi .php
Action php5-cgi /cgi-bin/php5
and save. Done.