How to Install Kanboard Project Management Software on Ionos (1und1) Webspace

Discussion in 'Server Operation' started by Witzker, Mar 8, 2020.

  1. Witzker

    Witzker New Member

    Hi desperately try to install Kanbord on my website on Ionos
    I downloaded the zip.
    Unzipped it and uploaded it with Filezilla to a folder named projects.xxx under Root directory of my web space.
    and linked a subdomain - projects.xxx - to this folder
    In the ionos control center I created a MySQL database named it database

    Then in the projects.xxx folder I created a config.php
    ------------------
    PHP:
    <?php
      $host_name 
    'db5000308262.hosting-data.io';
      
    $database 'dbs300777';
      
    $user_name 'dbu330186';
      
    $password 'password';
      
    $connect mysqli_connect('db5000308262.hosting-data.io''dbu330186''password''dbs300777');

      if (
    mysqli_connect_errno()) {
        die(
    '<p>Verbindung zum MySQL Server fehlgeschlagen: '.mysqli_connect_error().'</p>');
      } else {
        echo 
    '<p>Verbindung zum MySQL Server erfolgreich aufgebaut.</p >';
      }
    ?>
    -------------------
    I changed the .htaccess
    -----------
    PHP:
    # Pass HTTP Authorization header via environment variable to PHP backend
    # to make HTTP Basic Authentication work for Apache/FastCGI/php-fpm
    # setups (required to authenticate over the API)
    <IfModule mod_setenvif.c>
        
    SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
    </IfModule>
    <
    IfModule mod_rewrite.c>
        
    Options -MultiViews
        
    <IfModule mod_env.c>
            
    SetEnv HTTP_MOD_REWRITE On
        
    </IfModule>
         
    # Uncomment this line depending of your Apache configuration
        # RewriteBase /
        #RewriteEngine On
        #RewriteCond %{REQUEST_FILENAME} !-f
        #RewriteRule ^ index.php [QSA,L]
        ############################
        ## Uncomment the two lines below to enable force HTTPS capabilities
        ############################
           
    RewriteCond %{HTTPS} !=on
         RewriteRule 
    https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
    </IfModule>
    <
    IfModule pagespeed_module>
        
    ModPagespeed Off
    </IfModule>
    ----------
    when in now call my domain projects.xxx
    I get:
    Verbindung zum MySQL Server erfolgreich aufgebaut. (connection to MySQL established)
    That's all NO login screen
    PLS Help
     

Share This Page