
Ok, I finally got stuff running, once I got a chance to work on it again. I had to install Apache::DBI through apt-get, it wouldn't work through the CPAN interface for some reason. Anyway, I can now log in, and move around, but nothing shows up. For instance, I clicked on Admin so I could add a user, but the screen didn't change. Well, it reloaded, trying to access the Admin area, but otherwise it looked exactly the same as it did before. Do you understand what I mean, and have an idea what's going on? -- Brian Ronk System Administrator BookMasters, Inc (419)589-5100 x1108

since you're always just accessing index.pl, and the page is determined by the query string (eg: index.pl?Action=Admin), it sounds to me like otrs isnt reading the query string for some reason. i have no idea what would cause that though. Brian Ronk wrote:
Ok, I finally got stuff running, once I got a chance to work on it again. I had to install Apache::DBI through apt-get, it wouldn't work through the CPAN interface for some reason. Anyway, I can now log in, and move around, but nothing shows up. For instance, I clicked on Admin so I could add a user, but the screen didn't change. Well, it reloaded, trying to access the Admin area, but otherwise it looked exactly the same as it did before. Do you understand what I mean, and have an idea what's going on?

Hi Brian, On Fri, Jul 01, 2005 at 03:39:52PM -0400, Brian Ronk wrote:
Ok, I finally got stuff running, once I got a chance to work on it again. I had to install Apache::DBI through apt-get, it wouldn't work through the CPAN interface for some reason. Anyway, I can now log in, and move around, but nothing shows up. For instance, I clicked on Admin so I could add a user, but the screen didn't change. Well, it reloaded, trying to access the Admin area, but otherwise it looked exactly the same as it did before. Do you understand what I mean, and have an idea what's going on?
Looks like a mod_perl problem. With older cvs versions of OTRS and on some systems I saw the same problem before. But last week I got OTRS 2.0 cvs running on a fresh sarge installation and on debian unstable. - What debian version are you using? - What OTRS version are you using? - What mod_perl and apache version are you using?
Brian Ronk
Best regards, Christian -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Manage your communication!

Debian: 3.1 (Sarge) OTRS: 1.3.2 Apache: 2.0.54-4 mod_perl2: 1.999.21-1 Should I maybe try the OTRS 2 beta? Or is there a known problem with the mod_perl2? Brian Ronk System Administrator BookMasters, Inc (419)589-5100 x1108 Christian Schoepplein wrote:
Hi Brian,
On Fri, Jul 01, 2005 at 03:39:52PM -0400, Brian Ronk wrote:
Ok, I finally got stuff running, once I got a chance to work on it again. I had to install Apache::DBI through apt-get, it wouldn't work through the CPAN interface for some reason. Anyway, I can now log in, and move around, but nothing shows up. For instance, I clicked on Admin so I could add a user, but the screen didn't change. Well, it reloaded, trying to access the Admin area, but otherwise it looked exactly the same as it did before. Do you understand what I mean, and have an idea what's going on?
Looks like a mod_perl problem. With older cvs versions of OTRS and on some systems I saw the same problem before. But last week I got OTRS 2.0 cvs running on a fresh sarge installation and on debian unstable.
- What debian version are you using? - What OTRS version are you using? - What mod_perl and apache version are you using?
Brian Ronk
Best regards, Christian
------------------------------------------------------------------------
_______________________________________________ OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs Support oder Consulting für Ihr OTRS System? => http://www.otrs.de/

Hi!
Debian: 3.1 (Sarge) OTRS: 1.3.2 Apache: 2.0.54-4 mod_perl2: 1.999.21-1
As I update my systems from time to time, this are the versions I have currently working in my setup: - Debian Sarge (unstable, hasn't been upgraded to final yet) - Apache2 v2.0.53-5 - mod_perl2 v1.999.21-1 - perl v5.8.4-8
Should I maybe try the OTRS 2 beta? Or is there a known problem with the mod_perl2?
I think that I've sent this before, but read this post: http://lists.otrs.org/pipermail/otrs/2005-February/007379.html To make OTRS works with mod_perl2, I think that you must use "use Apache::compat;" in your "apache2-startup.pl" mod_perl2 startup script. At least that seems to do the trick with all the versions of Apache2-mod_perl2 that I've used so far (don't know how many they are). As a side note, be sure that there are no Apache2 processes in memory. When I tested OTRS with mod_perl2, sometimes Apache2 processes where left in memory and I had to "kill -9" them manually in order to make it work correctly (Apache2 seemed to start ok, but it didn't behave correctly). I haven't used 2.0 yet, so I don't know if you'll have the same problems or not with it. Regards, --- Victor R. Rodriguez Departamento de Sistemas Valoraciones del Mediterraneo, S.A. ---

Hi Brian and Victor, On Wed, Jul 06, 2005 at 10:33:11AM +0200, Victor Rodriguez Cortes wrote:
Debian: 3.1 (Sarge) OTRS: 1.3.2 Apache: 2.0.54-4 mod_perl2: 1.999.21-1
As I update my systems from time to time, this are the versions I have currently working in my setup:
- Debian Sarge (unstable, hasn't been upgraded to final yet) - Apache2 v2.0.53-5 - mod_perl2 v1.999.21-1
I got 2.0 cvs running with mod_perl2-1.999.x on debian 3.1 stable and mod_perl2-2.x on unstable. I never tryed it with OTRS 1.3.x or earlier versions.
Should I maybe try the OTRS 2 beta? Or is there a known problem with the mod_perl2?
The problem might be the CGI cpan module that is included in
every OTRS installation. Because the API of mod_perl2 changed, older
CGI cpan modules might be incompartible with mod_perl2. For that reason,
we removed this cpan module in our cvs head and newer OtRS installation
will require manual installation of the CGI cpan module. If there are
problems with OTRS and mod_perl2, I'd remove the CGI module from OTRS
directory and use the module of the linux distro.
I had to make the following things, to get OTRS running on debian 3.1
stable:
- Change the apache configuration:
-----
[...]
ScriptAlias /otrs/ "/opt/otrs/bin/cgi-bin/"
Alias /otrs-web/ "/opt/otrs/var/httpd/htdocs/"
# load all otrs modules
Perlrequire /opt/otrs/scripts/apache2-perl-startup.pl
# Apache::Reload - Reload Perl Modules when Changed on Disk
PerlModule Apache::Reload
PerlInitHandler Apache::Reload
# set mod_perl2 options
To make OTRS works with mod_perl2, I think that you must use "use >Apache::compat;" in your "apache2-startup.pl" mod_perl2 startup script. At least that >seems to do the trick with all the versions of Apache2-mod_perl2 that I've used so far
That wasn't necesary on my installation. It's a little tricky to get OTRS work with mod_perl2 on debian at the moment, but it'll work. Just take a look in the apache error log and check the messages of the startup script. Best regards, Christian -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Manage your communication!
participants (4)
-
Brian Ronk
-
Christian Schoepplein
-
Mike Conigliaro
-
Victor Rodriguez Cortes