Thank you for purchasing Clivax - PHP Admin & Dashboard Bootstrap Template.
Clivax is built with PHP 8.2 & Bootstrap v5.3.3 in HTML, SCSS with responsive with all devices and supported with Dark, light, RTL modes. You can change mode very quickly by doing a single change. It has many features like one to one chat, group chat, contact, send files, online users, read and unread new messages from users, authentication pages and many more.
├── admin | ├── assets | | ├── css | | ├── fonts | | ├── images | | ├── js | | ├── libs | | └── scss | | ├── custom | | ├── _variables.scss | | ├── _variables-dark.scss | | ├── app.scss | | ├── bootstrap.scss | | └── icons.scss | ├── partials | | ├── body.php | | ├── config.php | | ├── footer.php | | ├── head-css.php | | ├── main.php | | ├── menu.php | | ├── page-title.php | | ├── right-sidebar.php | | ├── session.php | | ├── sidebar.php | | ├── title-meta.php | | ├── topbar.php | | └── vendor-scripts.php | ├── scssphp | ├── vendor | └── All PHP Files. ├── Documentation ├── StarterKit └── clivax-php.sql
Clivax PHP is a fully featured premium admin dashboard template built with Bootstrap v5.3.3 and PHP v8.2. Please follow below steps to install and setup all prerequisites:
Please follow below steps to install and setup all prerequisites:
Make sure to have the PHP-8.2 or latest version installed & running on your computer. If you already have installed PHP on your computer, you can skip this step.
Make sure to have the the latest version of xampp installed & running in your computer. If you already have installed Xampp on your computer, you can skip this step.
To setup the admin theme, follow below-mentioned steps:
Make sure to have all above prerequisites installed & running on your computer
After you finished with the above steps, you can run the following commands into the terminal/command prompt from the root directory ( clivax_v*/PHP/ ) of the project to run the project locally or build for production use:
Description |
---|
Set extract zip to in the file location in c:/xammp/htdos/filename .
|
Create a new database with name clivax-php,
Then import the clivax-php.sql file in your database.
|
Configure the Database credentials in the config.php file. |
You can test locally with signup as a new user to check all the pages. |
To have light mode enabled, Keep your html element with data attribute
data-bs-theme="light"
in the /partials/main.php
E.g. <html data-bs-theme="light">
to
have Light layout.
To have dark mode enabled, Keep your html element with data attribute
data-bs-theme="dark"
in the /partials/main.php
E.g. <html data-bs-theme="dark">
to
have Dark layout.
To have rtl mode enabled, replace the reference of
bootstrap.min.css
to
bootstrap-rtl.min.css
and
app.min.css
to
app-rtl.min.css
in the /partials/head-css.php
.
Also add dir="rtl"
in the html tag. e.g <html dir="rtl">