<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Replicator064</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Replicator064"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Replicator064"/>
	<updated>2026-05-03T17:01:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Drupal&amp;diff=31665</id>
		<title>Drupal</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Drupal&amp;diff=31665"/>
		<updated>2025-12-05T15:49:17Z</updated>

		<summary type="html">&lt;p&gt;Replicator064: add composer dependencies&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://drupal.org/ Drupal] is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. It is used as a back-end system for at least 1% of all websites worldwide ranging from personal blogs to larger corporate and political sites including whitehouse.gov and data.gov.uk. It is also used for knowledge management and business collaboration.&lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql php-session php-tokenizer php-simplexml php-xml php-gd php-dom php-opcache php-mbstring composer}}&lt;br /&gt;
&lt;br /&gt;
{{note|The &amp;lt;code&amp;gt;php-mbstring&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;php-opcache&amp;lt;/code&amp;gt; packages are optional. If they are not installed, the Drupal installer will show a warning.}}&lt;br /&gt;
&lt;br /&gt;
== Installing and configuring drupal ==&lt;br /&gt;
&lt;br /&gt;
Create a folder named {{Path|webapps}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Download the source code archive&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps/&lt;br /&gt;
wget https://ftp.drupal.org/files/projects/drupal-11.3.0-beta1.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
{{tip|You can view the file names at https://ftp.drupal.org/files/projects/}}&lt;br /&gt;
&lt;br /&gt;
Unpack the archive and delete the tarball afterwards&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf drupal-11.3.0-beta1.tar.gz &lt;br /&gt;
rm drupal-11.3.0-beta1.tar.gz}}&lt;br /&gt;
 &lt;br /&gt;
Change the folder name&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv drupal-11.3.0-beta1 drupal}}&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R lighttpd /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Creating settings file&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cp  /usr/share/webapps/drupal/sites/default/default.settings.php /usr/share/webapps/drupal/sites/default/settings.php}}&lt;br /&gt;
&lt;br /&gt;
To [https://www.drupal.org/docs/getting-started/installing-drupal/install-dependencies-with-composer Install dependencies with Composer], navigate to the Drupal root directory and run Composer.&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps/drupal/&lt;br /&gt;
composer install --no-dev}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the {{Path|drupal}} folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/drupal/ /var/www/localhost/htdocs/drupal}}&lt;br /&gt;
&lt;br /&gt;
== Starting ==&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Starting http service and adding to boot&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|rc-service lighttpd start &amp;amp;&amp;amp; rc-update add lighttpd default}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;/usr/bin/mysql_install_db --user=mysql&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
{{note|&amp;lt;code&amp;gt;/usr/bin/mysql_install_db&amp;lt;/code&amp;gt;: Deprecated program name. It will be removed in a future release, use &amp;lt;code&amp;gt;mariadb-install-db&amp;lt;/code&amp;gt; instead}}&lt;br /&gt;
&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
/usr/bin/mysqladmin -u root password &#039;password&#039;&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Create the drupal database&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mysql -u root -p}}&lt;br /&gt;
{{note|&amp;lt;code&amp;gt;mysql&amp;lt;/code&amp;gt;: Deprecated program name. It will be removed in a future release, use &amp;lt;code&amp;gt;/usr/bin/mariadb&amp;lt;/code&amp;gt; instead}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|CREATE DATABASE drupal;&lt;br /&gt;
GRANT ALL PRIVILEGES ON drupal.* TO &amp;quot;root&amp;quot;;&lt;br /&gt;
FLUSH PRIVILEGES;&lt;br /&gt;
EXIT}}&lt;br /&gt;
&lt;br /&gt;
== Config your drupal ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;http://WEBSERVER_IP_ADDRESS/drupal&amp;lt;/nowiki&amp;gt; and Install Drupal completing the information as appropriate from the web browser.&lt;br /&gt;
&lt;br /&gt;
Drupal Installation steps:&lt;br /&gt;
&lt;br /&gt;
Note:	After select each option, pres &amp;quot;Save and continue&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
1 - Select an installation profile&lt;br /&gt;
 &lt;br /&gt;
