KDE.org/Local Setup: Difference between revisions

From KDE Community Wiki
(Remove page contents as it's no longer needed)
Tag: Replaced
 
(20 intermediate revisions by 6 users not shown)
Line 1: Line 1:
__TOC__
This documentation has been simplified and moved.


[[Image:Webworld-128.png|right]]
Please visit https://community.kde.org/KDE.org to see general instructions on how to set up websites locally, or visit the [https://invent.kde.org/websites/hugo-kde/-/wikis/home Hugo KDE repository wiki] to see how to set up websites that use Hugo, which comprise the majority of our websites.
== Introduction ==
This page will help you getting started improving the KDE websites. Currently all pages are being ported to WordPress since it offers a full CMS.
 
=== Prerequirements ===
 
You should have some things running on your machine already before starting. You will need:
* Apache2 and the usual modules (php such as libapache2-mod-php5)
* mysql
 
This could for example look like:
apt-get install apache2 libapache2-mod-php5 php5-mysql mysql-server
 
Make sure that it works by checking out localhost in a web browser.
 
 
You can modify the default setup to do the development in your home directory if it isn't already set up like that. Read up on apache if you want to. Some hints:
sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/kdesites
sudo a2ensite kdesites
 
The easiest will be to have all kde sites in a subfolder structure, such as:
~/public_html/kdesites/kde.org
~/public_html/kdesites/edu.kde.org
Thus point the apache setup to ''~/public_html/kdesites''
 
You can set up local subdomains in ''/etc/hosts''
 
=== Setting up ===
For new sites we use WordPress.
You should get the latest WordPress release from: [http://wordpress.org/ wordpress.org]
 
Simply unzip/tar the download in a sub-folder.
 
The recommended setup is:

Latest revision as of 01:27, 5 October 2024

This documentation has been simplified and moved.

Please visit https://community.kde.org/KDE.org to see general instructions on how to set up websites locally, or visit the Hugo KDE repository wiki to see how to set up websites that use Hugo, which comprise the majority of our websites.