TYPO3 Neos Alpha 1 Installation Guide

38
(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012 TYPO3 NEOS ALPHA1 Installation Guide 06.10.2012 (v 1.0.1) Patrick Lobacher (CEO typovision GmbH) 1

description

TYPO3 Neos is the next-generation content management system of the TYPO3 community. In this guide I will explain the simple installation process to help people to get started with this stunning CMS. Download the presentation under: http://www.exponeos.com/TYPO3-Neos-Alpha1-Installation-Guide-typovision.pdf Have fun with TYPO3 Neos!!

Transcript of TYPO3 Neos Alpha 1 Installation Guide

Page 1: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

TYPO3 NEOS ALPHA1Installation Guide

06.10.2012 (v 1.0.1)

Patrick Lobacher (CEO typovision GmbH)

1

Page 2: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

TYPO3 NEOS?The Next Generation CMS

2

Page 3: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

WHAT IS TYPO3 NEOS?

• TYPO3 Neos is the next-generation content management system of the TYPO3 community.

• It is based on the TYPO3 Flow Application Framework (formerly known as FLOW3)

• The code name was TYPO3 Phoenix and it was meant to be the successor of the famous TYPO3 CMS.

• From 05th of october 2012 it is called TYPO3 Neos• Neos = νέος = is greek and means: new, fresh, young, ...(http://en.wiktionary.org/wiki/%CE%BD%CE%AD%CE%BF%CF%82)

3

Page 4: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

WHAT MAKES NEOS SPECIAL?

• What makes Neos so special?

• Neos is build with the developers needs in mind• Neos foundation is the rock solid framework TYPO3 Flow• Neos is build for extensibility - there are plugins and TypoScript (yeah!)• Neos has In-Page editing via Aloha (or Hallo) Editor in place• Neos uses not just a relational database but a fully featured content

repository - called TYPO3CR• Neos is much more than just a CMS - there is a deployment tool called

TYPO3 Surf for instance which can easily talk to your Jenkins server

4

Page 5: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SYSTEM REQUIREMENTSto run TYPO3 Neos

5

Page 6: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SYSTEM REQUIREMENTS

• What do you need to run TYPO3 Neos?

• A web server (recommended is Apache with the mod_rewrite module enabled)

• PHP 5.3.2 - 5.4.x• Make sure these PHP-Functions are not disabled: system(), shell_exec(), escapeshellcmd() and escapeshellarg()

• php.ini: memory_limit should 256M or more• php.ini: xdebug.max_nesting_level = 500 (if you use xdebug)

• MySQL 5.1.50 - 5.x.x (for this guide - later Doctrine DBAL DBs are possible)

• Command line access

6

Page 7: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

INSTALLATIONGet ready for Neos!

7

Page 8: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

INSTALL STEP 1

• Installing Neos: Step 1 - Files

• Download Sources from this URL: http://neos.typo3.org/TYPO3-Neos-1.0-alpha1.zip

• Unzip the sources to your htdocs directory • This directory depends on your system - could be

/opt/local/apache2/htdocs/var/www/Applications/XAMPP/xamppfiles/htdocsC:\xampp\htdocs...or similar...

8

Page 9: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

INSTALL STEP 2

• Installing Neos: Step 2 - Virtual Host

• Add a virtual host entry (important is pointing to Web-Subdir in DocumentRoot-Path):

NameVirtualHost *:80 # if needed<VirtualHost *:80> DocumentRoot "/your/htdocs/TYPO3-Neos-1.0-alpha1/Web/" # skip the following line for development Setenv FLOW_CONTEXT Production ServerName neos.demo</VirtualHost>

• Add an entry to your /etc/hosts file 127.0.0.1 neos.demo

• Restart webserver

9

Page 10: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

INSTALL STEP 2

• Installing Neos: Step 2 - Virtual Host

• Or use your tool settings if you use a tool like MAMPor MAMP PRO:

10

Page 11: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

INSTALL STEP 3

• Installing Neos: Step 3 - Permission

• Correct user permissions on a Mac/Linux-System:

sudo ./flow flow:core:setfilepermissions shelluser wwwuser wwwgroup

• As shelluser use the user with you logged into your system (patricklobacher on mine system e.g.) or create a new user for this

• As wwwuser use the user the webserver runs with - this could be one of the following: _www, www, www-data, httpd

• As wwwgroup use the group the webserver runs with - this could be one of the following: _www, www, www-data, httpd

11

Page 12: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUPLet Neos Flow!

12

Page 13: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUP STEP 1

• Go to the Neos setup page with the browser: http://neos.demo/setup/

• The (random)passwordcan be found at/htocspath/Data/SetupPassword.txt

• Open the file andwrite down the pass

• The file will be deleted after installation

13

Page 14: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUP STEP 1

• If you have already done the setup or something else went wrong, you have to reset the password. For this, delete the file /hotdocspath/Data/Persistent/FileBasedSimpleKeyService/SetupKeyand restart the setup.

14

Page 15: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUP STEP 2

• If credentials are correct, you will find a „Connection established“ at the bottom in green color (no need to sub,it - it‘s an AJAX check)

• After this, choose[New Database]

and enter adatabase name

15

Page 16: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUP STEP 2

• After this enter the credentials for you database connection - as server try localhost or 127.0.0.1 if it is on your machine.

16

Page 17: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUP STEP 3

• Enter your personal info in the next form• For the username

you can use letters A-Za-z and Numbers 0-9 - no other chars.

17

Page 18: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUP STEP 4

• Now you can import a existing Demo-Site (suggested) or create a new site.

18

Page 19: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SETUP STEP 5

• Congratulations - you are done :-)• Backend: http://neos.demo/neos• Frontend: http://neos.demo

19

Page 20: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

TROUBLESHOOTINGWhat if anything went wrong?

20

Page 21: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

TROUBLESHOOTING 1

• If you get the „Could not connect to database“ message although your credentials are correct - try to use „localhost“ instead of „127.0.0.1“ in the DB Host* Field

21

Page 22: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

FRONTENDPlay with the demo site

22

Page 23: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

NEOS FRONTEND

• Access Frontend: http://neos.demo

23

Page 24: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

NEOS FRONTEND

• Play around with the demo site and enjoy it :-)

