[SOLVED]Installing on subdomain

Moderator: crythias

Locked
newguy
Znuny newbie
Posts: 3
Joined: 31 Mar 2014, 09:33
Znuny Version: 3.3.5
Real Name: asd
Company: assddddddddd

[SOLVED]Installing on subdomain

Post by newguy »

Hi I was wondering where do I need to change directions to otrs directory if you install on subdomain? I know that you need change $Self->{Home} in ../Kernel/Config.pm What else ??
Last edited by newguy on 31 Mar 2014, 14:15, edited 1 time in total.
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Installing on subdomain

Post by crythias »

subdomain generally won't matter... you'd change the FQDN in SysConfig.

If you are talking about making a change to the filesystem path to otrs, you'll need to
  • modify the location in the OTRS Apache config (search/replace /opt/otrs for your custom path)

    Code: Select all

    #base otrs application
    ScriptAlias /otrs/ "/my/path/to/bin/cgi-bin/"
    #path for otrs html add-ons
    Alias /otrs-web/ "/my/path/to/otrs/var/httpd/htdocs/"
    
    (etc.)
  • modify scripts/apache2-perl-startup.pl for your custom path
  • change the HOME directory of the otrs user
  • change Config.pm

    Code: Select all

    $Self->{Home} = '/my/path/to/otrs';
    
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Locked