As far as I remember you should receive an email with download link (not activation link). Download, extract and install. If you didn’t get activation email while registering, dont wait, try one more time!
But if you dont want to wait or register or something goes wrong, give me your email, I will send the install to you.
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.
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
What is going on with the project? the old site doesn’t work and the new I found webflexica.com is look like commercisal. Is it non-free now and how much does it cost?
We are moving the host so right now you will see a message on if you visit flexicacms.com. However, there is no like to our company website or anything indicate that the CMS has become a non-free / closed source project.
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.
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.