24

Page 25: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

BACKENDBehind the scenes

25

Page 26: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

NEOS BACKEND

• Access Backend: http://neos.demo/neos• Credentials

taken fromform shownon slide 17

26

Page 27: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

NEOS BACKEND

• You are starting in the „Content Tab“• Be sure to check out

the „Management“ &„Adminstration Tab“ as well.

• Create additionaluser with the„Administration Tab“

• Check the Fullscreen-,Pages- and Wireframe-Button.

• Note the Inspect-Button• Have much fun with Neos :-)

27

Page 28: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

WHAT‘S NEXT?Roadmap

28

Page 29: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

ROADMAP

• What is planned for the next releases of TYPO3 Neos?

• Consistent Visual Design• Multi-language support in TYPO3CR and User Interface• JavaScript and Server-Side Code Cleanup• Expose: An Extensible Admin Interface• Content Synchronization and Syndication

• See full description at: http://neos.typo3.org/roadmap.html

29

Page 30: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

WANTEDTime to spend?

30

Page 31: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

WANTED

• The TYPO3 Neos Team needs YOU!!!• TYPO3 Neos cannot be built without participation of many dedicated

community members – we need your help to implement your favourite feature.

• Just get in touch with us, so we can bring you up to speed.• We're always looking for new contributions. Can you help in the following

areas?• Code• Testing• Usability• Documentation• Feature ideas• Anything else useful to TYPO3 Neos• Please offer your contribution!

31

Offer contributionWant to offer your contribution?

Please get in touch with us on mailing lists or IRC (irc.freenode.net,

channel #typo3-flow or #typo3-neos) so we can find you someone

to mentor your contribution.

Page 32: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SOURCESGet your information

32

Page 33: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012

SOURCES

• TYPO3 Neos News Website: http://neos.typo3.org/

• Documentation Web (soon)http://neos.typo3.org/documentation.html

• Documentation local (inside installation) /yourhtdocsdir/Packages/Application/TYPO3.TYPO3/Documentation/

• Forge project http://forge.typo3.org/projects/typo3-v5-distribution-base/issues

• Mailinglisthttp://lists.typo3.org/pipermail/typo3-team-core-v5/

33

Page 34: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012 34

THANKS A LOT!QUESTIONS?

Page 35: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012 35

• Patrick Lobacher (born Schuster) - CEO

• 42 years, happily married, residing in Munich

• Author of 7 books and 35 articles on the subject of TYPO3 und web development

• Certified TYPO3 Integrator since 2009

• Until 2012 member of the teams Extbase (Leader), Certification and EAB (Expert Advisory Board)

• Co-Organizer of the TYPO3camp Munich and TYPO3 Developer Days (T3DD12 and T3DD13)

• Speaker at natiional and internation conferences

• Lecturer for leading training institutes and MVHS

ABOUT PATRICK LOBACHER

Page 36: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012 36

ABOUT TYPOVISION GMBH• Full service digital communications agency from Munich• Platinum member of the TYPO3 Association• Approx. 30 employees (+ 10 from fixed freelancer pool)• CEO: Sebastian Böttger & Patrick Lobacher• Specializing in TYPO3 since 10 year (Extbase/Fluid since 2009)

• Presentation (german): www.typovision.de/dieagentur• More than 500 TYPO3 projects of any size - for customer like:

Page 37: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012 37

Address:

typovision GmbH

Landshuter Allee 880637 Munich

Phone: +49 89 45 20 59 3 - 0Fax: +49 89 45 20 59 3 - 29Email: [email protected]: http://www.typovision.de

CONTACT - CLASSIC

Page 38: TYPO3 Neos Alpha 1 Installation Guide

(c) 2012 - typovision GmbH | TYPO3 Neos Alpha Installation Guide | Patrick Lobacher | www.typovision.de | 06.10.2012 38

Twitter: www.twitter.com/typovision www.twitter.com/PatrickLobacher

Facebook: www.facebook.com/typovision

XING: www.xing.com/profile/Patrick_Lobacher

Slideshare: www.slideshare.net/plobacher

Amazon: www.amazon.de/Patrick-Lobacher/e/B0045AQVEA

CONTACT - SOCIAL CHANNELS