Nach der Installation Probleme

  • Hallo
    Also.Ich hab joomla auf meinem Server Ubuntu 14.04 installiert.Ich kann mich auch auf Joomla einlinken und Joomla einstellungen vornehmen.Das Problem ist wenn ich auf meine WebAdresse klinke kommt
    nur die Seite wo drauf ist Das Apache installiert ist.Wo kann das Problem liegen?
    Edit:Joomla ist 3.5.1
    system Ubuntu 14.04 ,Lamp und phpmyadmin
    sind installiert alles läuft.

  • Hi Danke fur die Antwort
    installations pfad ist var/www/html
    auf dem Server.
    ja da ist eine index.html datei
    muss ich es bearbeiten oder loschen?
    wie gesagt wenn ich beispiel "mysite.com/joomla" oder " mysite.com/joomla/administrator" klicke komm ich in joomla rein nur wenn ich "mysite.com" klicke kommt diese Apache seite

  • Ich hab eine installations anleitung im web durchgefuhrt di sah so aus:


    I will create the database for the Joomla as follows:


    mysql -u root -p
    Here we are adding database=joomladb user=joomlauser and password=joomlapassword:


    CREATE DATABASE joomladb;


    CREATE USER joomlauser@localhost;


    SET PASSWORD FOR joomlauser@localhost= PASSWORD("joomlapassword");


    Giving priveleges to the user, here two cases lies if the LAMP is made of Mairadb-server or Mysql-server. The command differ in both cases so I will mention the difference here:


    For Mariadb-server use:


    GRANT ALL ON `joomladb`.* TO `joomlauser`@`localhost` IDENTIFIED BY 'joomlapassword';


    And for Mysql-server use:


    GRANT ALL PRIVILEGES ON joomladb.* TO joomlauser@localhost IDENTIFIED BY 'joomlapassword';


    Further moving ahead:


    FLUSH PRIVILEGES;
    exit


    Restart services


    service apache2 restart
    service mysql restart

    3 Installation of Joomla


    We will first make a directory temp in which I will the download the latest version of the Joomla as follows:


    mkdir temp
    cd temp
    wget http://joomlacode.org/gf/downl…3-Stable-Full_Package.zip


    We need to install unzip as by default it is now installed:


    apt-get install unzip


    Now create a directory /var/www/html/joomla and unzip the Joomla zip file in the newly created folder:


    mkdir -p /var/www/html/joomla


    unzip -q Joomla_3.3.3-Stable-Full_Package.zip -d /var/www/html/joomla


    Now give appropriate permissions in the directory


    chown -R www-data.www-data /var/www/html/joomla
    chmod -R 755 /var/www/html/joomla


    Now proceed to the web installation of Joomla. Go to the URL http://192.168.0.100/joomla:


    entschuldige das ich euch belästige aber ich komm nicht weiter


    nochmals Danke

  • Zitat

    mkdir -p /var/www/html/joomla
    unzip -q Joomla_3.3.3-Stable-Full_Package.zip -d /var/www/html/joomla


    Na also, was stimmt denn jetzt nicht? Ist doch alles so, wie die Anleitung sagt. Dein Joomla befindet sich im Verzeichnis /joomla.
    Wenn du es im Root haben willst, musst du es auch ins Root installieren. Oder du baust dir einen Weiterleitung. Würde ich aber nicht, weil man all deinen Links das nachher ansieht.