Results 1 to 5 of 5

Thread: Missing Contao4.4 Installer

  1. #1
    New user
    Join Date
    07-20-17.
    Posts
    2

    Frage Missing Contao4.4 Installer

    Hello everyone,

    I am trying to install Contao4.4.1, but cannot find the install-file in web/contao.
    I did read the instruction many times so far and watched some youtube videos as well as trying to install contao via conta-manager, composer and directly with cURL.

    A hint would really be appreciated : ) Maybe I am just overlooking something

    Thanks in advance and kind regards,
    jojo

    PS: I'm using Ubuntu16.04, apache2, php7.1, MySQL, and DocumentRoot is folder called web/ which is owned by www-data
    Last edited by jojo; 07/22/2017 at 09:19.

  2. #2
    User Spooky's Avatar
    Join Date
    01-03-13.
    Posts
    339

    Default

    The install tool is under http://example.org/contao/install (assuming you set the DocumentRoot to the /web folder).

  3. #3
    New user
    Join Date
    07-20-17.
    Posts
    2

    Default

    Quote Originally Posted by Spooky View Post
    The install tool is under http://example.org/contao/install (assuming you set the DocumentRoot to the /web folder).
    Unfortunately it isn't. The DocumentRoot points at /web but the install tool is nowhere to be found:
    contao-install.png

  4. #4
    User
    Join Date
    06-20-09.
    Location
    Middlesbrough, UK
    Posts
    246

    Default

    I had a nightmare with getting this set up. THis worked for me, maybe it will for you?

    I created an htaccess file and put it in the real root folder

    Code:
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^domain-name.com$ [NC,OR]
    RewriteCond %{HTTP_HOST} ^www.domain-name.com$
    RewriteCond %{REQUEST_URI} !web/
    RewriteRule (.*) /web/$1 [L]
    https://www.siteground.com/kb/how_to...htaccess_file/

    Then hit your domain and add /install after it: www.website.com/install
    Last edited by Ben_360fusion; 07/24/2017 at 23:28.
    360fusion: Virtual Tours - Web Design
    Social Media: Twitter - Facebook Page

  5. #5
    User Spooky's Avatar
    Join Date
    01-03-13.
    Posts
    339

    Default

    Quote Originally Posted by Ben_360fusion View Post
    I had a nightmare with getting this set up. THis worked for me, maybe it will for you?

    I created an htaccess file and put it in the real root folder

    Code:
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^domain-name.com$ [NC,OR]
    RewriteCond %{HTTP_HOST} ^www.domain-name.com$
    RewriteCond %{REQUEST_URI} !web/
    RewriteRule (.*) /web/$1 [L]
    https://www.siteground.com/kb/how_to...htaccess_file/

    Then hit your domain and add /install after it: www.website.com/install
    This is highly unrecommended. You should just set the DocumentRoot to the web/ folder.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •