<p>When you download the source code in {LINK:up_and_running} you will need to know which branch you want to install. You can always move to a more unstable branch but going backwards is not guaranteed to work.</p>
<p>If you want to use <ahref="https://git.gnu.io/h2p/Qvitter">Qvitter</a>—that's the plugin that makes GNU social look like Twitter—be aware that it is tested against GNU social <i>nightly</i>. If you are using a different branch and having problems with that plugin try upgrading to nightly.</p>
{HEADING:SUBSECTION:choosing_web_config:Web server configuration}
<p>You should use HTTPS to encrypt all communications with your GNU social instance. Until recently it cost money to get a trusted certificate but now the Let's Encrypt project enables you to <ahref="https://letsencrypt.org/howitworks/">obtain a trusted certificate at no cost</a>.</p>
<p>If you are thinking about starting with HTTP and setting up encryption later, don't do that. You may have problems if you start with HTTP and later move to HTTPS.</p>
<p>If you want to use Qvitter be aware that it only supports installations that are installed directly on the domain. That is, the URL to access GNU social needs to be <tt>https://www.some.domain/</tt> and not <tt>https://www.some.domain/gnusocial/</tt>. It also requires you to have {LINK:fancy_urls} enabled. If you're using apache that means you need mod_rewrite and the ability to use <tt>.htaccess</tt> files.</p>
<dd>For newer versions, some functions that are used may be disabled by default, such as the <tt>pcntl_*</tt> family. See the section on {LINK:queue_daemons} for more information.</dd>
<dd>GNU Social uses, by default, a MariaDB server for data storage. Versions 5.x and 10.x have both reportedly worked well. It is also possible to run MySQL 5.5+.</dd>
<dt>Web server</dt>
<dd>Apache, lighttpd and nginx will all work. CGI mode is recommended and also some variant of 'suexec' (or a proper setup php-fpm pool)<br/>NOTE: mod_rewrite or its equivalent is extremely useful.</dd>
<p>The above package names are for Debian based systems. In the case of Arch Linux, PHP is compiled with support for most extensions but they require manual enabling in the relevant <tt>php.ini</tt> file (mostly <tt>php5-gmp</tt>).</p>
<p>For some functionality, you will also need the following extensions:</p>
<dl>
<dt>opcache</dt>
<dd>Improves performance a <em>lot</em>. Included in PHP, must be enabled manually in <tt>php.ini</tt> for most distributions. Find and set at least: <tt>opcache.enable=1</tt></dd>
<dt>mailparse</dt>
<dd>Efficient parsing of email requires this extension. Submission by email or SMS-over-email uses this.</dd>
<dt>sphinx</dt>
<dd>A client for the sphinx server, an alternative to MySQL or Postgresql fulltext search. You will also need a Sphinx server to serve the search queries.</dd>
<dt>gettext</dt>
<dd>For multiple languages. Default on many PHP installs; will be emulated if not present.</dd>
<dt>exif</dt>
<dd>For thumbnails to be properly oriented.</dd>
</dl>
<p>You may also experience better performance from your site if you configure a PHP cache/accelerator. Most distributions come with "opcache" support. Enable it in your <tt>php.ini</tt> where it is documented together with its settings.</p>
{HEADING:SECTION:installation:Installation}
{HEADING:SUBSECTION:up_and_running:Getting it up and running}
<p>Installing the basic GNU Social web component is relatively easy, especially if you've previously installed PHP/MariaDB packages.</p>
<p>The source code is distributed using a git repository <ahref="https://git.gnu.io/gnu/gnu-social">on GNU's Gitlab server</a>. There are two ways to download it:</p>
<ul>
<li>Use <ahref="https://git-scm.com/">git</a> on your own computer to clone the repository. Once it is on your computer it is easy to download incremental updates.<br/> or;</li>
<li>Download a zip or tarball from Gitlab's web interface. This way you won't need git but you will need to download the whole thing every time you update.</li>
</ul>
<p>If you want to use git, run the following command. It will download the whole repository and place it in a folder called <i>gnusocial</i>.</p>
<p>If you would like to download it directly instead, go to the <ahref="https://git.gnu.io/gnu/gnu-social/tree/1.2.x">1.2.x</a>, <ahref="https://git.gnu.io/gnu/gnu-social/tree/master">master</a> or <ahref="https://git.gnu.io/gnu/gnu-social/tree/nightly">nightly</a> branch on the Gitlab web page. In the top-right corner there is a button to download a zip file containing that branch. If you press the drop-down arrow on the right you can access different types of archive.</p>
<imgsrc="{RES:tree_download.png}"alt="Download button on gitlab"class="figure"/>
<p>...which will make a subdirectory in your current directory. (If you don't have shell access on your Web server, you may have to unpack the tarball on your local computer and FTP the files to the server.)</p>
<p>Whichever way you downloaded GNU social, move the files to a directory of your choosing in your Web root directory. Usually something like this will work:</p>
<p>This will often make your GNU Social instance available in the <tt>gnusocial</tt> path of your server, like <tt>http://example.net/gnusocial</tt>. "social" or "blog" might also be good path names. If you know how to configure virtual hosts on your web server, you can try setting up <tt>http://social.example.net/</tt> or the like.
<p>If you have "rewrite" support on your webserver, and you should, then please enable this in order to make full use of your site. This will enable {LINK:fancy_urls} support.</p>
<p>Make your target directory writeable by the Web server, please note however that <tta+w</tt> will give <em>all</em> users write access and securing the webserver is not within the scope of this document.</p>
<p>If your Web server runs as another user besides <tt>www-data</tt>, try that user's default group instead. As a last resort, you can create a new group like <tt>gnusocial</tt> and add the web server's user to the group.</p>
<p>You should also take this moment to make your <tt>avatar</tt> and <tt>file</tt> sub-directories writeable by the Web server. The <em>insecure</em> way to do this is:
<p>Note that GNU social should have its own database; you should not share the database with another program. You can name it whatever you want, though.</p>
<p>(If you don't have shell access to your server, you may need to use a tool like phpMyAdmin to create a database. Check your hosting service's documentation for how to create a new MariaDB database.)</p>
<p>Create a new database account that GNU social will use to access the database. If you have shell access, this will probably work from the MariaDB shell:</p>
<p>You should change the user identifier <tt>social</tt> and <tt>agoodpassword</tt> to your preferred new database username and password. You may want to test logging in to MariaDB as this new user.
<p>Enter the database connection information and your site name. The install program will configure your site and install the initial, almost-empty database.</p>
<p>You should now be able to navigate to your social site's main directory and see the "Public Timeline", which will probably be empty. You can now register new users, post some notices, edit your profile, etc.</p>
<p>By default, GNU Social will use URLs that include the main PHP program's name in them. For example, a user's home profile might be found at either of these URLS depending on the webserver's configuration and capabilities:</p>
<p>It's possible to configure the software to use fancy URLs so it looks like this instead:</p>
<p>
<tt>https://social.example.net/fred</tt>
</p>
<p>These "fancy URLs" are more readable and memorable for users. To use fancy URLs, you must either have Apache 2.x with <tt>.htaccess</tt> enabled and mod_rewrite enabled, <em>OR</em> know how to configure "url redirection" in your server (like lighttpd or nginx).</p>
<ol>
<li>
<p>See the instructions for each respective webserver software:</p>
<ul>
<li>For Apache, inspect the <tt>htaccess.sample</tt> file and save it as <tt>.htaccess</tt> after making any necessary modifications. Our sample file is well commented.</li>
<li>For lighttpd, inspect the <tt>lighttpd.conf.example</tt> file and apply the appropriate changes in your virtualhost configuration for lighttpd.</li>
<li>For nginx, inspect the <tt>nginx.conf.sample</tt> file and apply the appropriate changes.</li>
<li>For other webservers, we gladly accept contributions of server configuration examples.</li>
</ul>
</li>
<li>
<p>Assuming your webserver is properly configured and have its settings applied (remember to reload/restart it), you can add this to your GNU social's <tt>config.php</tt> file:</p>
<p><tt>$config['site']['fancy'] = true;</tt></p>
</li>
</ol>
<p>You should now be able to navigate to a "fancy" URL on your server, like:</p>
<p>As of right now, your ability change the theme is limited to CSS stylesheets and some image files; you can't change the HTML output, like adding or removing menu items, without the help of a plugin.</p>
<p>You can choose a theme using the <tt>$config['site']['theme']</tt> element in the <tt>config.php</tt> file. See below for details.</p>
<p>You can add your own theme by making a sub-directory of the 'theme' subdirectory with the name of your theme. Each theme can have the following files:</p>
<dl>
<dt>display.css</dt><dd>a CSS2 file for "default" styling for all browsers.</a>
<dt>logo.png</dt><dd>a logo image for the site.</dd>
<dt>default-avatar-profile.png</dt><dd>a 96x96 pixel image to use as the avatar for users who don't upload their own.</dd>
<dt>default-avatar-stream.png</dt><dd>Ditto, but 48x48. For streams of notices.</dd>
<dt>default-avatar-mini.png</dt><dd>Ditto ditto, but 24x24. For subscriptions listing on profile pages.</dd>
</dl>
<p>You may want to start by copying the files from the default theme to your own directory.</p>
{HEADING:SUBSECTION:private:Private}
<p>A GNU social node can be configured as "private", which means it will not federate with other nodes in the network. It is not a recommended method of using GNU social and we cannot at the current state of development guarantee that there are no leaks (what a public network sees as features, private sites will likely see as bugs).</p>
<p>Private nodes are however an easy way to easily setup collaboration and image sharing within a workgroup or a smaller community where federation is not a desired feature. Also, it is possible to change this setting and instantly gain full federation features.</p>
<p>Access to file attachments can also be restricted to logged-in users only:</p>
<ol>
<li>
<p>Add a directory outside the web root where your file uploads will be stored. Use this command as an initial guideline to create it:</p>
<p><tt>mkdir /var/www/gnusocial-files</tt></p>
</li>
<li>
<p>Make the file uploads directory writeable by the web server. An insecure way to do this is (to do it properly, read up on UNIX file permissions and configure your webserver accordingly):</p>
<p>You also need to install, compile and enable the sphinx pecl extension for php on the client side, which itself depends on the sphinx development files.</p>
<p>See <tt>plugins/SphinxSearch/README</tt> for more details and server setup.</p>
{HEADING:SUBSECTION:sms:SMS}
<p>StatusNet supports a cheap-and-dirty system for sending update messages to mobile phones and for receiving updates from the mobile. Instead of sending through the SMS network itself, which is costly and requires buy-in from the wireless carriers, it simply piggybacks on the email gateways that many carriers provide to their customers. So, SMS configuration is essentially email configuration.</p>
<p>Each user sends to a made-up email address, which they keep a secret. Incoming email that is "From" the user's SMS email address, and "To" the users' secret email address on the site's domain, will be converted to a notice and stored in the DB.</p>
<p>For this to work, there <em>must</em> be a domain or sub-domain for which all (or most) incoming email can pass through the incoming mail filter.</p>
<ol>
<li>
<p>Run the SQL script <tt>carrier.sql</tt> in your StatusNet database. This will usually work:</p>
<p>By default GNU social tries to do regular work such as communicating with remote servers while it is handling HTTP requests for users. This is often insufficient. If possible you should run the <em>queue daemons</em>. Please refer to this section: {LINK:queue_daemons}.</p>
{HEADING:SUBSECTION:backups:Backups}
<p>There is no built-in system for doing backups in GNU social. You can make backups of a working system by backing up the database and the Web directory. To backup the database use <ahref="https://mariadb.com/kb/en/mariadb/mysqldump/">mysqldump</a> and to backup the Web directory, try tar.
{HEADING:SUBSECTION:about_upgrading:Upgrading}
Upgrading is strongly recommended to stay up to date with security fixes
and new features. For instructions on how to upgrade GNU social code,
please refer to this section: {LINK:upgrading}.</p>