* Standard ( Install with commonly used features pre-configured.)&lt;br /&gt;
&lt;br /&gt;
* Minimal ( Start with only a few modules enabled.)&lt;br /&gt;
&lt;br /&gt;
2 - Choose language&lt;br /&gt;
&lt;br /&gt;
*  English (built-in)&lt;br /&gt;
&lt;br /&gt;
3 - Verify requirements  &lt;br /&gt;
&lt;br /&gt;
* (Nothing to do here if all is ok)&lt;br /&gt;
&lt;br /&gt;
4 - Set up database&lt;br /&gt;
Database type MySQL&lt;br /&gt;
&lt;br /&gt;
* Database name &#039;&#039;drupal&#039;&#039;&lt;br /&gt;
* Database username &#039;&#039;root&#039;&#039;&lt;br /&gt;
* Database password &#039;&#039;your-mysql-password&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
- 5 Configure site&lt;br /&gt;
&lt;br /&gt;
* SITE INFORMATION&lt;br /&gt;
:* Site name &lt;br /&gt;
:* Site e-mail address&lt;br /&gt;
&lt;br /&gt;
* SITE MAINTENANCE ACCOUNT&lt;br /&gt;
:* Username&lt;br /&gt;
:* E-mail address&lt;br /&gt;
:* Password&lt;br /&gt;
:* Confirm password&lt;br /&gt;
&lt;br /&gt;
* SERVER SETTINGS&lt;br /&gt;
:* Default country&lt;br /&gt;
:* Default time zone&lt;br /&gt;
&lt;br /&gt;
* UPDATE NOTIFICATIONS&lt;br /&gt;
:* Check for updates automatically&lt;br /&gt;
:* Receive e-mail notifications&lt;br /&gt;
&lt;br /&gt;
After click on &amp;quot;Save and continue&amp;quot; you will see &#039;&#039;Drupal installation complete&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Congratulations, you installed Drupal!&lt;br /&gt;
&lt;br /&gt;
Review the messages above before visiting your &#039;&#039;&#039;new site&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Review the messages above before visiting your new site.&lt;br /&gt;
You have drupal cloud computing system working, to access go to &amp;lt;nowiki&amp;gt;http://WEBSERVER_IP_ADDRESS/drupal&amp;lt;/nowiki&amp;gt; and enjoy!&lt;/div&gt;</summary>
		<author><name>Replicator064</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Drupal&amp;diff=31581</id>
		<title>Drupal</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Drupal&amp;diff=31581"/>
		<updated>2025-11-30T19:59:57Z</updated>

		<summary type="html">&lt;p&gt;Replicator064: add additional packages needed for installation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://drupal.org/ Drupal] is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. It is used as a back-end system for at least 1% of all websites worldwide ranging from personal blogs to larger corporate and political sites including whitehouse.gov and data.gov.uk. It is also used for knowledge management and business collaboration.&lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql php-session php-tokenizer php-simplexml php-xml php-gd php-dom php-opcache php-mbstring}}&lt;br /&gt;
&lt;br /&gt;
{{note|The &amp;lt;code&amp;gt;php-mbstring&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;php-opcache&amp;lt;/code&amp;gt; packages are optional. If they are not installed, the Drupal installer will show a warning.}}&lt;br /&gt;
&lt;br /&gt;
== Installing and configuring drupal ==&lt;br /&gt;
&lt;br /&gt;
Create a folder named {{Path|webapps}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Download the source code archive&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps/&lt;br /&gt;
wget https://ftp.drupal.org/files/projects/drupal-11.3.0-beta1.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
{{tip|You can view the file names at https://ftp.drupal.org/files/projects/}}&lt;br /&gt;
&lt;br /&gt;
Unpack the archive and delete the tarball afterwards&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf drupal-11.3.0-beta1.tar.gz &lt;br /&gt;
rm drupal-11.3.0-beta1.tar.gz}}&lt;br /&gt;
 &lt;br /&gt;
Change the folder name&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv drupal-11.3.0-beta1 drupal}}&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R lighttpd /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Creating settings file&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cp  /usr/share/webapps/drupal/sites/default/default.settings.php /usr/share/webapps/drupal/sites/default/settings.php}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the {{Path|drupal}} folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/drupal/ /var/www/localhost/htdocs/drupal}}&lt;br /&gt;
&lt;br /&gt;
== Starting ==&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Starting http service and adding to boot&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|rc-service lighttpd start &amp;amp;&amp;amp; rc-update add lighttpd default}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;/usr/bin/mysql_install_db --user=mysql&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
{{note|&amp;lt;code&amp;gt;/usr/bin/mysql_install_db&amp;lt;/code&amp;gt;: Deprecated program name. It will be removed in a future release, use &amp;lt;code&amp;gt;mariadb-install-db&amp;lt;/code&amp;gt; instead}}&lt;br /&gt;
&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
/usr/bin/mysqladmin -u root password &#039;password&#039;&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Create the drupal database&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mysql -u root -p}}&lt;br /&gt;
{{note|&amp;lt;code&amp;gt;mysql&amp;lt;/code&amp;gt;: Deprecated program name. It will be removed in a future release, use &amp;lt;code&amp;gt;/usr/bin/mariadb&amp;lt;/code&amp;gt; instead}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|CREATE DATABASE drupal;&lt;br /&gt;
GRANT ALL PRIVILEGES ON drupal.* TO &amp;quot;root&amp;quot;;&lt;br /&gt;
FLUSH PRIVILEGES;&lt;br /&gt;
EXIT}}&lt;br /&gt;
&lt;br /&gt;
== Config your drupal ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;http://WEBSERVER_IP_ADDRESS/drupal&amp;lt;/nowiki&amp;gt; and Install Drupal completing the information as appropriate from the web browser.&lt;br /&gt;
&lt;br /&gt;
Drupal Installation steps:&lt;br /&gt;
&lt;br /&gt;
Note:	After select each option, pres &amp;quot;Save and continue&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
1 - Select an installation profile&lt;br /&gt;
 &lt;br /&gt;
* Standard ( Install with commonly used features pre-configured.)&lt;br /&gt;
&lt;br /&gt;
* Minimal ( Start with only a few modules enabled.)&lt;br /&gt;
&lt;br /&gt;
2 - Choose language&lt;br /&gt;
&lt;br /&gt;
*  English (built-in)&lt;br /&gt;
&lt;br /&gt;
3 - Verify requirements  &lt;br /&gt;
&lt;br /&gt;
* (Nothing to do here if all is ok)&lt;br /&gt;
&lt;br /&gt;
4 - Set up database&lt;br /&gt;
Database type MySQL&lt;br /&gt;
&lt;br /&gt;
* Database name &#039;&#039;drupal&#039;&#039;&lt;br /&gt;
* Database username &#039;&#039;root&#039;&#039;&lt;br /&gt;
* Database password &#039;&#039;your-mysql-password&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
- 5 Configure site&lt;br /&gt;
&lt;br /&gt;
* SITE INFORMATION&lt;br /&gt;
:* Site name &lt;br /&gt;
:* Site e-mail address&lt;br /&gt;
&lt;br /&gt;
* SITE MAINTENANCE ACCOUNT&lt;br /&gt;
:* Username&lt;br /&gt;
:* E-mail address&lt;br /&gt;
:* Password&lt;br /&gt;
:* Confirm password&lt;br /&gt;
&lt;br /&gt;
* SERVER SETTINGS&lt;br /&gt;
:* Default country&lt;br /&gt;
:* Default time zone&lt;br /&gt;
&lt;br /&gt;
* UPDATE NOTIFICATIONS&lt;br /&gt;
:* Check for updates automatically&lt;br /&gt;
:* Receive e-mail notifications&lt;br /&gt;
&lt;br /&gt;
After click on &amp;quot;Save and continue&amp;quot; you will see &#039;&#039;Drupal installation complete&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Congratulations, you installed Drupal!&lt;br /&gt;
&lt;br /&gt;
Review the messages above before visiting your &#039;&#039;&#039;new site&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Review the messages above before visiting your new site.&lt;br /&gt;
You have drupal cloud computing system working, to access go to &amp;lt;nowiki&amp;gt;http://WEBSERVER_IP_ADDRESS/drupal&amp;lt;/nowiki&amp;gt; and enjoy!&lt;/div&gt;</summary>
		<author><name>Replicator064</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Drupal&amp;diff=31580</id>
		<title>Drupal</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Drupal&amp;diff=31580"/>
		<updated>2025-11-30T13:10:54Z</updated>

		<summary type="html">&lt;p&gt;Replicator064: updated for drupal-11.3.0-beta1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://drupal.org/ Drupal] is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. It is used as a back-end system for at least 1% of all websites worldwide ranging from personal blogs to larger corporate and political sites including whitehouse.gov and data.gov.uk. It is also used for knowledge management and business collaboration.&lt;br /&gt;
&lt;br /&gt;
== Install lighttpd, PHP and MySql ==&lt;br /&gt;
&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
Install extra packages:&lt;br /&gt;
{{Cmd|apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql php-session php-tokenizer}}&lt;br /&gt;
&lt;br /&gt;
== Installing and configuring drupal ==&lt;br /&gt;
&lt;br /&gt;
Create a folder named {{Path|webapps}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Download the source code archive&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /usr/share/webapps/&lt;br /&gt;
wget https://ftp.drupal.org/files/projects/drupal-11.3.0-beta1.tar.gz}}&lt;br /&gt;
&lt;br /&gt;
{{tip|You can view the file names at https://ftp.drupal.org/files/projects/}}&lt;br /&gt;
&lt;br /&gt;
Unpack the archive and delete the tarball afterwards&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf drupal-11.3.0-beta1.tar.gz &lt;br /&gt;
rm drupal-11.3.0-beta1.tar.gz}}&lt;br /&gt;
 &lt;br /&gt;
Change the folder name&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv drupal-11.3.0-beta1 drupal}}&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R lighttpd /usr/share/webapps/}}&lt;br /&gt;
&lt;br /&gt;
Creating settings file&lt;br /&gt;
&lt;br /&gt;
{{Cmd|cp  /usr/share/webapps/drupal/sites/default/default.settings.php /usr/share/webapps/drupal/sites/default/settings.php}}&lt;br /&gt;
&lt;br /&gt;
Create a symlink to the {{Path|drupal}} folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|ln -s /usr/share/webapps/drupal/ /var/www/localhost/htdocs/drupal}}&lt;br /&gt;
&lt;br /&gt;
== Starting ==&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;Starting http service and adding to boot&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|rc-service lighttpd start &amp;amp;&amp;amp; rc-update add lighttpd default}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config MySql ==&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;lt;nowiki&amp;gt;/usr/bin/mysql_install_db --user=mysql&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
{{note|&amp;lt;code&amp;gt;/usr/bin/mysql_install_db&amp;lt;/code&amp;gt;: Deprecated program name. It will be removed in a future release, use &amp;lt;code&amp;gt;mariadb-install-db&amp;lt;/code&amp;gt; instead}}&lt;br /&gt;
&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;rc-service mariadb start &amp;amp;&amp;amp; rc-update add mariadb default&lt;br /&gt;
/usr/bin/mysqladmin -u root password &#039;password&#039;&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Create the drupal database&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mysql -u root -p}}&lt;br /&gt;
{{note|&amp;lt;code&amp;gt;mysql&amp;lt;/code&amp;gt;: Deprecated program name. It will be removed in a future release, use &amp;lt;code&amp;gt;/usr/bin/mariadb&amp;lt;/code&amp;gt; instead}}&lt;br /&gt;
&lt;br /&gt;
{{Cmd|CREATE DATABASE drupal;&lt;br /&gt;
GRANT ALL PRIVILEGES ON drupal.* TO &amp;quot;root&amp;quot;;&lt;br /&gt;
FLUSH PRIVILEGES;&lt;br /&gt;
EXIT}}&lt;br /&gt;
&lt;br /&gt;
== Config your drupal ==&lt;br /&gt;
&lt;br /&gt;
Browse to: &amp;lt;nowiki&amp;gt;http://WEBSERVER_IP_ADDRESS/drupal&amp;lt;/nowiki&amp;gt; and Install Drupal completing the information as appropriate from the web browser.&lt;br /&gt;
&lt;br /&gt;
Drupal Installation steps:&lt;br /&gt;
&lt;br /&gt;
Note:	After select each option, pres &amp;quot;Save and continue&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
1 - Select an installation profile&lt;br /&gt;
 &lt;br /&gt;
