<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>fengoffice Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/fengoffice/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 09 Jan 2021 15:25:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>Install FengOffice on Debian 10</title>
		<link>https://www.osradar.com/install-fengoffice-debian-10/</link>
					<comments>https://www.osradar.com/install-fengoffice-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 13 Jan 2021 06:24:00 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fengoffice]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27514</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install FengOffice Server on Debian 10. According to the FengOffice website Feng Office is an integrated suite of software designed to help your organization run better. Stay connected to your customers, meet project deadlines, find information faster and grow your organization. This is a tool [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-fengoffice-debian-10/">Install FengOffice on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. In this post, you will learn how to install FengOffice Server on Debian 10.</p>



<p>According to the <a href="https://www.fengoffice.com/web/" target="_blank" rel="noreferrer noopener">FengOffice website</a></p>



<blockquote class="wp-block-quote"><p>Feng Office is an integrated suite of software designed to help your organization run better. Stay connected to your customers, meet project deadlines, find information faster and grow your organization.</p></blockquote>



<p>This is a tool that can be very useful in professional environments. We also have a paid version with professional support and a community version that we can use in smaller projects.</p>



<h2>Install FengOffice on Debian 10</h2>



<p>The installation of FengOffice is possible using a server that has MariaDB, PHP, and of course, a server like Apache.</p>



<h3>1.- Install Apache, PHP 7.1, and MariaDB on Debian 10</h3>



<p>So, it is necessary to install Apache, MariaDB, and PHP 7.1 which is the version that will not give us problems with FengOffice.</p>



<p>So, we have to add the repository to install PHP 7.1</p>



<pre class="wp-block-preformatted">wget https://packages.sury.org/php/apt.gpg<br>sudo apt-key add apt.gpg<br>echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php7.list</pre>



<p>And finally, install all the necessary packages:</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt install apache2 mariadb-server php7.1 php7.1-mysql php7.1-curl php7.1-json php7.1-cgi libapache2-mod-php7.1 php7.1-xmlrpc php7.1-gd php7.1-mbstring php7.1-common php7.1-soap php7.1-xml php7.1-intl php7.1-cli php7.1-ldap php7.1-readline php7.1-imap php7.1-tidy php7.1-recode php7.1-zip php7.1-sq unzip catdoc xpdf ghostscript imagemagick wkhtmltopdf</pre>



<p>Don&#8217;t forget to configure MariaDB with the mysql_secure_installation script</p>



<pre class="wp-block-preformatted">mysql_secure_installation</pre>



<p>Define the root password and answer the questions indicated.</p>



<h3>2.- Creting the new Database for FengOffice</h3>



<p>Now it is necessary to create a new database together with a new user using FengOffice.</p>



<p>Open the MariaDB shell:</p>



<pre class="wp-block-preformatted">sudo mysql -u root -p</pre>



<p>And it creates the database as well as the user and assigns the corresponding permissions:</p>



<pre class="wp-block-preformatted">CREATE DATABASE fengdb;<br>GRANT ALL PRIVILEGES ON fengdb.* TO 'fenguser'@'localhost' IDENTIFIED BY 'fengpss';<br>FLUSH PRIVILEGES;<br>EXIT;</pre>



<p>You can change the values of the database, the user, and the password on your own. The password must be strong enough.</p>



<h3>3.- Configure PHP before using FengOffice</h3>



<p>To ensure the highest possible stability, it is recommended to make some changes to PHP. More than anything else we will increase the resources it can consume.</p>



<p>So, in the files <code>/etc/php/7.1/cli/php.ini</code> and <code>/etc/php/7.1/apache2/php.ini</code> set the following values.</p>



<pre class="wp-block-preformatted">max_execution_time = 300<br>max_input_time = 300<br>memory_limit = 512M<br>html_errors = Off<br>post_max_size = 250M<br>upload_max_filesize = 200M</pre>



<p>As you are using nano, a very quick way to do this is to press the <code>CTRL + W</code> keys to enable the search and make everything easier.</p>



<p>When you make your changes, close the editor and apply your changes:</p>



<pre class="wp-block-preformatted">sudo systemctl restart apache2</pre>



<h3>4.- Download FengOffice on Debian 10</h3>



<p>Now we can download FengOffice without any problem</p>



<p>To do this, execute <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener">the command wget</a></p>



