{"id":582,"date":"2017-07-14T12:14:23","date_gmt":"2017-07-14T12:14:23","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=582"},"modified":"2018-01-31T08:56:21","modified_gmt":"2018-01-31T14:56:21","slug":"how-to-install-open-real-estate-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/","title":{"rendered":"How to install Open Real Estate on CentOS 7"},"content":{"rendered":"<p>Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It&#8217;s built on the Yii framework and it has all the features you&#8217;d need out of the box. It is fairly easy to install Open Real Estate on a <a href=\"https:\/\/www.linuxcloudvps.com\/centos-cloud-vps.html\" rel=\"noopener\">CentOS 7 Cloud VPS<\/a>. The installation process should take about 5-10 minutes if you follow the very easy steps described below.<\/p>\n<p><!--more--><\/p>\n<h2>Requirements<\/h2>\n<p>In order to run Open Real Estate on your VPS, the following <strong>requirements<\/strong> have to be met:<\/p>\n<ul>\n<li>MySQL or MariaDB<\/li>\n<li>PHP 5.3 +<\/li>\n<li>Apache 2 with mod_php module<\/li>\n<\/ul>\n<p>In this tutorial, we will install the latest version of Open Real Estate on <a href=\"https:\/\/www.linuxcloudvps.com\/centos-cloud-vps.html\">one of our CentOS 7 Cloud VPSes<\/a> with MariaDB, PHP, and Apache (LAMP)<\/p>\n<blockquote><p>If you want to install Open Real Estate on Ubuntu, then follow this tutorial: <a href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-an-ubuntu-14-04\/\">How to install Open Real Estate on Ubuntu 14.04<\/a><\/p><\/blockquote>\n<h2>Update the system<\/h2>\n<p>First of all login to your <a href=\"https:\/\/www.linuxcloudvps.com\/centos-cloud-vps.html\">CentOS 7 Cloud VPS<\/a> via SSH as user root:<\/p>\n<pre>ssh root@IP_Address<\/pre>\n<p>and make sure that it is fully up to date:<\/p>\n<pre>yum -y update<\/pre>\n<h2>Install MariaDB server<\/h2>\n<p>Open Real Estate requires an empty database, so we will install the MariaDB server:<\/p>\n<pre>yum -y install mariadb mariadb-server<\/pre>\n<p>Once it is installed, start MariaDB and enable it to start on boot:<\/p>\n<pre>systemctl start mariadb\r\nsystemctl enable mariadb<\/pre>\n<p>and run the <code>mysql_secure_installation<\/code> post-installation script to finish the MariaDB set-up:<\/p>\n<pre>mysql_secure_installation\r\n\r\nEnter current password for root (enter for none): ENTER\r\nSet root password? [Y\/n] Y\r\nRemove anonymous users? [Y\/n] Y\r\nDisallow root login remotely? [Y\/n] Y\r\nRemove test database and access to it? [Y\/n] Y\r\nReload privilege tables now? [Y\/n] Y<\/pre>\n<p>Once MariaDB is installed, login to the database server as user root, and create a database and a user for Open Real Estate:<\/p>\n<pre>mysql -u root -p\r\n\r\nMariaDB [(none)]&gt; CREATE DATABASE orestate;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON orestate.* TO &#039;orestateuser&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;YOUR-PASSWORD&#039;;\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; \\q<\/pre>\n<p>Do not forget to replace \u2018YOUR-PASSWORD\u2019 with a strong password.<\/p>\n<h2>Install Apache Web Server<\/h2>\n<p>Next, we will install Apache web server:<\/p>\n<pre>yum install httpd -y<\/pre>\n<p>start Apache and make it start on boot:<\/p>\n<pre>systemctl start httpd.service\r\nsystemctl enable httpd.service<\/pre>\n<h2>Install PHP 7<\/h2>\n<p>The default PHP version on CentOS 7 is PHP 5.4. In this tutorial, we will install PHP version 7.<\/p>\n<p>Install Remi and EPEL repository packages:<\/p>\n<pre>rpm -Uvh http:\/\/rpms.remirepo.net\/enterprise\/remi-release-7.rpm\r\nrpm -Uvh https:\/\/dl.fedoraproject.org\/pub\/epel\/epel-release-latest-7.noarch.rpm<\/pre>\n<p>Enable Remi PHP 7 repo:<\/p>\n<pre>yum-config-manager --enable remi-php70<\/pre>\n<p>and install PHP 7 and several PHP modules required by Open Real Estate by executing the following command:<\/p>\n<pre>yum -y install php php-mysql php-pecl-zip php-xml php-mbstring php-gd php-pdo<\/pre>\n<p>Next, open the PHP configuration file and increase the upload file size. You can find the location of the PHP configuration file by executing the following command:<\/p>\n<pre>php --ini |grep Loaded\r\nLoaded Configuration File:         \/etc\/php.ini<\/pre>\n<p>In our case, we have to make changes to the \/etc\/php.ini file. We will increase the default upload limit to 100 MB. You can set the values according to your needs. Run the following commands:<\/p>\n<pre>sed -i &quot;s\/post_max_size = 8M\/post_max_size = 100M\/&quot; \/etc\/php.ini\r\nsed -i &quot;s\/upload_max_filesize = 2M\/upload_max_filesize = 100M\/&quot; \/etc\/php.ini<\/pre>\n<p>and restart the web server:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<h2>Install Open Real Estate<\/h2>\n<p>Download and extract the latest version of Open Real Estate on your server:<\/p>\n<pre>cd \/opt &amp;&amp; wget wget https:\/\/open-real-estate.info\/files\/OpenRealEstateV1.20.1_en.zip\r\nunzip OpenRealEstateV1.20.1_en.zip -d orestate\r\nmv orestate\/ \/var\/www\/html\/orestate<\/pre>\n<p>All files have to be readable by the web server, so we need to set a proper ownership<\/p>\n<pre>chown -R apache:apache \/var\/www\/html\/orestate\/<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018orestate.conf\u2019 on your virtual server:<\/p>\n<pre>touch \/etc\/httpd\/conf.d\/orestate.conf\r\nnano \/etc\/httpd\/conf.d\/orestate.conf<\/pre>\n<p>Then, add the following lines:<\/p>\n<pre>&lt;VirtualHost YOUR_SERVER_IP:80&gt;\r\nServerAdmin webmaster@yourdomain.com\r\nDocumentRoot &quot;\/var\/www\/html\/orestate\/&quot;\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\nErrorLog &quot;\/var\/log\/httpd\/yourdomain.com-error_log&quot;\r\nCustomLog &quot;\/var\/log\/httpd\/yourdomain.com-access_log&quot; combined\r\n\r\n&lt;Directory &quot;\/var\/www\/html\/orestate\/&quot;&gt;\r\nDirectoryIndex index.html index.php\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nRequire all granted\r\n&lt;\/Directory&gt;\r\n&lt;\/VirtualHost&gt;\r\n\r\n<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<p>Open your favorite web browser, navigate to http:\/\/your-domain.com\/ and if you configured everything correctly the Open Real Estate installer should be starting. You should follow the easy instructions on the install screen inserting the necessary information as requested.<\/p>\n<p>That is it. The Open Real Estate 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 href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" rel=\"noopener\">Linux Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install Open Real Estate for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong>PS.<\/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>Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It&#8217;s built on the Yii framework and it has all the features you&#8217;d need out of the box. It is fairly easy to install Open Real Estate on a CentOS 7 Cloud &#8230; <a title=\"How to install Open Real Estate on CentOS 7\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/\" aria-label=\"More on How to install Open Real Estate on CentOS 7\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":583,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[22,132,113],"class_list":["post-582","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos","tag-linuxcloudvps","tag-open-real-estate"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install Open Real Estate on CentOS 7 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It&#039;s built on the Yii framework\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Open Real Estate on CentOS 7 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It&#039;s built on the Yii framework\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-14T12:14:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/07\/openrealestate-centos.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to install Open Real Estate on CentOS 7\",\"datePublished\":\"2017-07-14T12:14:23+00:00\",\"dateModified\":\"2018-01-31T14:56:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/\"},\"wordCount\":594,\"commentCount\":7,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/07\\\/openrealestate-centos.jpg\",\"keywords\":[\"centos\",\"linuxcloudvps\",\"open real estate\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/\",\"name\":\"How to install Open Real Estate on CentOS 7 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/07\\\/openrealestate-centos.jpg\",\"datePublished\":\"2017-07-14T12:14:23+00:00\",\"dateModified\":\"2018-01-31T14:56:21+00:00\",\"description\":\"Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It's built on the Yii framework\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/07\\\/openrealestate-centos.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/07\\\/openrealestate-centos.jpg\",\"width\":1200,\"height\":600,\"caption\":\"open real estate on centos\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-open-real-estate-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Open Real Estate on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Open Real Estate on CentOS 7 | LinuxCloudVPS Blog","description":"Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It's built on the Yii framework","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.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to install Open Real Estate on CentOS 7 | LinuxCloudVPS Blog","og_description":"Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It's built on the Yii framework","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2017-07-14T12:14:23+00:00","article_modified_time":"2018-01-31T14:56:21+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/07\/openrealestate-centos.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to install Open Real Estate on CentOS 7","datePublished":"2017-07-14T12:14:23+00:00","dateModified":"2018-01-31T14:56:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/"},"wordCount":594,"commentCount":7,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/07\/openrealestate-centos.jpg","keywords":["centos","linuxcloudvps","open real estate"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/","name":"How to install Open Real Estate on CentOS 7 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/07\/openrealestate-centos.jpg","datePublished":"2017-07-14T12:14:23+00:00","dateModified":"2018-01-31T14:56:21+00:00","description":"Open Real Estate is a free and open source app that you can use to build websites for real estate agencies and realtors. It's built on the Yii framework","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/07\/openrealestate-centos.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/07\/openrealestate-centos.jpg","width":1200,"height":600,"caption":"open real estate on centos"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-open-real-estate-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Open Real Estate on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/582","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=582"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/582\/revisions"}],"predecessor-version":[{"id":585,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/582\/revisions\/585"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/583"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=582"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=582"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=582"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}