{"id":1900,"date":"2013-09-25T14:37:59","date_gmt":"2013-09-25T19:37:59","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=1900"},"modified":"2022-06-03T03:52:18","modified_gmt":"2022-06-03T08:52:18","slug":"how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/","title":{"rendered":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg\"><img decoding=\"async\" class=\"alignleft size-full wp-image-1203\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg\" alt=\"laravel\" width=\"200\" height=\"150\" \/><\/a>The following article will guide you through the steps of installing and configuring <a title=\"Laravel 4\" href=\"http:\/\/laravel.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Laravel 4<\/a> and <a title=\"Twitter Bootstrap\" href=\"http:\/\/twitter.github.io\/bootstrap\/\" target=\"_blank\" rel=\"noopener noreferrer\">Twitter Bootstrap<\/a> on a <a title=\"Debian 7.0 (Wheezy) OS Templates available\" href=\"https:\/\/www.rosehosting.com\/blog\/debian-7-0-wheezy-os-templates-available\/\" target=\"_blank\" rel=\"noopener noreferrer\">Debian Wheezy<\/a> <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a>.<\/p>\n<p><strong>What is Laravel?<\/strong><\/p>\n<p>Laravel is an elegant PHP web framework for web artisans with expressive and elegant syntax. Laravel 4 uses <a title=\"Composer\" href=\"http:\/\/getcomposer.org\" target=\"_blank\" rel=\"noopener noreferrer\">Composer<\/a> for dependency management as the framework itself depends on a number of external packages to function correctly.<\/p>\n<p><!--more--><\/p>\n<p>The tutorial assumes you already have :<\/p>\n<ul>\n<li>Webserver (e.x Nginx, Apache etc..)<\/li>\n<li>PHP &gt;= 5.3.7<\/li>\n<li>MCrypt PHP Extension<\/li>\n<li>Database server<\/li>\n<\/ul>\n<p><em>if you are our customer then please do not hesitate to contact us if you require any further information or assistance on how to set-up LAMP or LNMP stack on your server. We are here 24&#215;7 and full server management is included with all our VPS hosting plans.<br \/>\n<\/em><\/p>\n<p><strong>&#8211; Install some necessary tools:<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">apt-get install curl git -y<\/pre>\n<p><strong>&#8211; change to your webserver document root directory<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">cd \/var\/www\/<\/pre>\n<p><strong>&#8211; set-up composer<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">curl -sS https:\/\/getcomposer.org\/installer | php\r\nmv -v composer.phar \/usr\/local\/bin\/composer<\/pre>\n<p><strong>&#8211; create your Laravel 4 project via composer<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">composer create-project laravel\/laravel laravel4-project\r\ncd laravel4-project\/<\/pre>\n<p><strong>&#8211; install\/update the dependencies via composer<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">composer update<\/pre>\n<p><strong>&#8211; create a database to use in your laravel project<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">mysql -u root -p\r\nmysql&gt; create database laravel;\r\nmysql&gt; grant all on laravel.* to laravel_user@localhost identified by 'MyVerySecretPass';\r\nmysql&gt; flush privileges;\r\nmysql&gt; \\q<\/pre>\n<p><strong>&#8211; set-up a virtual host directive in your webserver (assuming you have apache)<\/strong><\/p>\n<pre class=\"brush: text; gutter: false\">vim \/etc\/apache2\/sites-available\/my.laravel4-project.org\r\n\r\n&lt;VirtualHost *:80&gt;\r\n    ServerName my.laravel4-project.org\r\n    ServerAlias www.my.laravel4-project.org\r\n    DocumentRoot \/var\/www\/laravel4-project\/public\r\n\r\n    &lt;Directory \/var\/www\/laravel4-project\/public&gt;\r\n        Options -Indexes FollowSymLinks MultiViews\r\n        AllowOverride All\r\n        Order allow,deny\r\n        allow from all\r\n    &lt;\/Directory&gt;\r\n\r\n    ErrorLog ${APACHE_LOG_DIR}\/my.laravel4-project.org-error.log\r\n    LogLevel warn\r\n    CustomLog ${APACHE_LOG_DIR}\/my.laravel4-project.org-access.log combined\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p><strong>&#8211; enable the virtual host directive and restart the webserver<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">a2ensite my.laravel4-project.org\r\na2enmod rewrite\r\nservice apache2 restart<\/pre>\n<p><strong>&#8211; set-up laravel database configuration in app\/config\/database.php<\/strong><\/p>\n<pre class=\"brush: applescript; gutter: false\">vim app\/config\/database.php<\/pre>\n<p>edit the &#8216;mysql&#8217; section so it looks something like:<\/p>\n<pre class=\"brush: text; gutter: false\">....\r\n'mysql' =&gt; array(\r\n        'driver'    =&gt; 'mysql',\r\n        'host'      =&gt; 'localhost',\r\n        'database'  =&gt; 'laravel',\r\n        'username'  =&gt; 'laravel_user',\r\n        'password'  =&gt; 'MyVerySecretPass',\r\n        'charset'   =&gt; 'utf8',\r\n        'collation' =&gt; 'utf8_unicode_ci',\r\n        'prefix'    =&gt; '',\r\n),\r\n....<\/pre>\n<p><strong>&#8211; set-up twitter bootstrap in your laravel 4 project<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">cd public\/\r\nwget http:\/\/twitter.github.io\/bootstrap\/assets\/bootstrap.zip\r\nunzip bootstrap.zip\r\nrm -f bootstrap.zip\r\nmv bootstrap\/* .\r\nrm -rf bootstrap\/<\/pre>\n<pre class=\"brush: bash; gutter: false\">wget http:\/\/code.jquery.com\/jquery-1.10.1.min.js -P js\/<\/pre>\n<pre class=\"brush: bash; gutter: false\">mkdir ..\/app\/views\/layouts\/\r\nvim ..\/app\/views\/layouts\/master.blade.php<\/pre>\n<pre class=\"brush: html; gutter: false\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;title&gt;\r\n            @section('title')\r\n            RoseHosting.com Testing\r\n            @show\r\n        &lt;\/title&gt;\r\n        &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\r\n\r\n        &lt;!-- CSS are placed here --&gt;\r\n        {{ HTML::style('css\/bootstrap.css') }}\r\n        &lt;style&gt;\r\n        @section('styles')\r\n            body {\r\n                padding-top: 60px;\r\n            }\r\n        @show\r\n        &lt;\/style&gt;\r\n        {{ HTML::style('css\/bootstrap-responsive.css') }}\r\n\r\n    &lt;\/head&gt;\r\n\r\n    &lt;body&gt;\r\n        &lt;!-- Navbar --&gt;\r\n        &lt;div class=\"navbar navbar-inverse navbar-fixed-top\"&gt;\r\n            &lt;div class=\"navbar-inner\"&gt;\r\n                &lt;div class=\"container\"&gt;\r\n                    &lt;!-- .btn-navbar is used as the toggle for collapsed navbar content --&gt;\r\n                    &lt;a class=\"btn btn-navbar\" data-toggle=\"collapse\" data-target=\".nav-collapse\"&gt;\r\n                        &lt;span class=\"icon-bar\"&gt;&lt;\/span&gt;\r\n                        &lt;span class=\"icon-bar\"&gt;&lt;\/span&gt;\r\n                        &lt;span class=\"icon-bar\"&gt;&lt;\/span&gt;\r\n                    &lt;\/a&gt;\r\n\r\n                    &lt;a class=\"brand\" href=\"#\"&gt;Laravel&lt;\/a&gt;\r\n\r\n                    &lt;!-- Everything you want hidden at 940px or less, place within here --&gt;\r\n                    &lt;div class=\"nav-collapse collapse\"&gt;\r\n                        &lt;ul class=\"nav\"&gt;\r\n                            &lt;li&gt;&lt;a href=\"{{{ URL::to('') }}}\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\r\n                        &lt;\/ul&gt;\r\n                    &lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n\r\n        &lt;!-- Container --&gt;\r\n        &lt;div class=\"container\"&gt;\r\n\r\n            &lt;!-- Content --&gt;\r\n            @yield('content')\r\n\r\n        &lt;\/div&gt;\r\n\r\n        &lt;!-- Scripts are placed here --&gt;\r\n        {{ HTML::script('js\/jquery-1.10.1.min.js') }}\r\n        {{ HTML::script('js\/bootstrap\/bootstrap.min.js') }}\r\n\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p><strong>&#8211; set-up the url of your application in &#8216;app\/config\/app.php&#8217;<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">vim app\/config\/app.php\r\n....\r\n'url' =&gt; 'http:\/\/my.laravel4-project.org',\r\n....<\/pre>\n<p><strong>&#8211; test the set-up<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">vim app\/routes.php<\/pre>\n<pre class=\"brush: php; gutter: false\">Route::get('\/test', function()\r\n{\r\n\treturn View::make('layouts.master');\r\n});<\/pre>\n<p><strong>&#8211; set-up the permissions of your project<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">cd \/var\/www\/laravel4-project\/\r\nchown www-data: -R ..\/laravel4-project\/<\/pre>\n<p>test the set-up by navigating to http:\/\/my.laravel4-project.org\/test .<\/p>\n<p>Laravel 4 documentation can be found <a href=\"http:\/\/laravel.com\/docs\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a>.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The following article will guide you through the steps of installing and configuring Laravel 4 and Twitter Bootstrap on a &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#more-1900\" aria-label=\"Read more about How to install Laravel 4 with Twitter Bootstrap on Linux VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":1203,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1712],"tags":[261,260,177,50,1152,262],"class_list":["post-1900","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-web-frameworks","tag-composer","tag-laravel4","tag-linux-vps","tag-php","tag-rosehosting","tag-twitter-bootstrap","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS\" \/>\n<meta property=\"og:description\" content=\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2013-09-25T19:37:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:52:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS\",\"datePublished\":\"2013-09-25T19:37:59+00:00\",\"dateModified\":\"2022-06-03T08:52:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/\"},\"wordCount\":299,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/laravel.jpg\",\"keywords\":[\"composer\",\"laravel4\",\"linux vps\",\"php\",\"rosehosting\",\"twitter-bootstrap\"],\"articleSection\":[\"Tutorials\",\"Web Frameworks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/\",\"name\":\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/laravel.jpg\",\"datePublished\":\"2013-09-25T19:37:59+00:00\",\"dateModified\":\"2022-06-03T08:52:18+00:00\",\"description\":\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/laravel.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/laravel.jpg\",\"width\":\"200\",\"height\":\"150\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Laravel 4 with Twitter Bootstrap on Linux VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting","description":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS","og_description":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2013-09-25T19:37:59+00:00","article_modified_time":"2022-06-03T08:52:18+00:00","og_image":[{"width":200,"height":150,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS","datePublished":"2013-09-25T19:37:59+00:00","dateModified":"2022-06-03T08:52:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/"},"wordCount":299,"commentCount":4,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg","keywords":["composer","laravel4","linux vps","php","rosehosting","twitter-bootstrap"],"articleSection":["Tutorials","Web Frameworks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/","name":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg","datePublished":"2013-09-25T19:37:59+00:00","dateModified":"2022-06-03T08:52:18+00:00","description":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2012\/10\/laravel.jpg","width":"200","height":"150"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-laravel-4-with-twitter-bootstrap-on-linux-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Laravel 4 with Twitter Bootstrap on Linux VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1900","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=1900"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1900\/revisions"}],"predecessor-version":[{"id":42286,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1900\/revisions\/42286"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/1203"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=1900"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=1900"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=1900"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}