<pre class="wp-block-preformatted">wget -O fengoffice.zip --no-check-certificate https://www.fengoffice.com/web/reference.php?dest=latest_version
--2021-01-07 19:38:45--  https://www.fengoffice.com/web/reference.php?dest=latest_version
 Resolving www.fengoffice.com (www.fengoffice.com)… 192.99.15.151
 Connecting to www.fengoffice.com (www.fengoffice.com)|192.99.15.151|:443… connected.
 HTTP request sent, awaiting response… 302 Found
 Location: https://github.com/fengoffice/fengoffice/archive/3.7.0.5.zip [following]
 --2021-01-07 19:38:46--  https://github.com/fengoffice/fengoffice/archive/3.7.0.5.zip
 Resolving github.com (github.com)… 140.82.121.4
 Connecting to github.com (github.com)|140.82.121.4|:443… connected.
 HTTP request sent, awaiting response… 302 Found
 Location: https://codeload.github.com/fengoffice/fengoffice/zip/3.7.0.5 [following]
 --2021-01-07 19:38:46--  https://codeload.github.com/fengoffice/fengoffice/zip/3.7.0.5
 Resolving codeload.github.com (codeload.github.com)… 140.82.121.10
 Connecting to codeload.github.com (codeload.github.com)|140.82.121.10|:443… connected.
 HTTP request sent, awaiting response… 200 OK
 Length: unspecified [application/zip]
 Saving to: ‘fengoffice.zip’
 fengoffice.zip                                 [        &lt;=&gt;                                                                           ]  14.43M  9.06MB/s    in 1.6s    
 2021-01-07 19:38:48 (9.06 MB/s) - ‘fengoffice.zip’ saved [15128364]</pre>



<p>And after the download is done, you can decompress the file with the command unzip</p>



<pre class="wp-block-preformatted">unzip fengoffice.zip</pre>



<p>Move the generated folder to the Apache root directory.</p>



<pre class="wp-block-preformatted">sudo mv fengoffice-3.7.0.5 /var/www/html/fengoffice</pre>



<p>And assign the necessary permissions to the folder. Also, make Apache the owner of the folder.</p>



<pre class="wp-block-preformatted">sudo chown -R www-data:www-data /var/www/html/fengoffice<br>sudo chmod -R 777 /var/www/html/fengoffice</pre>



<p>After this, create a new Virtualhost for FengOffice:</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-available/feng.conf</pre>



<p>And add the following:</p>



<pre class="wp-block-preformatted">&lt;VirtualHost *:80&gt;
          ServerAdmin admin@your-server.com
          DocumentRoot /var/www/html/fengoffice
          ServerName your-server.com

         &lt;Directory /var/www/html/fengoffice/&gt;
               Options FollowSymlinks
               AllowOverride All
               Require all granted
         &lt;/Directory&gt;

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

&lt;/VirtualHost&gt;</pre>



<p>Replace the <code>ServerName</code> and <code>ServerAdmin</code> values with your own.</p>



<p>Save the changes and close the file.</p>



<p>Then, activate the new Virtualhost as well as the rewrite modules and headers</p>



<pre class="wp-block-preformatted">sudo a2ensite feng.conf<br>sudo a2enmod rewrite headers</pre>



<p>And apply the changes by restarting Apache</p>



<pre class="wp-block-preformatted">sudo systemctl restart apache2</pre>



<h3>5.- Secure the installation with Let&#8217;s Encrypt</h3>



<p>If you are going to use FengOffice on a server that will be accessible from the Internet then you should use HTTPS</p>



<p>There is nothing better than Let&#8217;s Encrypt to generate certificates for your domain quickly and conveniently.</p>



<p>So, install the packages with the following command</p>



<pre class="wp-block-preformatted">sudo apt install certbot python-certbot-apache</pre>



<p>Now create and add the certificate with the following command</p>



<pre class="wp-block-preformatted">sudo certbot --apache -d your-domain.com</pre>



<p>Follow the instructions and at the end, you will be able to access it using HTTPS</p>



<h3>6.- Install FengOffice on Debian 10</h3>



<p>Now you can access <code>https://your-domain</code> and you will see the following screen:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/01/2-4-1024x502.png" alt="2.- Welcome screen" class="wp-image-27516" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/2-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Welcome screen</figcaption></figure>



<p>Afterwards, the installer will verify that the whole system meets the requirements.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/3-3-1024x525.png" alt="3.- Environment checks" class="wp-image-27517" srcset="https://www.osradar.com/wp-content/uploads/2021/01/3-3-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/3-3-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/3-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Environment checks</figcaption></figure>



