Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bedita/responsive
HTML5 responsive frontend from http://initializr.com
https://github.com/bedita/responsive
Last synced: 21 days ago
JSON representation
HTML5 responsive frontend from http://initializr.com
- Host: GitHub
- URL: https://github.com/bedita/responsive
- Owner: bedita
- Created: 2014-05-23T13:42:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-02T10:04:03.000Z (almost 9 years ago)
- Last Synced: 2024-04-10T18:11:25.081Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 161 KB
- Stars: 2
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Responsive
===========HTML5 Responsive BEdita frontend from http://www.initializr.com/
Setup
=====a. Clone frontend responsive into local bedita frontend path, normally this is the __frontends__ folder inside bedita (like */var/www/bedita/frontends*), so:
```
cd /var/www/bedita/frontends
git clone [email protected]:bedita/responsive.git
```b. Copy *responsive/webroot/index.php.sample* to *responsive/webroot/index.php*.
c. Copy *responsive/config/core.php.sample* to *responsive/config/core.php* and modify it, if necessary...
d. Set write permissions for temporary folder *responsive/tmp*.
For example, in a unix shell, assuming 'john' is the username and current path is *frontends* folder:```
sudo chown -R john:www-data responsive/tmp
sudo chmod -R g+w responsive/tmp
```If something goes wrong take a look at log files (for example in *responsive/tmp/logs*) and tune your core.php file, changing debug level as needed (*responsive/config/core.php*).
Also read this article: http://docs.bedita.com/setup/if-something-goes-wrong-in-bedita
Note
====
If your frontend path is not inside *bedita/frontends* but elsewhere, you may edit *responsive/webroot/index.php* and set properly CAKE_CORE_INCLUDE_PATH and BEDITA_CORE_PATH.
For instance, if your bedita home path is /var/www/bedita:```
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
define('CAKE_CORE_INCLUDE_PATH', "/var/www/bedita");
}if (!defined('BEDITA_CORE_PATH')) {
define('BEDITA_CORE_PATH', "/var/www/bedita/bedita-app");
}
```