* Standard ( Install with commonly used features pre-configured.)&lt;br /&gt;
&lt;br /&gt;
* Minimal ( Start with only a few modules enabled.)&lt;br /&gt;
&lt;br /&gt;
2 - Choose language&lt;br /&gt;
&lt;br /&gt;
*  English (built-in)&lt;br /&gt;
&lt;br /&gt;
3 - Verify requirements  &lt;br /&gt;
&lt;br /&gt;
* (Nothing to do here if all is ok)&lt;br /&gt;
&lt;br /&gt;
4 - Set up database&lt;br /&gt;
Database type MySQL&lt;br /&gt;
&lt;br /&gt;
* Database name &#039;&#039;drupal&#039;&#039;&lt;br /&gt;
* Database username &#039;&#039;root&#039;&#039;&lt;br /&gt;
* Database password &#039;&#039;your-mysql-password&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
- 5 Configure site&lt;br /&gt;
&lt;br /&gt;
* SITE INFORMATION&lt;br /&gt;
:* Site name &lt;br /&gt;
:* Site e-mail address&lt;br /&gt;
&lt;br /&gt;
* SITE MAINTENANCE ACCOUNT&lt;br /&gt;
:* Username&lt;br /&gt;
:* E-mail address&lt;br /&gt;
:* Password&lt;br /&gt;
:* Confirm password&lt;br /&gt;
&lt;br /&gt;
* SERVER SETTINGS&lt;br /&gt;
:* Default country&lt;br /&gt;
:* Default time zone&lt;br /&gt;
&lt;br /&gt;
* UPDATE NOTIFICATIONS&lt;br /&gt;
:* Check for updates automatically&lt;br /&gt;
:* Receive e-mail notifications&lt;br /&gt;
&lt;br /&gt;
After click on &amp;quot;Save and continue&amp;quot; you will see &#039;&#039;Drupal installation complete&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Congratulations, you installed Drupal!&lt;br /&gt;
&lt;br /&gt;
Review the messages above before visiting your &#039;&#039;&#039;new site&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Review the messages above before visiting your new site.&lt;br /&gt;
You have drupal cloud computing system working, to access go to &amp;lt;nowiki&amp;gt;http://WEBSERVER_IP_ADDRESS/drupal&amp;lt;/nowiki&amp;gt; and enjoy!&lt;/div&gt;</summary>
		<author><name>Replicator064</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=DokuWiki&amp;diff=31506</id>
		<title>DokuWiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=DokuWiki&amp;diff=31506"/>
		<updated>2025-11-18T19:51:17Z</updated>

		<summary type="html">&lt;p&gt;Replicator064: Your PHP seems to miss SSL support. Downloading will not work for many DokuWiki extensions.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.dokuwiki.org/dokuwiki DokuWiki] is a standards compliant, simple to use Wiki, mainly aimed at creating documentation of any kind. This page covers installation with either lighttpd or nginx.&lt;br /&gt;
&lt;br /&gt;
= Install lighttpd and PHP =&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
= Install nginx and PHP =&lt;br /&gt;
&lt;br /&gt;
Continue with [https://wiki.alpinelinux.org/wiki/Nginx_with_PHP#PHP7_Installation this tutorial], however please note that only these packages are required:&lt;br /&gt;
{{cmd|apk add nginx php7 php7-gd php7-fpm php7-xml php7-session php7-json}}&lt;br /&gt;
&lt;br /&gt;
Make sure that the PHP user and group match those for nginx (the outputs should be the same):&lt;br /&gt;
&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;grep listen.owner /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep listen.group /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep user /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep group /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep user /etc/nginx/nginx.conf&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
Afterwards, [https://www.dokuwiki.org/install:nginx configure nginx] and, optionally, [https://www.dokuwiki.org/rewrite enable URL rewrites]&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can call PHP from nginx via unix socket:&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;sed -i &amp;quot;s|listen\s*=\s*127.0.0.1:9000|listen = /var/run/php.sock|g&amp;quot; /etc/php7/php-fpm.d/www.conf&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
To define unix socket in nginx configuration, add following section to server:&lt;br /&gt;
    location ~ \.php$ {&lt;br /&gt;
        try_files $uri $uri/ /doku.php;&lt;br /&gt;
        include fastcgi_params;&lt;br /&gt;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;&lt;br /&gt;
        fastcgi_param REDIRECT_STATUS 200;&lt;br /&gt;
        fastcgi_pass unix:/var/run/php.sock;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Installing DokuWiki ==&lt;br /&gt;
&lt;br /&gt;
Install required php modules&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# apk add {{pkg|php-session}} {{pkg|php-xml}} {{pkg|php-openssl}} }}&lt;br /&gt;
&lt;br /&gt;
Create webroot&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /var/www/localhost/htdocs/}}&lt;br /&gt;
&lt;br /&gt;
Download the source code archive &lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /var/www/localhost/htdocs/&lt;br /&gt;
wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz}}&lt;br /&gt;
&lt;br /&gt;
Unpack and delete tar file&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf dokuwiki-stable.tgz&lt;br /&gt;
rm dokuwiki-stable.tgz}}&lt;br /&gt;
&lt;br /&gt;
Rename the dokuwiki folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv dokuwiki-2018-04-22c dokuwiki}}&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions (change the www user/group to the one that is used by both web server and PHP)&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R www:www dokuwiki&lt;br /&gt;
chmod -R 700 dokuwiki/}}&lt;br /&gt;
&lt;br /&gt;
for lighttpd use&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R lighttpd:lighttpd dokuwiki&lt;br /&gt;
chmod -R 700 dokuwiki/}}&lt;br /&gt;
&lt;br /&gt;
Browse to &lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://WEB_IP_ADDRESS/dokuwiki/install.php&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installation script will show warning &#039;&#039;&amp;quot;It seems your data directory is not properly secured&amp;quot;&#039;&#039;. Please follow the instructions on [https://www.dokuwiki.org/security#deny_directory_access_in_lighttpd DokuWiki security].&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:PHP]]&lt;/div&gt;</summary>
		<author><name>Replicator064</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=DokuWiki&amp;diff=31505</id>
		<title>DokuWiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=DokuWiki&amp;diff=31505"/>
		<updated>2025-11-18T19:21:30Z</updated>

		<summary type="html">&lt;p&gt;Replicator064: add link to dokuwiki security page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.dokuwiki.org/dokuwiki DokuWiki] is a standards compliant, simple to use Wiki, mainly aimed at creating documentation of any kind. This page covers installation with either lighttpd or nginx.&lt;br /&gt;
