{"id":3176,"date":"2014-02-10T03:55:26","date_gmt":"2014-02-10T09:55:26","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=3176"},"modified":"2022-06-03T03:47:09","modified_gmt":"2022-06-03T08:47:09","slug":"how-to-install-exponent-cms-on-a-linux-virtual-server","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/","title":{"rendered":"How to install Exponent CMS on a Linux Virtual Server"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png\"><img decoding=\"async\" class=\"alignleft size-full wp-image-3177\" style=\"border: 0px none;\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png\" alt=\"exponent cms\" width=\"191\" height=\"48\" \/><\/a>Exponent is very user friendly and flexible content management software that allows website pages to be edited on the page as it is displayed. To install and run Exponent CMS on a <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux virtual server<\/a> follow the very easy steps described below.<\/p>\n<p><!--more--><\/p>\n<p>This install guide assumes that Apache, MySQL and PHP are already installed and configured on your <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">virtual server<\/a>. At the time of writing this tutorial, the latest stable version is Exponent CMS 2.2.3 and it requires:<\/p>\n<ul>\n<li>\u00a0\u00a0\u00a0 PHP &gt;= 5.2.1 with the following PHP extensions enabled: GD Graphics Library version 2.0.x+, MySQLi, XML (Expat) and Zlib. Also, safe mode and open_basedir settings should be disabled;<\/li>\n<li>\u00a0\u00a0\u00a0 Apache Web Server &gt;= 2.0 compiled with mod_rewrite module and \u2018AllowOverride All\u2019 directive set in order to enable search engine friendly URLs;<\/li>\n<li>\u00a0\u00a0\u00a0 MySQL &gt;= 5.0 installed on your <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux virtual server<\/a>.<\/li>\n<\/ul>\n<p>Download Exponent CMS 2.2.3 available at http:\/\/www.exponentcms.org\/get-exponent.htm to the server and extract it using the following commands:<\/p>\n<pre>cd \/root\r\nwget http:\/\/downloads.sourceforge.net\/project\/exponentcms\/exponent-2.2.3.zip\r\nunzip exponent-2.2.3.zip -d \/root\/exponentcms<\/pre>\n<p>Create a new MySQL database for Exponent CMS on your server:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; CREATE DATABASE exponentdb;\r\nmysql&gt; GRANT ALL PRIVILEGES ON exponentdb.* TO 'exponentuser'@'localhost' IDENTIFIED BY 'your-password' WITH GRANT OPTION;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<p>Create a new virtual host directive in Apache. For example, edit your Apache configuration file (\/etc\/httpd\/conf\/httpd.conf by default) and uncomment the following line:<\/p>\n<pre>#NameVirtualHost *:80<\/pre>\n<p>then, add the following lines at the end:<\/p>\n<pre>ServerAdmin admin@your-domain.com\r\nDocumentRoot \/var\/www\/html\/exponent-cms\/\r\nServerName www.your-domain.com\r\n&lt;Directory \/var\/www\/html\/exponent-cms\/&gt;\r\n\tOptions FollowSymLinks\r\n        AllowOverride All\r\n&lt;\/Directory&gt;\r\nErrorLog logs\/your-domain.com-error_log\r\nCustomLog logs\/your-domain.com-access_log common<\/pre>\n<p>Locate the php configuration file using the following command:<\/p>\n<pre>#php -i | grep php.ini\r\nConfiguration File (php.ini) Path =&gt; \/etc\r\nLoaded Configuration File =&gt; \/etc\/php.ini<\/pre>\n<p>Edit the \u2018php.ini\u2019 file and add\/modify the following lines:<\/p>\n<pre>post_max_size = 50M\r\nupload_max_filesize = 50M\r\nfile_uploads = On\r\nregister_globals = off\r\nallow_url_fopen = off\r\nmemory_limit = 256M\r\nsafe_mode = Off<\/pre>\n<p>Restart the Apache web server for the changes to take effect. Move the Exponent CMS installation files to the document root directory defined in the virtual host directive above:<\/p>\n<pre>mv \/root\/exponentcms\/ \/var\/www\/html\/exponent-cms<\/pre>\n<p>Also, the webserver user (Apache) needs to be able to write to \u2018files\u2019, \u2018themes\u2019 and \u2018tmp\u2019 directories and the \u2018.htaccess\u2019 file, so you can easily accomplish that by executing the following command:<\/p>\n<pre>chown apache:apache -R \/var\/www\/html\/exponent-cms\/<\/pre>\n<p>Open http:\/\/your-domain.com\/install\/index.php in your popular web browser and follow the easy instructions:<\/p>\n<p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-step1.png\"><img decoding=\"async\" class=\"size-medium wp-image-3183 alignnone\" style=\"border: 0px none;\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-step1-300x174.png\" alt=\"exponent step1\" width=\"300\" height=\"174\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-step1-300x174.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-step1.png 600w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>Select the language you want to install, check if system requirements are met and on the next page enter your MySQL database name, username and password, then click on the &#8216;install database&#8217; button. If the database tests pass, click on the &#8216;continue installation&#8217; button. On the next page, enter the site configuration settings, pick your theme, create an administrator account and that is it. The Exponent CMS installation is now complete.<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install Exponent CMS for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> 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","protected":false},"excerpt":{"rendered":"<p>Exponent is very user friendly and flexible content management software that allows website pages to be edited on the page &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install Exponent CMS on a Linux Virtual Server\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#more-3176\" aria-label=\"Read more about How to install Exponent CMS on a Linux Virtual Server\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":3177,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13],"tags":[388,389,390,177,1152,17],"class_list":["post-3176","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-tutorials","tag-exponent-cms","tag-install-exponent-cms","tag-install-exponent-cms-on-linux","tag-linux-vps","tag-rosehosting","tag-vps-hosting","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.4 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install Exponent CMS on a Linux Virtual Server | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install Exponent CMS on a Linux Virtual Server | 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-exponent-cms-on-a-linux-virtual-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Exponent CMS on a Linux Virtual Server\" \/>\n<meta property=\"og:description\" content=\"How to install Exponent CMS on a Linux Virtual Server | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/\" \/>\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=\"2014-02-10T09:55:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:47:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png\" \/>\n\t<meta property=\"og:image:width\" content=\"191\" \/>\n\t<meta property=\"og:image:height\" content=\"48\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"3 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-exponent-cms-on-a-linux-virtual-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install Exponent CMS on a Linux Virtual Server\",\"datePublished\":\"2014-02-10T09:55:26+00:00\",\"dateModified\":\"2022-06-03T08:47:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/\"},\"wordCount\":460,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/exponent-cms.png\",\"keywords\":[\"Exponent CMS\",\"install exponent cms\",\"Install Exponent CMS on Linux\",\"linux vps\",\"rosehosting\",\"vps hosting\"],\"articleSection\":[\"CentOS\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/\",\"name\":\"How to install Exponent CMS on a Linux Virtual Server | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/exponent-cms.png\",\"datePublished\":\"2014-02-10T09:55:26+00:00\",\"dateModified\":\"2022-06-03T08:47:09+00:00\",\"description\":\"How to install Exponent CMS on a Linux Virtual Server | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/exponent-cms.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/01\\\/exponent-cms.png\",\"width\":191,\"height\":48,\"caption\":\"exponent cms\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-exponent-cms-on-a-linux-virtual-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Exponent CMS on a Linux Virtual Server\"}]},{\"@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 Exponent CMS on a Linux Virtual Server | RoseHosting","description":"How to install Exponent CMS on a Linux Virtual Server | 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-exponent-cms-on-a-linux-virtual-server\/","og_locale":"en_US","og_type":"article","og_title":"How to install Exponent CMS on a Linux Virtual Server","og_description":"How to install Exponent CMS on a Linux Virtual Server | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-02-10T09:55:26+00:00","article_modified_time":"2022-06-03T08:47:09+00:00","og_image":[{"width":191,"height":48,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install Exponent CMS on a Linux Virtual Server","datePublished":"2014-02-10T09:55:26+00:00","dateModified":"2022-06-03T08:47:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/"},"wordCount":460,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png","keywords":["Exponent CMS","install exponent cms","Install Exponent CMS on Linux","linux vps","rosehosting","vps hosting"],"articleSection":["CentOS","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/","name":"How to install Exponent CMS on a Linux Virtual Server | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png","datePublished":"2014-02-10T09:55:26+00:00","dateModified":"2022-06-03T08:47:09+00:00","description":"How to install Exponent CMS on a Linux Virtual Server | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/01\/exponent-cms.png","width":191,"height":48,"caption":"exponent cms"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-exponent-cms-on-a-linux-virtual-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Exponent CMS on a Linux Virtual Server"}]},{"@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\/3176","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=3176"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3176\/revisions"}],"predecessor-version":[{"id":42250,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3176\/revisions\/42250"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/3177"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=3176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=3176"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=3176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}