epiphany icon indicating copy to clipboard operation
epiphany copied to clipboard

A micro PHP framework that's fast, easy, clean and RESTful. The framework does not do a lot of magic under the hood. It is, by design, very simple and very powerful.

Results 32 epiphany issues
Sort by recently updated
recently updated
newest added

This stops PDO from adding single quotes around integer values. See bug here: https://bugs.php.net/bug.php?id=44639

Hi! This micro framework is good :) I'm using it but when I document my projects, I must point the last "fresh" version of Epiphany in Github that is not...

Is there a way to close the connection to the database? I'm using a script that runs as a daemon, and the database connection goes away. I can open the...

Thanks for Epiphany! Great code. I had some trouble inserting French characters with EpiDatabase, so I made the following change locally. Ideally EpiDatabase::employ would allow another parameter that can be...

![Screen Shot 2013-02-20 at 9 22 40 PM](https://f.cloud.github.com/assets/459720/179126/c16823f8-7be6-11e2-828a-fc4822be7a04.png) On the creation of the Memcached object with parameters, the expiry value is compared against empty() before returning a default value. '0'...

Found this little snag in the configuration of Apache with Epiphany. One of the critical steps when using the .htaccess file is to set the AllowOverride directive to All in...

It's about my file: require 'src/Epi.php'; Epi::setPath('base','src'); Epi::init('route'); getRoute()->get('/','hello'); getRoute()->get('/talk','talk'); getRoute()->run(); function hello(){ echo 'hello'; } function talk(){ echo 'Hello World'; } example: myhost.com/talk , It's not working , Please...

If you execute an SQL statement like this: INSERT INTO table (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1; Your original solution contains the following error. If you try to...

How is the database module error handling handled and should it be documented? https://github.com/jmathai/epiphany/blob/master/docs/Database.markdown