{"id":17225,"date":"2015-06-29T13:11:11","date_gmt":"2015-06-29T18:11:11","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17225"},"modified":"2022-06-03T03:44:17","modified_gmt":"2022-06-03T08:44:17","slug":"how-to-install-phpwiki-on-a-centos-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/","title":{"rendered":"How to install PhpWiki on a CentOS 7 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft size-full wp-image-17227\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.png\" alt=\"phpwiki\" width=\"150\" height=\"90\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki-50x30.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki-75x45.png 75w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>PhpWiki is a wiki-based content management software written in PHP, used to create web sites where anyone can edit or create the pages using a\u00a0web browser.<br \/>\nIn this tutorial\u00a0we will show you\u00a0the steps needed to <strong>install PhpWiki on a\u00a0<a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 7 VPS<\/a><\/strong>.<\/p>\n<p>At the time of writing this tutorial, the latest stable version of PhpWiki is 1.5.3 and it requires:<\/p>\n<p><!--more--><\/p>\n<ul>\n<li>PHP 5.3.29\u00a0or higher,\u00a0compiled with support for the type of database you\u00a0want to use\u00a0and with the PEAR libraries enabled;<\/li>\n<li>Apache Web Server 2.0 or higher compiled with mod_rewrite module;<\/li>\n<li>MySQL, MariaDB,\u00a0PostgreSQL or SQLite.<\/li>\n<\/ul>\n<p>This install guide assumes that Apache, MySQL (or MariaDB) and PHP are already installed and configured on your <a title=\"PhpWiki virtual server\" href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">virtual server<\/a>. If your server has a\u00a0minimal CentOS 7 base installation, you can install Apache, MariaDB\u00a0and PHP stack by following\u00a0this\u00a0<a title=\"How to install LAMP (Linux Apache, MariaDB &amp; PHP) on CentOS 7\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-lamp-linux-apache-mariadb-php-on-centos-7\/\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial<\/a>.<\/p>\n<p>Download the latest version of PhpWiki available at &#8216;http:\/\/downloads.sourceforge.net\/project\/phpwiki\/&#8217; to the server and extract it using the following commands:<\/p>\n<pre>cd \/opt\/\r\nwget http:\/\/downloads.sourceforge.net\/project\/phpwiki\/phpwiki-1.5.3.zip\r\nunzip phpwiki-1.5.3.zip -d \/var\/www\/html\/\r\ncd \/var\/www\/html\/\r\nmv phpwiki-1.5.3 phpwiki<\/pre>\n<p>Create a new MySQL database for PhpWiki on your server:<\/p>\n<pre>mysql -u root -p\r\nMariaDB &gt; create database phpwikidb;\r\nMariaDB &gt; grant all privileges on phpwikidb.* to phpwikiuser@localhost identified by 'your-password';\r\nMariaDB &gt; &gt; flush privileges;\r\nMariaDB &gt; quit;\r\n<\/pre>\n<p>Create tables inside your phpwikidb database:<\/p>\n<pre>cd \/var\/www\/html\/phpwiki\/schemas\r\nmysql -uphpwikiuser -pyour-password phpwikidb &lt; mysql-initialize.sql<\/pre>\n<p>Create a new virtual host directive in Apache. For example, edit your Apache configuration file (\u2018\/etc\/httpd\/conf\/httpd.conf\u2019 by default) and un-comment the following line:<\/p>\n<pre>#NameVirtualHost *:80<\/pre>\n<p>Then, add the following lines at the end:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@yourdomain.com\r\nDocumentRoot \/var\/www\/html\/phpwiki\/\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\n&lt;Directory \/var\/www\/html\/phpwiki\/&gt;\r\n    DirectoryIndex index.php\r\n    Options FollowSymLinks\r\n    AllowOverride All\r\n    Require all granted\r\n&lt;\/Directory&gt;\r\n    ErrorLog logs\/yourdomain.com-error_log\r\n    CustomLog logs\/yourdomain.com-access_log common\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Restart the Apache service for the changes to take effect:<\/p>\n<pre>systemctl restart httpd.service<\/pre>\n<p>Create a subdirectory called &#8216;data&#8217; in the &#8216;phpwiki&#8217; directory:<\/p>\n<pre>mkdir -p \/var\/www\/html\/data\/<\/pre>\n<p>Copy &#8216;\/var\/www\/html\/config\/config-dist.ini&#8217; to &#8216;\/var\/www\/html\/phpwiki\/config\/config.ini&#8217; and edit the settings in &#8216;\/var\/www\/html\/phpwiki\/config\/config.ini&#8217; file according to your needs. It may be simpler for you to use http:\/\/phpwiki.fr\/configurator.php to generate the &#8216;config.ini&#8217; configuration file for PhpWiki:<\/p>\n<ul>\n<li>enter the name of your website, administrator username and password<\/li>\n<li>make sure you select to use encrypted passwords to be stored in the &#8216;config.ini&#8217; file and the users homepages metadata<\/li>\n<li>set the path to access log file (e.g. \/var\/log\/httpd\/yourdomain.com-access_log)<\/li>\n<li>set &#8216;COMPRESS_OUTPUT&#8217; to true (Always try to compress output)<\/li>\n<li>set &#8216;HTTP Cache Control&#8217; to &#8216;LOOSE&#8217; so cached pages will be invalidated whenever they are edited<\/li>\n<li>select the database backend type to SQL<\/li>\n<li>SQL Type (MySQL), SQL User (phpwikiuser) and its password, SQL Database Name (phpwikidb)<\/li>\n<li>set &#8216;Allow anonymous edit&#8217; and &#8216;Allow Bogo Login&#8217; to false<\/li>\n<li>set &#8216;PASSWORD_LENGTH_MINIMUM&#8217; to at least 8 characters<\/li>\n<li>edit part four: &#8216;Page appearance and layout&#8217; according to your liking and finally click on the &#8216;Save config\/config.ini&#8217; button.<\/li>\n<\/ul>\n<p>Copy the generated configuration to a file, and save it as &#8216;\/var\/www\/html\/phpwiki\/config\/config.ini&#8217;.\u00a0Set the proper ownership of PhpWiki files and directories using the following command:<\/p>\n<pre>chown apache:apache -R \/var\/www\/html\/phpwiki\/<\/pre>\n<p>That is it. The PhpWiki installation is now complete.<\/p>\n<p>Open http:\/\/yourdomain.com in your favorite browser and once the initialization complete, open\u00a0http:\/\/yourdomain.com\/index.php\/PhpWikiAdministration and log in using your Administrator login credentials.<br \/>\nOf 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 <strong>install PhpWiki<\/strong>\u00a0for you. They are available 24&#215;7 and will take care of your request immediately.<\/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>PhpWiki is a wiki-based content management software written in PHP, used to create web sites where anyone can edit or &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install PhpWiki on a CentOS 7 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#more-17225\" aria-label=\"Read more about How to install PhpWiki on a CentOS 7 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17227,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13],"tags":[814,813,812,852],"class_list":["post-17225","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-tutorials","tag-how-to-install-phpwiki-without-control-panel","tag-install-phpwiki-manually","tag-install-phpwiki-on-centos-7","tag-phpwiki","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.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install PhpWiki on a CentOS 7 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install PhpWiki on a CentOS 7 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-phpwiki-on-a-centos-7-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 PhpWiki on a CentOS 7 VPS\" \/>\n<meta property=\"og:description\" content=\"How to install PhpWiki on a CentOS 7 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-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=\"2015-06-29T18:11:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:44:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.png\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"90\" \/>\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=\"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-phpwiki-on-a-centos-7-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install PhpWiki on a CentOS 7 VPS\",\"datePublished\":\"2015-06-29T18:11:11+00:00\",\"dateModified\":\"2022-06-03T08:44:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/\"},\"wordCount\":572,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/phpwiki.png\",\"keywords\":[\"how to install phpwiki without control panel\",\"install PhpWiki Manually\",\"Install PhpWiki on CentOS 7\",\"phpwiki\"],\"articleSection\":[\"CentOS\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/\",\"name\":\"How to install PhpWiki on a CentOS 7 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/phpwiki.png\",\"datePublished\":\"2015-06-29T18:11:11+00:00\",\"dateModified\":\"2022-06-03T08:44:17+00:00\",\"description\":\"How to install PhpWiki on a CentOS 7 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/phpwiki.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/phpwiki.png\",\"width\":150,\"height\":90,\"caption\":\"phpwiki\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpwiki-on-a-centos-7-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install PhpWiki on a CentOS 7 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 PhpWiki on a CentOS 7 VPS | RoseHosting","description":"How to install PhpWiki on a CentOS 7 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-phpwiki-on-a-centos-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install PhpWiki on a CentOS 7 VPS","og_description":"How to install PhpWiki on a CentOS 7 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-06-29T18:11:11+00:00","article_modified_time":"2022-06-03T08:44:17+00:00","og_image":[{"width":150,"height":90,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install PhpWiki on a CentOS 7 VPS","datePublished":"2015-06-29T18:11:11+00:00","dateModified":"2022-06-03T08:44:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/"},"wordCount":572,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.png","keywords":["how to install phpwiki without control panel","install PhpWiki Manually","Install PhpWiki on CentOS 7","phpwiki"],"articleSection":["CentOS","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/","name":"How to install PhpWiki on a CentOS 7 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.png","datePublished":"2015-06-29T18:11:11+00:00","dateModified":"2022-06-03T08:44:17+00:00","description":"How to install PhpWiki on a CentOS 7 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/phpwiki.png","width":150,"height":90,"caption":"phpwiki"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpwiki-on-a-centos-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install PhpWiki on a CentOS 7 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\/17225","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=17225"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17225\/revisions"}],"predecessor-version":[{"id":42098,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17225\/revisions\/42098"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17227"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17225"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17225"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}