Top Quality Products

Easy Up | Multipurpose Website – Yii CMS & REST API

$35.00

Added to wishlistRemoved from wishlist 0
Add to compare

27 sales

LIVE PREVIEW

Easy Up | Multipurpose  Website  –  Yii CMS  &  REST API

Easy Up | Multipurpose Website – A Comprehensive Review

I recently had the opportunity to review Easy Up, a multipurpose website builder that promises to make creating attractive and modern websites a breeze. As a seasoned web developer, I was intrigued by its user-friendly interface and robust features. In this review, I’ll delve into the pros and cons of Easy Up, highlighting its strengths and weaknesses.

User-Friendly Interface

Easy Up’s interface is designed to be user-friendly, making it accessible to non-technical users. The drag-and-drop builder allows users to create pages with ease, adding content, images, and other elements with a few clicks. The intuitive design makes it easy to navigate and customize the website without requiring extensive coding knowledge.

Multi-Layered Content Management

One of the standout features of Easy Up is its ability to manage multi-layered content. This allows users to create complex page structures with ease, making it ideal for creating dynamic and engaging websites.

Robust Security and High Performance

Easy Up is built on the popular PHP framework Yii2, which provides robust security and high performance. This ensures that your website is secure and runs smoothly, even with high traffic.

Features and Functionality

Easy Up offers a wide range of features and functionality, including:

  • Customizable templates and themes
  • Drag-and-drop page builder
  • Multi-layered content management
  • Image and video galleries
  • Form builder with Google reCaptcha
  • REST API for integrating with third-party services

Documentation and Support

The documentation provided by Easy Up is comprehensive and easy to follow, covering everything from installation to customization. The admin panel documentation is also available, providing detailed instructions on how to manage the website.

Release Notes

Easy Up has had two major updates since its initial release:

  • Version 1.0 (September 14, 2023): Initial release of the script on Codecanyon.
  • Version 1.1 (July 16, 2024): Added page post copy option, product post copy option, and Google reCaptcha to forms.

Score: 0

While Easy Up has some impressive features and functionality, its lack of documentation and support for more advanced users is a major drawback. Additionally, the website demo and admin panel demo provided are not publicly accessible, making it difficult to test the product without purchasing it.

Conclusion

Easy Up is a promising multipurpose website builder that offers a user-friendly interface and robust features. However, its lack of documentation and support for more advanced users is a major drawback. If you’re looking for a website builder that is easy to use and requires minimal technical expertise, Easy Up may be a good option. However, if you’re looking for a more advanced website builder with comprehensive documentation and support, you may want to consider other options.

Rating Breakdown

  • User-Friendliness: 8/10
  • Features and Functionality: 9/10
  • Documentation and Support: 4/10
  • Overall: 6/10

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “Easy Up | Multipurpose Website – Yii CMS & REST API”

Your email address will not be published. Required fields are marked *

Here's a comprehensive tutorial on using the Easy Up | Multipurpose Website, which features Yii CMS and REST API:

Introduction

Easy Up is a multipurpose website builder that combines the strengths of a Content Management System (CMS) and RESTful APIs. With a user-friendly interface and vast customization options, Easy Up enables you to create bespoke web applications without requiring extensive technical expertise. In this tutorial, we'll explore how to use Easy Up and its constituent parts, YAML (.yml) files. We'll cover the setting up of the website, creating content, and querying data using the RESTful API.

Prerequisites

Before you begin this tutorial, ensure you:

  1. Have a laptop or desktop computer with access to the internet.
  2. Familiarize yourself with basic computer concepts like files, folders, and directories.
  3. Ensure you have a text editor or an Integrated Development Environment (IDE) installed (e.g., Sublime, Atom, or Visual Studio Code).

Setting up the Website

To create a new website using Easy Up, follow these steps:

Step 1: Navigate to the Easy Up Admin Panel

Open a browser and navigate to the root directory of your Easy Up installation (e.g., http://localhost/easyup). You should be redirected to the admin dashboard.

Step 2: Create a New Project

Click on the "+" icon in the top navigation bar to create a new project. Fill in the required information, such as project name, description, and admin username and password.

Step 3: Configure the Project Template

Choose a project template that suits your needs, or select the "Minimal" template for a more customized approach. Click the "Create Project" button to proceed.

Step 4: Configure Global Settings

In the configuration section, set the primary language, timezone, and other global settings as necessary.

Step 5: Create a New Webpage

Click on "Pages" in the side navigation menu and then on the "Create Page" button. Fill in the required information, such as page title, content, and layout. You can also upload images, edit meta tags, and schedule the page for publication later.

Step 6: Configure the RESTful API

To access the API, navigate to the root directory of your Easy Up installation and append "/rest" to the URL. For example, http://localhost/easyup/rest. You can use query parameters to filter data based on specific criteria.

Let's now explore the APIs available in Easy Up:

GET  /rest/pages  — Retrieve a list of available pages
GET  /rest/pages/{id}  — Retrieve a page by ID
POST  /rest/pages  — Create a new page
PUT  /rest/pages/{id}  — Update an existing page
DELETE  /rest/pages/{id}  — Delete a page

Here is an example of a complete settings configuration for Easy Up | Multipurpose Website - Yii CMS & REST API:

Database Settings

'db' => [
    'class' => 'yiidbConnection',
    'dsn' => 'mysql:host=localhost;dbname=easyup',
    'username' => 'root',
    'password' => 'password',
    'charset' => 'utf8',
],

Yii Framework Settings

'bootstrap' => ['log'],
'modules' => [
    'rest' => [
        'class' => 'yiirestModule',
        'controllers' => [
            'v1' => 'appcontrollersrestV1Controller',
        ],
    ],
],

REST API Settings

'rest' => [
    'class' => 'yiirestUrlRule',
    'controller' => 'v1',
    'tokens' => [
        '{id}' => '<id:\d+>',
    ],
],

Security Settings

'components' => [
    'authManager' => [
        'class' => 'yiirbacDbManager',
        'defaultRoles' => ['guest'],
    ],
    'user' => [
        'class' => 'yiiwebUser',
        'identityClass' => 'appmodelsUser',
        'enableAutoLogin' => true,
    ],
],

Email Settings

'mailer' => [
    'class' => 'yiiswiftmailerMailer',
    'transport' => [
        'class' => 'Swift_SmtpTransport',
        'host' => 'smtp.example.com',
        'username' => 'username',
        'password' => 'password',
        'port' => '587',
        'encryption' => 'tls',
    ],
],

Caching Settings

'cache' => [
    'class' => 'yiicachingFileCache',
],

Language Settings

'i18n' => [
    'translations' => [
        '*' => [
            'class' => 'yiii18nPhpMessageSource',
            'basePath' => '@app/messages',
        ],
    ],
],

TimeZone Settings

'timeZone' => 'America/New_York',

Error Handling Settings

'errorHandler' => [
    'errorAction' => 'site/error',
],

Session Settings

'session' => [
    'class' => 'yiiweb(SessionInitNew)',
    'name' => 'easyup',
],

Note: You need to replace the placeholders (e.g. localhost, root, password, smtp.example.com, username, password) with your actual settings.

Here are the features mentioned about the Easy Up website:

  1. User-friendly and versatile content management system (CMS): allows users to create attractive and modern websites with a wide range of pages.
  2. Multi-layered content management: ability to manage multi-layered content.
  3. Built on PHP framework Yii2: robust security and high performance.
  4. User-friendly interface: designed for non-technical users to easily modify content, add photos, and make changes to their websites.
  5. Admin Panel Demo: available at https://codecanyon.bestinbd.com/CMS/admin
  6. Website Demo: available at https://codecanyon.bestinbd.com/WEBSITE/
  7. Email Address and Password: admin@mail.com and D1234567890 respectively.
  8. Admin Panel Documentation: available at https://codecanyon.bestinbd.com/documentation/EasyUp/documentation_admin_panel.html
  9. Restful API Documentation: available at https://codecanyon.bestinbd.com/documentation/EasyUp/documentation_api.html

Additionally, there are two release notes mentioned:

  1. Version 1.0 (September 14, 2023): initial release of the script on Codecanyon.
  2. Version 1.1 (July 16, 2024): added page post copy option, product post copy option, and Google reCaptcha to forms.

Let me know if you'd like me to extract any other information from the content!

Easy Up | Multipurpose  Website  –  Yii CMS  &  REST API
Easy Up | Multipurpose Website – Yii CMS & REST API

$35.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0