FlexicaCMS
#61
Posted 11 January 2011 - 10:46 AM
But if you dont want to wait or register or something goes wrong, give me your email, I will send the install to you.
#62
Posted 16 January 2011 - 12:04 AM
jonah, on 10 June 2010 - 12:58 AM, said:
1920x1080
About 24 inches
I understand the issue with his header, it's an easy fix - but it's for a minority crowd.
What's the point in browsing websites with your browser width so high? I'm on 1920 x 1200 and keep my FireFox/Safari window's width to around 1200px which is good for 99% of the websites out there and doesn't fill the rest of my screen with pointless empty space.
#63
Posted 04 April 2011 - 02:47 AM
How to register and donwload the latest version.
#64
Posted 18 April 2011 - 11:20 AM
#65
Posted 18 April 2011 - 01:22 PM
#66
Posted 28 April 2011 - 08:55 PM
mindplay, on 30 August 2010 - 07:17 AM, said:
It's lacking in modules because it lacks extensibility points - and I believe Flexica will suffer from the same thing. Being able to plug in new, self-contained extensions does not address cross-cutting concerns - two important extensibility points are missing:
1. Some kind of global event pipeline to enable cross-cutting functionality.
2. Some kind of document object model to enable cross-cutting content generation.
These two extensibility points are the reason why outdated content management systems like Drupal still prevails - and Wordpress, even though it provides only the global event pipeline and no real document object model.
With something much more slick and userfriendly like Flexica or Concrete5, you would expect more developers to be interested - but the fact of the matter is, they just don't provide the same degree of modular extensibility.
I don't imagine any of these features are planned for Flexica? Or if they are, I would say, you're starting at the wrong end - you need to start with an extensible architecture, and then build the standard features on top of that architecture, so that even the core features become fully exposed and fully extensible.
If you're interested, I would love to discuss this more. In fact, I think I have a Yii prototype of a global event pipeline and a simple document object model on one of my workstations somewhere...
hi i am very interest to your event pipeline idea, can you email your research results to me , actually i am troubled with the cross modules communication , email: yiqing_95@qq.com , thanks , sorry for my poor English :-)
#67
Posted 11 May 2011 - 03:43 AM
I just wanted to say, that this is a great CMS.
It has the potential to be more.
Is there a BugTracker system or a feature request site?
Greetings Jan
#68
Posted 22 June 2011 - 02:36 AM
#69
Posted 22 June 2011 - 02:37 AM

#70
Posted 22 June 2011 - 02:48 AM
#73
Posted 19 July 2011 - 12:15 AM
#74
Posted 19 July 2011 - 05:00 AM
masum, on 25 October 2010 - 09:29 PM, said:
CDbCommand failed to execute the SQL statement: SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes
Just in case someone is troubled by this error as well: it's caused by the 1000 byte limitation on key length in many MySQL builds. If you use utf8 it means you're using 3 bytes for every character, so 334 characters in the index would exceed the limit, in this case the "plugins" table definition is the culprit.
Solution:
Change
CREATE TABLE `plugins` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `Event` varchar(255) NOT NULL, `Class` varchar(255) NOT NULL, `Method` varchar(64) NOT NULL, `Config` text, `Enabled` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`Id`), UNIQUE KEY `Handler_ID` (`Event`,`Class`,`Method`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
in the file database/schema.sql to
CREATE TABLE `plugins` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `Event` varchar(255) NOT NULL, `Class` varchar(255) NOT NULL, `Method` varchar(64) NOT NULL, `Config` text, `Enabled` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`Id`), UNIQUE KEY `Handler_ID` (`Event`[b](120)[/b],`Class`[b](120)[/b],`Method`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
thus limiting the length of the key to less than 1000 bytes.
#75
Posted 09 September 2011 - 12:50 AM
#76
Posted 15 September 2011 - 05:57 PM
#77
Posted 16 September 2011 - 12:05 PM
Quote
As a skeleton, FlexiCORE provide some ready to use components, help developers to save time and focus on main business logic of their applications.
Installation
Getting started
Features:
Control (administrative) Panel with a clean user interface
User management
User login, registration widgets
RBAC Permission system
System wide and module parameters
SOA programming
Service extensions (hooks)
Purified HTML submitted data
Snippet
Inline View Widgets
mail utility
Front-end demo
check out the svn repo and wiki entries
#78
Posted 18 September 2011 - 05:09 AM
What is on Google project is not a completed version of FlexiCORE so we haven't announced about its availability. Feel free to download it and try to fix some installation bugs and hopefully it will work on your box.
As we are quite busy with some on going projects and it turns out that we misses our deadline for the new CORE, I will not "promise" a release date for this new project. We may be able to add some code and fix the bugs for ease of setup. FYI, CORE is powering all of our projects for now and we have chance to learn and apply some good ideas from our clients. We just cant afford some free resource to merge the code, do some tests and release the source to public for now.
#80
Posted 14 December 2011 - 11:14 PM
Hudson Nguyen, on 18 September 2011 - 05:09 AM, said:
What is on Google project is not a completed version of FlexiCORE so we haven't announced about its availability. Feel free to download it and try to fix some installation bugs and hopefully it will work on your box.
As we are quite busy with some on going projects and it turns out that we misses our deadline for the new CORE, I will not "promise" a release date for this new project. We may be able to add some code and fix the bugs for ease of setup. FYI, CORE is powering all of our projects for now and we have chance to learn and apply some good ideas from our clients. We just cant afford some free resource to merge the code, do some tests and release the source to public for now.
any progress? Your website has been offline for a very long time.