&lt;br /&gt;
= Install lighttpd and PHP =&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
= Install nginx and PHP =&lt;br /&gt;
&lt;br /&gt;
Continue with [https://wiki.alpinelinux.org/wiki/Nginx_with_PHP#PHP7_Installation this tutorial], however please note that only these packages are required:&lt;br /&gt;
{{cmd|apk add nginx php7 php7-gd php7-fpm php7-xml php7-session php7-json}}&lt;br /&gt;
&lt;br /&gt;
Make sure that the PHP user and group match those for nginx (the outputs should be the same):&lt;br /&gt;
&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;grep listen.owner /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep listen.group /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep user /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep group /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep user /etc/nginx/nginx.conf&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
Afterwards, [https://www.dokuwiki.org/install:nginx configure nginx] and, optionally, [https://www.dokuwiki.org/rewrite enable URL rewrites]&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can call PHP from nginx via unix socket:&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;sed -i &amp;quot;s|listen\s*=\s*127.0.0.1:9000|listen = /var/run/php.sock|g&amp;quot; /etc/php7/php-fpm.d/www.conf&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
To define unix socket in nginx configuration, add following section to server:&lt;br /&gt;
    location ~ \.php$ {&lt;br /&gt;
        try_files $uri $uri/ /doku.php;&lt;br /&gt;
        include fastcgi_params;&lt;br /&gt;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;&lt;br /&gt;
        fastcgi_param REDIRECT_STATUS 200;&lt;br /&gt;
        fastcgi_pass unix:/var/run/php.sock;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Installing DokuWiki ==&lt;br /&gt;
&lt;br /&gt;
Install required php modules&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# apk add {{pkg|php-session}} {{pkg|php-xml}} }}&lt;br /&gt;
&lt;br /&gt;
Create webroot&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /var/www/localhost/htdocs/}}&lt;br /&gt;
&lt;br /&gt;
Download the source code archive &lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /var/www/localhost/htdocs/&lt;br /&gt;
wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz}}&lt;br /&gt;
&lt;br /&gt;
Unpack and delete tar file&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf dokuwiki-stable.tgz&lt;br /&gt;
rm dokuwiki-stable.tgz}}&lt;br /&gt;
&lt;br /&gt;
Rename the dokuwiki folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv dokuwiki-2018-04-22c dokuwiki}}&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions (change the www user/group to the one that is used by both web server and PHP)&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R www:www dokuwiki&lt;br /&gt;
chmod -R 700 dokuwiki/}}&lt;br /&gt;
&lt;br /&gt;
for lighttpd use&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R lighttpd:lighttpd dokuwiki&lt;br /&gt;
chmod -R 700 dokuwiki/}}&lt;br /&gt;
&lt;br /&gt;
Browse to &lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://WEB_IP_ADDRESS/dokuwiki/install.php&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installation script will show warning &#039;&#039;&amp;quot;It seems your data directory is not properly secured&amp;quot;&#039;&#039;. Please follow the instructions on [https://www.dokuwiki.org/security#deny_directory_access_in_lighttpd DokuWiki security].&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:PHP]]&lt;/div&gt;</summary>
		<author><name>Replicator064</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=DokuWiki&amp;diff=31497</id>
		<title>DokuWiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=DokuWiki&amp;diff=31497"/>
		<updated>2025-11-17T22:45:15Z</updated>

		<summary type="html">&lt;p&gt;Replicator064: tried to install; got 500 error; uninstalled php82-session php82-xml; installed php-session (php83-session) php-xml (php83-xml); dokuwiki up and running&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.dokuwiki.org/dokuwiki DokuWiki] is a standards compliant, simple to use Wiki, mainly aimed at creating documentation of any kind. This page covers installation with either lighttpd or nginx.&lt;br /&gt;
