• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to install and configure Zimplit CMS on Fedora 34

  • 00:40 cat /etc/os-release
  • 00:57 wget https://github.com/niutech/zimplitcms/archive/3.0.zip
  • 01:06 unzip 3.0.zip
  • 01:20 mv zimplitcms-3.0/ /var/www/zimplit
  • 01:32 chown -R www-data. /var/www/zimplit
  • 01:54 chmod -R 775 /var/www/zimplit
  • 02:10 vim /etc/httpd/conf.d/zimplit.conf
  • 02:33 vi /etc/hosts
  • 03:00 mv /var/www/zimplit/zimplit.php /var/www/zimplit/index.php
  • 03:19 systemctl restart httpd
{{postValue.id}}

To Install And Configure Zimplit CMS on Fedora 34

Introduction:

CMS means Content management system, it is the software used to manage the digital content. Zimplit is the easiest Content Management System ever made. Zimplit is extremely lightweight, simple and customizable.

Prerequisites:

Apache Web server PHP and its Modules

Step 1: Check the OS version by using the below command

[root@linuxhelp ~]# cat /etc/os-release
NAME=Fedora
VERSION="34 (Workstation Edition)"
ID=fedora
VERSION_ID=34
VERSION_CODENAME=""
PLATFORM_ID="platform:f34"
PRETTY_NAME="Fedora 34 (Workstation Edition)"
ANSI_COLOR="0;38;2;60;110;180"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Fedora"
REDHAT_BUGZILLA_PRODUCT_VERSION=34
REDHAT_SUPPORT_PRODUCT="Fedora"
REDHAT_SUPPORT_PRODUCT_VERSION=34
PRIVACY_POLICY_URL=https://fedoraproject.org/wiki/Legal:PrivacyPolicy

Step 2: Install the Zimplit CMS package by using wget command.

[root@linuxhelp ~]# wget https://github.com/niutech/zimplitcms/archive/3.0.zip
--2021-11-30 21:44:04--  https://github.com/niutech/zimplitcms/archive/3.0.zip
Resolving github.com (github.com)... 13.234.210.38
Connecting to github.com (github.com)|13.234.210.38|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/niutech/zimplitcms/zip/3.0 [following]
--2021-11-30 21:44:05--  https://codeload.github.com/niutech/zimplitcms/zip/3.0
Resolving codeload.github.com (codeload.github.com)... 13.127.152.42
Connecting to codeload.github.com (codeload.github.com)|13.127.152.42|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘3.0.zip’

3.0.zip                                 [  <=>                                                              ] 435.81K  2.04MB/s    in 0.2s    
2021-11-30 21:44:06 (2.04 MB/s) - ‘3.0.zip’ saved [446272]

Step 3: After installation we need to unzip the downloaded Zimplit package by using the below command

[root@linuxhelp ~]# unzip 3.0.zip
Archive:  3.0.zip
c88bcee6f23b0277309e52d421fa84545843b370
  creating: zimplitcms-3.0/
 inflating: zimplitcms-3.0/README.md  
  creating: zimplitcms-3.0/Z-scripts/
 inflating: zimplitcms-3.0/Z-scripts/pclzip.lib.php  
 inflating: zimplitcms-3.0/Zconfig.php  
  creating: zimplitcms-3.0/editor/
 inflating: zimplitcms-3.0/editor/Gmaps.js  
 inflating: zimplitcms-3.0/editor/images/ZscripterFilesIco.gif  
 inflating: zimplitcms-3.0/editor/images/add.gif  
extracting: zimplitcms-3.0/editor/images/add_a.gif  
extracting: zimplitcms-3.0/editor/images/add_h.gif  
extracting: zimplitcms-3.0/editor/images/addpic_img.gif  
 inflating: zimplitcms-3.0/editor/images/blinker.gif  
extracting: zimplitcms-3.0/editor/images/bold.gif  
extracting: zimplitcms-3.0/editor/images/bold_a.gif  
extracting: zimplitcms-3.0/editor/images/bold_h.gif  
extracting: zimplitcms-3.0/editor/images/bug.gif  
extracting: zimplitcms-3.0/editor/images/bug_a.gif  
extracting: zimplitcms-3.0/editor/images/bug_h.gif  
extracting: zimplitcms-3.0/editor/images/changeTemplate.gif  
 inflating: zimplitcms-3.0/editor/images/changeTemplateSmall.gif  
 inflating: zimplitcms-3.0/editor/images/close.gif  
 inflating: zimplitcms-3.0/editor/images/comments_add.gif  
