All Projects → slaff → learnzf2

slaff / learnzf2

Licence: BSD-3-Clause license
Learn ZF2: Learning Zend Framework 2 by Example

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to learnzf2

Linkedin Skill Assessments Quizzes
Full reference of LinkedIn answers 2021 for skill assessments, LinkedIn test, questions and answers (aws-lambda, rest-api, javascript, react, git, html, jquery, mongodb, java, Go, python, machine-learning, power-point) linkedin excel test lösungen, linkedin machine learning test
Stars: ✭ 7,014 (+19940%)
Mutual labels:  exam
online exam system
基于SSM的在线考试系统
Stars: ✭ 98 (+180%)
Mutual labels:  exam
Native-Exam-Analyse
PC桌面级客户端,电子化考试系统,支持多种题型,选择、填空、阅读理解、选词填空等。考试结果自动分析并可保存。
Stars: ✭ 63 (+80%)
Mutual labels:  exam
pytexexam
A simple python package to create latex exam in python
Stars: ✭ 27 (-22.86%)
Mutual labels:  exam
AndroidOMRHelper
An android application for validating images of OMR sheets before they are sent for processing.
Stars: ✭ 38 (+8.57%)
Mutual labels:  exam
AWS-Certified-Solutions-Architect-Associate
AWS Certified Solutions Architect Associate exam preparation notes
Stars: ✭ 37 (+5.71%)
Mutual labels:  exam
Kubernetes Certified Administrator
Online resources that will help you prepare for taking the CNCF CKA 2020 "Kubernetes Certified Administrator" Certification exam. with time, This is not likely the comprehensive up to date list - please make a pull request if there something that should be added here.
Stars: ✭ 3,438 (+9722.86%)
Mutual labels:  exam
ZfSnapGeoip
Maxmind Geoip module for Zend Framework 2
Stars: ✭ 15 (-57.14%)
Mutual labels:  zend-framework
lfcs
Personal notes to prepare for the Linux Foundation Certified System Administrator (LFCS) exam
Stars: ✭ 69 (+97.14%)
Mutual labels:  exam
SoftUni-Software-Engineering
SoftUni- Software Engineering
Stars: ✭ 47 (+34.29%)
Mutual labels:  exam
ZendServerSDK
Pure ZF2 CLI for zpk creation and webapi client.
Stars: ✭ 22 (-37.14%)
Mutual labels:  zend-framework
examinee
Laravel Quiz and Exam System clone of udemy
Stars: ✭ 151 (+331.43%)
Mutual labels:  exam
OMRChecker
An Android app to scan OMR Sheet http://letssolvetogether.in
Stars: ✭ 22 (-37.14%)
Mutual labels:  exam
examrank-02-03-04-05-06
exam project 2020
Stars: ✭ 195 (+457.14%)
Mutual labels:  exam
cehv9
CEHv9 - Practice Exam Questions with Answers
Stars: ✭ 55 (+57.14%)
Mutual labels:  exam
Oscp Exam Report Template Markdown
📙 Markdown Templates for Offensive Security OSCP, OSWE, OSCE, OSEE, OSWP exam report
Stars: ✭ 2,066 (+5802.86%)
Mutual labels:  exam
zend-framework-1-oauth-2-library
two new zend framework components, zend_oauth2 and zend_service_facebook
Stars: ✭ 18 (-48.57%)
Mutual labels:  zend-framework
zend-problem-details
Provides Problem Details for HTTP APIs (RFC 7807) support for PSR-7 applications.
Stars: ✭ 50 (+42.86%)
Mutual labels:  zend-framework
zf-dependency-injection
Advanced dependency injection for laminas framework
Stars: ✭ 17 (-51.43%)
Mutual labels:  zend-framework
HFUT ChemLab
A Laravel application for HFUT Chemistry lab learning and exam system.
Stars: ✭ 65 (+85.71%)
Mutual labels:  exam

Learn ZF2

"Learn ZF2" (http://learnzf2.com) is a book dedicated to help you learn fast and easy Zend Framework 2.

Source Code

The book is accompanied by source code from which you can learn by example. The source is based on the ZendSkeletonApplication version 2.1.0. You can get the latest version of the source code from its github repository: https://github.com/slaff/learnzf2

The book has two edition and this repository contains the source code for the second edition. If you are looking for the source code of the first edition of the book take a look at that repository: https://github.com/slaff/learnzf2-v1

Zend Framework Book

For more information about the book and purchase options visit its official web site: http://learnzf2.com

Development Box

If you do not feel comfortable with setting up the application and its environment then as a quick start you can use our LearnZF2 dev box which is using Vagrant and VirtualBox. If you want to experiment with Zend Framework 2 and the upcoming PHP7 you can also use the LearnZF2 VM as described here.

Application

Build Status The final version of the source code comes with ready to test Zend Framework 2 web application with prefilled SQLite database.

The steps below are needed if you don't use the LearnZF2 dev box. But we would strongly encourage you to take a look at these steps and understand their meaning.

Preparation

In order to get the dependant packages, like Zend Framework 2 for example, we have to run the following commands once in the beginning.

cd learnzf2/
./composer.phar self-update
./composer.phar install

Run from PHP built-in server

The easiest way to run the code, if you have PHP 5.4 or newer is to type:

cd learnzf2/
php -S 127.0.0.1:8080 -t public/

And then open in your browser the following URL: http://127.0.0.1:8080/

Run from separate web server

In order to use the application with via separate web server(Apache, NGINX, etc) make sure that:

The data/db/tc.sqlite file is readable from the web server user. The following commands can help you set the group to www-data and adjust the permissions.

chgrp www-data -R data/db
chmod g+rx data/db
chmod g+w data/db/tc.sqlite

Application Users

There are two users that you can use.

  1. Admin user with email: [email protected] and password admin123
  2. Member user with email: [email protected] and password member123.

If you want to take some of the sample exams that come with this application then you have to login and go to Exam -> List and choose one from the list.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].