Giter Club home page Giter Club logo

flextype's Introduction

Flextype

License MIT GitHub Repo stars GitHub forks Hits of Code



INTRODUCTION

Flextype is Modern Open Source Flat Files Content Management System. Building this Content Management System, we focused on simplicity. To achieve this, we implemented a simple but powerful API's.

With Flextype, you are in complete control. Design your data structure the way you want. Update and share your data with others and teams using version control. Flextype does not require MySQL database, because all the data are collected in a simple files. Perfect portability when changing your hosting provider. Just copy all the files from one server to another.

The underlying architecture of Flextype is built using well established and best-in-class technologies. This is to ensure that Flextype is simple to use and easy to extend.

REQUIREMENTS

SYSTEM REQUIREMENTS

Make sure your server meets the following requirements.

  • Webserver (Apache, Nginx, etc.)
  • PHP 8.1 or higher

PHP EXTENSIONS

Flextype needs the following PHP extensions to be enabled:

Although it is optional, we strongly recommend enabling the following PHP extensions: APC, APCu, XCache, Memcached, or Redis for better performance.

QUICK INSTALLATION

  1. Download the latest version of Flextype.
  2. Unzip the contents to a new folder on your local computer, and upload to your webhost using the (S)FTP client of your choice. After you’ve done this, create directory project and be sure to chmod the following directory to 755 (or 777), so it is readable and writable by Flextype.

read the documentation

COMMUNITY

Flextype is open source, community driven project, and maintained by community!

You may use GitHub Discussions to start discussion about core, plugin and themes development or If you want to report a bug, you can use the GitHub Issues.

Follow Flextype on Twitter to get real-time news regarding the development and all events we are attending.

SUPPORTING Flextype

Flextype is an open source project and community contributions are essential to its growing and success.

Contributing to the Flextype is easy and you can give as little or as much time as you want.

FINANCIAL SUPPORT

Flextype is an MIT-licensed open source project and completely free to use.

However, the amount of effort needed to maintain and develop new features for the project is not sustainable without proper financial backing.

You can support it's ongoing development by being a project supporter:

PLATFORM CONTRIBUTIONS

Another excellent way to help out is by contributing your time or services.

BUG REPORTING

We are using GitHub Issues to manage our public bugs. We keep a close eye on this so before filing a new issue, try to make sure the problem does not already exist.

PULL REQUESTS

We actively welcome your pull requests!

If you need help with Git or our workflow, please ask in our community chat. We want your contributions even if you're just learning Git. Our maintainers are happy to help!

DOCS

You may help us to create amazing knowledge base for Flextype. Fix spelling, add code examples, help organize, write new articles, and etc...

LICENSE

The MIT License (MIT) Copyright (c) Sergey Romanenko

flextype's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

flextype's Issues

Routing

can You make a router (plugin or class) for Flextype like Flight php microframwork with regular expresions,named parameters,optional parameters and wildcards ?

How do I make links to pages?

I apologize for this stupid question, but I simply don't understand what I'm doing wrong. I believe I am following the documentation properly.

I have the following pages:

  • /var/www/html/site/pages/home/page.md
  • /var/www/html/site/pages/cv/page.md

all files and directories are owned by www-data. cache is off.

../home/page.md contains [link](/cv), but following the link gives a 404 error.

Running nginx on debian stable.

TinyMCE

Yes, thank you for 0.7 with admin! Please add Tiny MCE editor as a plugin.

Updates for .htaccess

Should be added

  • Preventing Exploits
  • Rewrite rules for Index
  • Security section
  • Rewrite rules for SEO improvements.
  • Prevent Browsing and Set Default Resources

После обновления на Flextype 0.4.3 - Internal Server Error 500

Развернул Flextype 0.4.3

    • Скопировал каталог home
    • Переименовал в test

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at [no address given] to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.

Snippets and Blocks like in Monstra

Please do snippets and blocks at least good like in Monstra or better.
It is very simple to use in content and php files even for people are not webmasters!

Please do Flextype for people, not only for webmasters.

Admin panel - Layout / Field options

I have several questions and improvment ideas for the admin panel which I would like to share.
I don't know wether you know Kirby cms (www.getkirby.com), but they have some good functions for users to use own fields and create own sections.

The first and most usefull (in my opinion) is the fields option to create a layout with specific content for each template. Kirby uses a .yaml file to define content.
For example: (https://getkirby.com/docs/panel/blueprints/form-fields)

fields:
    text:
        label: Text
        type: textarea
        required: true

creates a textfield where the content can be accessed from the template.

Another great idea are structured fields. They can be used to create several items with the same structure (for example team members).
See: https://getkirby.com/docs/cookbook/structured-field-content

My last question is about the file syntax Flextype uses to store all the information. Due to the fact that it does not use a database a flexible storing mechanism would be prefarable.
Could you provide an example of a saved file?

Logo design

Hello, I'm a logo designer and I can make a new free logo for your project. Do you want a new logo design?

Flextype for very big websites

Please make Flextype for big projects/websites with thousands of subpages - also lightweight and fast.

Please make Flextype easy to use above all for people who are not webmasters or designers and then will have lot's of sponsors!

custom css plugin

below is my code to make a custom css for site wite short code

namespace Flextype;

use Thunder\Shortcode\Shortcode\ShortcodeInterface;
use Flextype\Component\{Event\Event};

//
// Shortcode: [css]
//
Event::addListener('onShortcodesInitialized', function () {
	
    Content::shortcode()->addHandler('css', function(ShortcodeInterface $s) {
		
		return '<style>'.$s->getContent().'</style>';
		    	
    });
	
});

is it possible to place the custom css code using shortcode in site <head> with this function:

Event::addListener('onThemeHeader', function () {
   
});

Flextype Admin Panel: add RTL url support.

Hi, I just new started with FlexType, i find it really flex in development, not with RTL url support, say i want to create a page such /blog/موضوع-جديد which is same as /blog/new-topic , the CMS will not allow it.
The CMS is flex and growing and i think its very important if it could support RTL url's.

Admin plugin

Create admin plugin to manage

  • Pages
  • Plugins
  • Users
  • Settings

Self home page Title

Please make function in admin panel to set Home Title without Site Title.
Now in main domain www.domain.com is "Home Title | Flextype" - and needed is only "Home Title". This is very very important and needed.

Please make Flextype easy to use above all for people who are not webmasters or designers! :-)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.