&lt;br /&gt;
= Install lighttpd and PHP =&lt;br /&gt;
{{:Setting Up Lighttpd With FastCGI}}&lt;br /&gt;
&lt;br /&gt;
= Install nginx and PHP =&lt;br /&gt;
&lt;br /&gt;
Continue with [https://wiki.alpinelinux.org/wiki/Nginx_with_PHP#PHP7_Installation this tutorial], however please note that only these packages are required:&lt;br /&gt;
{{cmd|apk add nginx php7 php7-gd php7-fpm php7-xml php7-session php7-json}}&lt;br /&gt;
&lt;br /&gt;
Make sure that the PHP user and group match those for nginx (the outputs should be the same):&lt;br /&gt;
&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;grep listen.owner /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep listen.group /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep user /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep group /etc/php7/php-fpm.d/www.conf&lt;br /&gt;
grep user /etc/nginx/nginx.conf&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
Afterwards, [https://www.dokuwiki.org/install:nginx configure nginx] and, optionally, [https://www.dokuwiki.org/rewrite enable URL rewrites]&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can call PHP from nginx via unix socket:&lt;br /&gt;
{{cmd|&amp;lt;nowiki&amp;gt;sed -i &amp;quot;s|listen\s*=\s*127.0.0.1:9000|listen = /var/run/php.sock|g&amp;quot; /etc/php7/php-fpm.d/www.conf&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
To define unix socket in nginx configuration, add following section to server:&lt;br /&gt;
    location ~ \.php$ {&lt;br /&gt;
        try_files $uri $uri/ /doku.php;&lt;br /&gt;
        include fastcgi_params;&lt;br /&gt;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;&lt;br /&gt;
        fastcgi_param REDIRECT_STATUS 200;&lt;br /&gt;
        fastcgi_pass unix:/var/run/php.sock;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Installing DokuWiki ==&lt;br /&gt;
&lt;br /&gt;
Install required php modules&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# apk add {{pkg|php-session}} {{pkg|php-xml}} }}&lt;br /&gt;
&lt;br /&gt;
Create webroot&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mkdir -p /var/www/localhost/htdocs/}}&lt;br /&gt;
&lt;br /&gt;
Download the source code archive &lt;br /&gt;
&lt;br /&gt;
{{Cmd|cd /var/www/localhost/htdocs/&lt;br /&gt;
wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz}}&lt;br /&gt;
&lt;br /&gt;
Unpack and delete tar file&lt;br /&gt;
&lt;br /&gt;
{{Cmd|tar zxvf dokuwiki-stable.tgz&lt;br /&gt;
rm dokuwiki-stable.tgz}}&lt;br /&gt;
&lt;br /&gt;
Rename the dokuwiki folder&lt;br /&gt;
&lt;br /&gt;
{{Cmd|mv dokuwiki-2018-04-22c dokuwiki}}&lt;br /&gt;
&lt;br /&gt;
Change the folder permissions (change the www user/group to the one that is used by both web server and PHP)&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R www:www dokuwiki&lt;br /&gt;
chmod -R 700 dokuwiki/}}&lt;br /&gt;
&lt;br /&gt;
for lighttpd use&lt;br /&gt;
&lt;br /&gt;
{{Cmd|chown -R lighttpd:lighttpd dokuwiki&lt;br /&gt;
chmod -R 700 dokuwiki/}}&lt;br /&gt;
&lt;br /&gt;
Browse to &lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://WEB_IP_ADDRESS/dokuwiki/install.php&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:PHP]]&lt;/div&gt;</summary>
		<author><name>Replicator064</name></author>
	</entry>
</feed>