I have phpMyAdmin and OTRS running simultaneously. You may need mod_php, but
virtual hosts? I don't think so.

Alias /pmyadmin /usr/share/phpmyadmin

<Directory /usr/share/phpmyadmin>
        Options FollowSymLinks
        DirectoryIndex index.php

        <IfModule mod_php5.c>
                AddType application/x-httpd-php .php

                php_flag magic_quotes_gpc Off
                php_flag track_vars On
                php_flag register_globals Off
                php_value include_path .
        </IfModule>

</Directory>

# Authorize for setup
<Directory /usr/share/phpmyadmin/setup>
    <IfModule mod_authn_file.c>
    AuthType Basic
    AuthName "phpMyAdmin Setup"
    AuthUserFile /etc/phpmyadmin/htpasswd.setup
    </IfModule>
    Require valid-user
</Directory>

# Disallow web access to directories that don't need it
<Directory /usr/share/phpmyadmin/libraries>
    Order Deny,Allow
    Deny from All
</Directory>
<Directory /usr/share/phpmyadmin/setup/lib>
    Order Deny,Allow
    Deny from All
</Directory>


On Mon, Jan 10, 2011 at 11:00 AM, Andrew Meyer <[email protected]
> wrote:

> I need some advice on how to setup my OTRS 3.0.4 server.  I need to be able
> to have OTRS, and phpMyAdmin running on the server.  I was thinking I would
> need to setup vhosts in apache, but I’m not sure where to start…
>
>
>
> There also maybe 1 other server running on this.  Am I moving in the right
> direction?
>
>
>
> If someone can look at this and give me some ideas that would be great, I
> know this isn’t apache support…
>
> http://pastebin.com/emZWXJ5j
>
>
>
>
>
> Thanks,
>
>
>
> Andrew Meyer
>
> [email protected]
>
> Unix Systems Administrator
>
> Precision Practice Management
>
> 689 Craig Rd.
>
> Saint Louis, MO 63141
>
> 314-787-0681 (Main Line)
>
> 314-881-5265 (Direct)
>
> 314-881-5365 (Fax)
>
> 314-565-0868 (cell)
>
>
>
> After Hours Emergency  314-576-9146
>
>
>
> ---------------------------------------------------------------------
> 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
>
---------------------------------------------------------------------
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

Reply via email to