extracting: zimplitcms-3.0/editor/images/comments_add_big.gif  
extracting: zimplitcms-3.0/editor/images/copyPage.gif  
 inflating: zimplitcms-3.0/editor/images/delete.gif  
 inflating: zimplitcms-3.0/editor/zimplitTemplate_new.js  
 inflating: zimplitcms-3.0/editor/zimplitTemplate_new.js.php  
 inflating: zimplitcms-3.0/editor/zimplitTemplate_site.js  
 inflating: zimplitcms-3.0/editor/zimplit_default_modules.js  
 inflating: zimplitcms-3.0/editor/zimplit_gui.js  
 inflating: zimplitcms-3.0/editor/zimplit_js.php  
 inflating: zimplitcms-3.0/editor/zimplit_views.js  
 inflating: zimplitcms-3.0/zimplit.php  

Step 4: Move the Zimplit file to this location by using the below command

[root@linuxhelp ~]# mv zimplitcms-3.0/ /var/www/zimplit

Step 5: Give the owner and group name to this directory by using the below command

[root@linuxhelp ~]# chown -R apache:apache /var/www/zimplit

Step 6: Give the permission to this directory by using the below command

 [root@linuxhelp ~]# chmod -R 775 /var/www/zimplit

Step 7: Open this configuration file and create the domain hosting details by using the below command

[root@linuxhelp ~]# vim /etc/httpd/conf.d/zimplit.conf
<virtualhost *:80>
servername www.linuxhelp1.com
documentroot /var/www/zimplit
<Directory /var/www/zimplit >
AllowOverride All
allow from all 
</Directory>
</virtualhost>

Step 8: Then open the hosts entry file and enter the IP and domain details here by using the below command

 [root@linuxhelp ~]# vim /etc/hosts

Step 9: Move the zimplit.php file into this index.php location by using the below command

[root@linuxhelp ~]# mv /var/www/zimplit/zimplit.php /var/www/zimplit/index.php

Step 10: Restart the httpd service by using the below command

[root@linuxhelp ~]# systemctl restart httpd

Step 11: Then go to the browser and search your domain there as shown in the below images

Snap1

Snap2

Snap3

Conclusion:

We have reached the end of this article. In this guide, we have walked you through the steps required to install and configure Zimplit CMS on Fedora 34. Your feedback is much welcome.

Tags:
connor
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What is Zimplit's site-edit toolbar?

A

Zimplit's site-edit toolbar can be customized as well to suit the color scheme and editing needs of the reseller and their target market.

Q

What is Zimplit CMS?

A

Zimplit is an extremely lightweight, simple, and easy-to-customize Content Management System (CMS), and it is considered to be one of the easiest CMS tools ever made.
Since Zimplit consists of only one core engine file, there is not any need for a database.

Q

While calling In the browser it shows server not found. What can I do?

A

check you have properly configured semanage for documentroot . Or else disable SELinux and then try.

Q

What is the “CMS Family”?

A

CMS was designed to be an umbrella Convention giving rise to more specific instruments dealing with specific species or groups of species often in clearly defined regions.
As a result seven Agreements and international treaties in their own right have been concluded, together with 19 less formal legally non-binding Memoranda of Understanding (MOU).

Q

What are the needs of Zimplit CMS on ubuntu?

A

Install Apache2 HTTP Server On Ubuntu

Install PHP 7.2 And Related Modules

Restart Apache2

Download Batflat Latest Release

Configure Apache2 Batflat Site

Enable The Batflat Site And Rewrite the Module

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help David Lopez Guillen ?
Ayuda urgente instale SSL para servidor Opensuse y ahora no funciona tengo servicio web

hola segui este tutorial para tener un certificado ssl y ahora no se ve mi app en la red, espero alguien pueda ayudarme, tengo M9oodle en3.5 en un servidor open suse y ahora no funciona por favor ayuda.

https://www.linuxhelp.com/how-to-create-ssl-certificate-in-opensuse

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.