<p>Then you have to type the values of the database we have created as well as the credentials of the new user.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="568" src="https://www.osradar.com/wp-content/uploads/2021/01/4-1-1024x568.png" alt="4.- Database configuration" class="wp-image-27518" srcset="https://www.osradar.com/wp-content/uploads/2021/01/4-1-1024x568.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-300x166.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-768x426.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-696x386.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/4-1-1068x593.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/4-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Database configuration</figcaption></figure>



<p>Next, you will see a screen indicating that the installation was successful and then you will have to create the new user by clicking <em>Finish</em>.</p>



<p>Create the new admin user with the credentials you want.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/5-1-1024x525.jpg" alt="5.- Creating the new user" class="wp-image-27519" srcset="https://www.osradar.com/wp-content/uploads/2021/01/5-1-1024x525.jpg 1024w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-300x154.jpg 300w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-768x394.jpg 768w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-696x357.jpg 696w, https://www.osradar.com/wp-content/uploads/2021/01/5-1-1068x547.jpg 1068w, https://www.osradar.com/wp-content/uploads/2021/01/5-1.jpg 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Creating the new user</figcaption></figure>



<p>Then you will see the login screen</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/6-1-1024x525.png" alt="6.- FengOffice login screen" class="wp-image-27520" srcset="https://www.osradar.com/wp-content/uploads/2021/01/6-1-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/6-1-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/6-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- FengOffice login screen</figcaption></figure>



<p>And now yes the administration panel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/7-1-1024x525.png" alt="7.- FengOffice running on Debian 10" class="wp-image-27521" srcset="https://www.osradar.com/wp-content/uploads/2021/01/7-1-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/7-1-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/7-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- FengOffice running on Debian 10</figcaption></figure>



<p>Enjoy it.</p>



<h2>Conclusion</h2>



<p>FengOffice is used by many companies worldwide as a practical solution to collaborative environments. This application is quite good and easy to install as we have noticed today</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-fengoffice-debian-10/">Install FengOffice on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-fengoffice-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Feng Office on a web server</title>
		<link>https://www.osradar.com/how-to-install-feng-office-on-a-web-server/</link>
					<comments>https://www.osradar.com/how-to-install-feng-office-on-a-web-server/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Sat, 15 Aug 2020 21:43:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[fengoffice]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[webserver]]></category>
		<category><![CDATA[xampp]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=22736</guid>

					<description><![CDATA[<p>Hello! We continue to explore the world of web development. Specifically, the additions we can make to a web server. This time, we&#8217;ll talk a little about Feng Office. This is a project and team management web application. It also allows you to edit, share, and publish documents, emails, and calendars. Similarly, it is aimed [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-feng-office-on-a-web-server/">How to install Feng Office on a web server</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello! We continue to explore the world of web development. Specifically, the additions we can make to a web server. This time, we&#8217;ll talk a little about Feng Office. This is a project and team management web application. It also allows you to edit, share, and publish documents, emails, and calendars. Similarly, it is aimed at improving the productivity of the group with web document management and CRM. It is based on PHP and MySQL. As you can see, it has very interesting features. So let&#8217;s see how to install Feng Office on a web server.</p>



<h2>Prerequisites</h2>



<ul><li><a href="https://www.osradar.com/how-to-install-apache-on-windows-10/" target="_blank" rel="noreferrer noopener">Apache Web Server</a></li><li><a href="https://www.osradar.com/how-to-install-mysql-in-windows-10/" target="_blank" rel="noreferrer noopener">MySQL database</a></li><li><a href="https://www.osradar.com/how-to-install-php-in-windows-10/" target="_blank" rel="noreferrer noopener">PHP</a></li></ul>



<p>You can install these components independently, as I explain in each of the links. However, a faster and more comfortable option is through <a href="https://www.osradar.com/how-to-install-xampp-on-windows-10/" target="_blank" rel="noreferrer noopener">Xampp.</a></p>



<h2>Downloading Feng Office Community Edition</h2>



<p>This is open-source software. However, it offers a free version and two paid versions called Professional and Enterprise Edition. It is also possible to enjoy a free trial of the software. Nevertheless, today we will use the Community Version. Which is very complete and also free. You can download it from this <a href="https://github.com/fengoffice/fengoffice/archive/3.8.3.3.zip" target="_blank" rel="noreferrer noopener">link.</a> Once you have downloaded the file, please unzip it and paste it into the <em>httdocs</em> folder.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng13-1024x787.png" alt="Paste the contents of the uncompressed file into the httdocs folder" class="wp-image-22744" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng13-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng13.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Paste the contents of the uncompressed file into the httdocs folder</figcaption></figure>



<h2>Installing Feng Office.</h2>



<h3>Creating the database</h3>



<p>With the Apache and MySQL servers up and running, it&#8217;s time to create the database for Feng Office. For this example, we will use the PhpMyAdmin tool included in Xampp. Also, you can assign any name you want to the database.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng-1024x787.png" alt="Creating the database for Feng Office with phpMyAdmin" class="wp-image-22746" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Creating the database for Feng Office with phpMyAdmin</figcaption></figure>



<h3>Configuring Feng Office on the web server.</h3>



<p>Once the database is created, please paste the following address into your web browser: http://localhost/fengoffice-3.8.3.3. This action will launch the application installer. On the welcome screen, please press Next to begin the installation.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng2-1024x787.png" alt="Press Next to start the installation. " class="wp-image-22748" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng2-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng2-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng2-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng2-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng2-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng2-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng2.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Press Next to start the installation.</figcaption></figure>



<p>Then, the wizard will check the requirements to continue the installation. In addition, it will mark possible errors in red. If everything is in order, please press <strong>Next</strong> to continue.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng3-1024x787.png" alt="Press Next to start the installation. " class="wp-image-22751" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng3-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng3-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng3-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng3-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng3-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng3-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng3.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Press Next to start the installation.</figcaption></figure>



<p>Then enter the corresponding values into the database. Such as user name, database name, password, among others. Likewise, you can choose the plug-ins to be installed.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="796" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng4-1024x796.png" alt="Please configure the database. " class="wp-image-22753" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng4-1024x796.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-300x233.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-768x597.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-696x541.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-1068x830.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng4.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Please configure the database.</figcaption></figure>



<p>After a few moments, you are ready to finish the installation of the app.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng5-1024x787.png" alt="Finish the installation" class="wp-image-22755" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng5-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng5-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng5-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng5-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng5-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng5-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng5.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Finish the installation</figcaption></figure>



<h2>Configuring the Feng Office admin user.</h2>



<p>At this point it is necessary to enter the administrator&#8217;s credentials. That is, the username and email address. In addition to the password and the name of the company.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng6-1024x787.png" alt="Setting up the administrator" class="wp-image-22757" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng6-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng6-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng6-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng6-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng6-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng6-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng6.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Setting up the administrator</figcaption></figure>



<p>Finally, login to the app using your newly created credentials.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng7-1-1024x787.png" alt="Entering the Feng Office as administrator. " class="wp-image-22761" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng7-1-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng7-1-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng7-1-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng7-1-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng7-1-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng7-1-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng7-1.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Entering the Feng Office as administrator.</figcaption></figure>



<h2>First steps with Feng Office</h2>



<h3>Adding the calendar</h3>



<p>After logging in as the administrator, the program&#8217;s Dashboard will be displayed. In the first place, click on <strong>System Modules.</strong> </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng8-1024x787.png" alt="Go to the system modules" class="wp-image-22764" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng8-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng8.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Go to the system modules</figcaption></figure>



<p>For this example, I will select Calendar. Then click on Apply changes to add the new feature. Please note that you can add any feature from this box.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng9-1024x787.png" alt="Adding the new Calendar module" class="wp-image-22766" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng9-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng9-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng9-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng9-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng9-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng9-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng9.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Adding the new Calendar module</figcaption></figure>



<p>Back to the main screen, you can see that the Calendar module has been successfully added.</p>



<h3>Adding a new user</h3>



<p>Please click on Users to add a new user or group of users.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng10-1024x787.png" alt="" class="wp-image-22768" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng10-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng10-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng10-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng10-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng10-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng10-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng10.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then add the user&#8217;s data and finally click on <strong>Add user.</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng11-1024x787.png" alt="" class="wp-image-22769" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng11-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng11.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Adding a new user</figcaption></figure>



<p>Finally, you will see the new user within the list.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng12-1024x787.png" alt="" class="wp-image-22771" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng12-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng12-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng12-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng12-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng12-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng12-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng12.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>From now on, I invite you to continue exploring the app. You can manage your workspaces or create new tasks. Feng Office is very intuitive and easy to use. I hope you enjoyed how to install Feng Office on your web server. Bye!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-feng-office-on-a-web-server/">How to install Feng Office on a web server</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-feng-office-on-a-web-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
