###everything africa
##INTRODUCTION
CI3 Fire Starter is a CodeIgniter3 skeleton application that includes jQuery and Bootstrap. It is intended to be light weight, minimalistic and not get in your way of building great CodeIgniter applications. It is also intended for people who want to learn CodeIgniter.
Here is what's included:
That should be the absolute minimal things you need to get started on many projects. While there are many great CodeIgniter CMS applications (see below), sometimes you don't need a full CMS, or you need something much simpler than what's available, or you need a completely customizable solution. That's why I created CI3 Fire Starter. I was tired of always having to do the same things over and over again. So I took some best practices, included all the addons and functions I most commonly use, and this was the end result, which I now use to start all of my projects.
I hope you find it useful. Please fork it on Github and help make it better!
NOTE: This documentation assumes you are already familiar with PHP and CodeIgniter. If you need to learn more about CodeIgniter, visit the user guide at http://www.codeigniter.com/userguide3/index.html. To learn more about PHP, visit http://php.net/.

##MODULAR
The former versions of CI Fire Starter (less than v3.0.0) used to implement wiredesign's Modular Extensions (https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc). At this time I have opted not to include it, however, if you have an argument in support of reimplementing it, I'm all ears... just let me know.
##BASE CLASSES
Phil Sturgeon wrote a very helpful blog post years ago called "CodeIgniter Base Classes: Keeping it DRY" (http://philsturgeon.co.uk/blog/2010/02/CodeIgniter-Base-Classes-Keeping-it-DRY). The methods he described have been applied to CI3 Fire Starter. There is a file in /application/core called MY_Controller.php which includes the Public, Private, Admin and API base classes. This allows you to use shared functionality.
####MY_Controller
This loads settings, defines includes that get passed to the views, loads logged-in user data, sets the configured timezone, and turns the profiler on or off.
####Understanding Includes
Includes can be appended and/or overwritten from any controller function.
####Public_Controller
This extends MY_Controller and drives all your public pages (home page, etc). Any controller that extends Public_Controller will be open for the whole world to see.
####Private_Controller
This extends MY_Controller and drives all your private pages (user profile, etc). Any controller that extends Private_Controller will require authentication. Specific page requests are stored in session and will redirect upon successful authentication.

####Admin_Controller
This extends MY_Controller and drives all your administration pages. Any controller that extends Admin_Controller will require authentication from a user with administration privileges. Specific page requests are stored in session and will redirect upon successful authentication.

####API_Controller
This extends MY_Controller and drives all your API functions. Any controller that extends API_Controller will be open for the whole world to see (see below for details).
##CORE FILES
####Core Config
In application/config there is a file core.php. This file allows you to set site-wide variables. It is set up with site name, site version, default templates, pagination settings, enable/disable the profiler and default form validation error delimiters.
####Core Language
In application/language/english is a file core_lang.php. This file allows you to set language variables that could be used throughout the entire site (such as the words Home or Logout).
####Core Helper
In application/helper is a file core_helper.php. This includes the following useful functions:
##LIBRARIES
####Jsi18n
In application/libraries is a file Jsi18n.php. This clever library allows you to internationalize your JavaScript files through CI language files and was inspired by Alexandros D on coderwall.com (https://coderwall.com/p/j88iog).
Load this library in the autoload.php file or manually in your controller:
$this->load->library('jsi18n');
In your language file:
$lang['alert_message'] = "This is my alert message!";
In your JS files, place your language key inside double braces:
function myFunction() {
alert("{{alert_message}}");
}
Render the Javascript file in your template file:
<script type="text/javascript"><?php echo $this->jsi18n->translate("/themes/admin/js/my_javascript_i18n.js"); ?></script>
OR in your includes array:
$this->includes = array_merge_recursive($this->includes, array(
'js_files_i18n' => array(
$this->jsi18n->translate("/themes/admin/js/my_javascript_i18n.js")
)
));
##APIS
With the API class, you can quite easily create API functions for external applications. There is no security on these, so if you need a more robust solution, such as authentication and API keys, check out Phil Sturgeon's CI Rest Server (https://github.com/philsturgeon/codeigniter-restserver). You could also just set your own request authentication headers to the code that's already there.

##SYSTEM REQUIREMENTS
##INSTALLATION
#osx-docker-lamp, a.k.a dgraziotin/lamp
Out-of-the-box LAMP+phpMyAdmin Docker image that *just works* on Mac OS X.
Including write support for mounted volumes (Website, MySQL).
No matter if using the official boot2docker or having Vagrant in the stack, as well.
osx-docker-lamp, which is known as dgraziotin/lamp in the Docker Hub, is a fork of tutumcloud/tutum-docker-lamp, which is an "Out-of-the-box LAMP image (PHP+MySQL) for Docker".
osx-docker-lamp does what tutumcloud/tutum-docker-lamp, plus:
CREATE_MYSQL_BASIC_USER_AND_DB="true", it creates a default database and user with permissions to that database##Continous Intergration run command
bash /root/continousdocker.sh
after ssh into the server. This will rebuild the continer ##Usage
If using Vagrant, please see the extra steps in the next subsection.
If you need to create a custom image youruser/lamp,
execute the following command from the osx-docker-lamp source folder:
docker build -t youruser/lamp .
If you wish, you can push your new image to the registry:
docker push youruser/lamp
Otherwise, you are free to use dgraziotin/lamp as it is provided. Remember first to pull it from the Docker Hub:
docker pull dgraziotin/lamp
###Vagrant
If, for any reason, you would rather use Vagrant (I suggest using AntonioMeireles/boot2docker-vagrant-box), you need to add the following three variables when running your box:
-VAGRANT_OSX_MODE="true" for enabling Vagrant-compatibility
-DOCKER_USER_ID=$(id -u) for letting Vagrant use your host user ID for mounted folders
-DOCKER_USER_GID=$(id -g) for letting Vagrant use your host user GID for mounted folders
See the Environment variables section for more options.
###Running your LAMP docker image
If you start the image without supplying your code, e.g.,
docker run -t -i -p 80:80 -p 3306:3306 --name osxlamp dgraziotin/lamp
At http://[boot2docker ip, e.g., 192.168.59.103] you should see an "Hello world!" page.
At http://[boot2docker ip]/phpmyadmin you should see a running phpMyAdmin instance.
###Loading your custom PHP application
In order to replace the Hello World application that comes bundled with this docker image, my suggested layout is the following:
The app folder should contain the root of your PHP application.
Run the following code from within the Project name folder.
docker run -i -t -p "80:80" -p "3306:3306" -v ${PWD}/app:/app --name yourwebapp dgraziotin/lamp
Test your deployment:
http://[boot2docker ip]
http://[boot2docker ip]/phpmyadmin
If you wish to mount a MySQL folder locally, so that MySQL files are saved on your OS X machine, run the following instead:
docker run -i -t -p "80:80" -p "3306:3306" -v ${PWD}/mysql:/var/lib/mysql -v ${PWD}/app:/app --name yourwebapp dgraziotin/lamp
The MySQL database will thus become persistent at each subsequent run of your image.
##Environment description
###The /app folder
Apache is configured to serve the files from the /app folder, which is a symbolic
link to /var/www/html. In osx-docker-lamp, the apache user www-data
has full write permissions to the app folder.
###Apache
Apache is pretty much standard in this image. It is configured to serve the Web app
at app as / and phpMyAdmin as /phpmyadmin. Mod rewrite is enabled.
Apache runs as user www-data and group staff. The write support works because the user www-data is configured to have the same user id as the one employed by boot2docker (1000).
###phpMyAdmin
The latest version of phpMyAdmin is grabbed from sourceforge and installed in
the folder /var/www/phpmyadmin.
PhpMyAdmin can be reached from
http://[boot2docker ip]/phpmyadmin. Only the users admin and user can access
phpMyAdmin.
At your convenience, a not-so-random blowfish_secret is stored in phpMyAdmin
configuration, which is at /var/www/phpmyadmin/config.inc.php
###MySQL
We will use
https://registry.hub.docker.com/u/wnameless/mysql-phpmyadmin/
as a base image. Further inspiration is to come from automatic configurations from the osx-docker-lamp, a.k.a dgraziotin/lamp
####The three MySQL users
The bundled MySQL server has two users, that are root and admin, and an optional
third user user.
The root account comes with an empty password, and it is for local connections
(e.g., using some code). The root user cannot remotely access the database
(and the container).
However, the first time that you run your container, a new user admin
with all root privileges will be created in MySQL with a random password.
To get the password, check the logs of the container by running:
docker logs [name or id, e.g., mywebsite]
You will see an output like the following:
========================================================================
You can now connect to this MySQL Server using:
mysql -uadmin -p47nnf4FweaKu -h<host> -P<port>
Please remember to change the above password as soon as possible!
MySQL user 'root' has no password but only allows local connections
========================================================================
In this case, 47nnf4FweaKu is the password allocated to the admin user.
Finally, an optional a user called user with password password can be created for your convenience either when:
CREATE_MYSQL_BASIC_USER_AND_DB is true; orMYSQL_USER_* variable (explained below) is true
The user is called user and has as password password.The user user has full privileges on a database called db, which is also created
for your convenience. As with the admin user, the user user can access
the MySQL server from any host (%).
The user name, password, and database name can be changed using
the the MYSQL_USER_* variables, explained below.
Set these variables using the -e flag when invoking the docker client.
docker run -i -t -p "80:80" -p "3306:3306" -v ${PWD}/app:/app -e MYSQL_ADMIN_PASS="mypass" --name yourwebapp dgraziotin/lamp
Please note that the MySQL variables will not work if an existing MySQL volume is supplied.
Content type
Image
Digest
sha256:da2503af8…
Size
-
Last updated
over 11 years ago
docker pull erwasambo/africachronicles