search
HomeBackend DevelopmentPHP TutorialGetting Started with Sulu CMS on Vagrant The Right Way™

This tutorial guides you through deploying a Sulu "Hello World" instance using Homestead Improved, addressing performance and configuration. Prior Homestead Improved experience is recommended. We'll cover common Sulu/Vagrant pitfalls and setting up your Sulu project, including database creation, project building, and administrator login. A FAQ section addresses common Sulu questions.

Getting Started with Sulu CMS on Vagrant The Right Way™

Key Concepts:

  • Comprehensive Sulu "Hello World" deployment guide using Homestead Improved.
  • Focus on performance optimization and configuration best practices.
  • Addresses common issues encountered when using Sulu CMS within a Vagrant environment.
  • Detailed steps for project setup, including database creation, build process, and administrator login.
  • FAQ section covering Sulu suitability for news sites, polyfill usage, and Symfony 4/Flex compatibility.

Let's begin building your Sulu foundation. This tutorial focuses on a robust setup for future Sulu projects. Please comment with any questions. Many thanks to Daniel Rotter and Patrik Karisch for their assistance!

(Note: Familiarity with Homestead Improved is strongly recommended. Consider our PHP Environment Basics book if you need to brush up.)


Project Name Input

This tutorial uses placeholders replaced with your project name. Enter your project name below:

Generated slug: my_sulu_project


OS X Vagrant Folder Sharing:

For OS X users employing NFS folder sharing, the vagrant-bindfs plugin is essential. Install it via vagrant plugin install vagrant-bindfs. This prevents future headaches. Homestead Improved handles the rest automatically.

Vagrant Setup:

  1. Clone the Homestead Improved repository:

    git clone https://github.com/swader/homestead_improved my_sulu_project
    cd my_sulu_project
  2. Configure shared folders:

    bin/folderfix.sh

    This shares your working directory with the VM's /Code directory.

  3. Modify Homestead.yaml:

    Add NFS folder sharing (OS X/Windows 10) and the Sulu project type, adjusting the document root to web:

    ...
    
    folders:
        - map: /Users/swader/vagrant_boxes/homestead/my_sulu_project
          to: /home/vagrant/Code
          type: nfs
    
    sites:
        - map: my_sulu_project.app
          to: /home/vagrant/Code/my_sulu_project/web
          type: sulu
    
  4. Start the VM:

    vagrant up; vagrant ssh

    Pro Tip: Create aliases for easier future use:

    alias vh='vagrant halt; cd ..'
    alias vush='vagrant up; vagrant ssh'

Sulu Project Setup:

Project Creation

Install the Sulu minimal edition (now the standard edition):

cd Code
composer create-project sulu/sulu-minimal my_sulu_project

The installer prompts for database, email, and other settings. You primarily need database details; you can adjust app/config/parameters.yml later.

Webspaces

Rename app/Resources/webspaces/example.com.xml to app/Resources/webspaces/my_sulu_project.xml and update the <name></name> and <key></key> elements to match your project:

git clone https://github.com/swader/homestead_improved my_sulu_project
cd my_sulu_project

(The filename and <key></key> don't need to match, but consistency is recommended. Changing the <key></key> later is complex.)

Database Creation

Create the database (Homestead Improved uses homestead user with secret password).

Build Process

Run the build command:

bin/folderfix.sh

Confirm the options (explained in detail in the original article).

Login

Access the frontend at my_sulu_project.app/. Login to the backend at my_sulu_project.app/admin/ using admin/admin.

Getting Started with Sulu CMS on Vagrant The Right Way™

Getting Started with Sulu CMS on Vagrant The Right Way™

Pitfalls and FAQ:

Sulu for News Websites?

Not ideally by default. The SuluArticleBundle (under development) is better suited for frequent article publishing.

Polyfills?

Getting Started with Sulu CMS on Vagrant The Right Way™

Symfony's polyfills for older PHP versions slow down installation. Discussions are underway to improve this.

Symfony 4 and Flex Compatibility?

Yes, Sulu is adapting. You can test with Sulu 1.6.0-RC1 (using Symfony 3.3) via:

...

folders:
    - map: /Users/swader/vagrant_boxes/homestead/my_sulu_project
      to: /home/vagrant/Code
      type: nfs

sites:
    - map: my_sulu_project.app
      to: /home/vagrant/Code/my_sulu_project/web
      type: sulu

Conclusion:

Sulu is maturing and becoming more developer-friendly. This tutorial aims to help you understand its capabilities and use it effectively. Please leave comments with any questions or issues.

The above is the detailed content of Getting Started with Sulu CMS on Vagrant The Right Way™. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools