{"id":243,"date":"2016-01-10T16:57:16","date_gmt":"2016-01-10T16:57:16","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=243"},"modified":"2018-01-31T08:56:44","modified_gmt":"2018-01-31T14:56:44","slug":"how-to-install-php-nuke-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/","title":{"rendered":"How to install PHP-Nuke on an Ubuntu 14.04 VPS"},"content":{"rendered":"<p>PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his web site, registered users, and he will have in the hand a powerful assembly of tools to maintain an active and 100% interactive web site using databases. This guide should work on other Linux VPS systems as well but was tested and written for an <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 Cloud VPS<\/a>.<!--more--><\/p>\n<p>At the time of writing this tutorial, PHP-Nuke 8.3.2 is the latest stable version available and it requires:<\/p>\n<p>&#8211; Apache web server.<br \/>\n&#8211; PHP (version 4.3.0 or better) with GD graphics support.<br \/>\n&#8211; MySQL(version 4.1.0 or better) installed on your <a href=\"https:\/\/www.linuxcloudvps.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux Cloud VPS<\/a>.<\/p>\n<h4>Installation Instructions:<\/h4>\n<h5>Login to your VPS via SSH<\/h5>\n<pre>ssh user@IP_address<\/pre>\n<p>Make sure that all OS packages are up to date by executing the following command<\/p>\n<pre>[user]$ sudo apt-get update &amp;&amp; sudo apt-get -y upgrade<\/pre>\n<h5>Install MariaDB 10.0<\/h5>\n<p>To install MariaDB, run the following command:<\/p>\n<pre>[user]$ sudo apt-get install -y mariadb-server<\/pre>\n<p>Next, we need to create a database for the PHP-Nuke installation.<\/p>\n<pre>[user]$ mysql -uroot -p\r\n\r\nMariaDB [(none)]&gt; CREATE DATABASE phpnuke;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON phpnuke.* TO &#039;phpnukeuser&#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<h5>Install Apache2 web server<\/h5>\n<pre>[user]$ sudo apt-get install apache2<\/pre>\n<h5>Install PHP and required PHP modules<\/h5>\n<p>To install the latest stable version of PHP and all necessary modules, run:<\/p>\n<pre>[user]$ sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt php5-mysql php5-gd<\/pre>\n<p>Download and extract the latest version of PHP-Nuke on your server:<\/p>\n<pre>[user]$ sudo cd \/opt &amp;&amp; wget https:\/\/bitbucket.org\/phpnuke\/phpnuke\/get\/988b71c099f0.zip\r\n[user]$ sudo unzip 988b71c099f0.zip\r\n[user]$ sudo mv phpnuke-phpnuke-988b71c099f0\/ phpnuke\/\r\n[user]$ sudo mv phpnuke\/ \/var\/www\/html\/<\/pre>\n<p>All PHP-Nuke files need to be readable by the web server user, so set the proper ownership:<\/p>\n<pre>[user]$ sudo chown www-data:www-data -R \/var\/www\/html\/phpnuke<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018phpnuke.conf\u2019 on your virtual server:<\/p>\n<pre>[user]$ sudo touch \/etc\/apache2\/sites-available\/phpnuke.conf\r\n[user]$ sudo ln -s \/etc\/apache2\/sites-available\/phpnuke.conf \/etc\/apache2\/sites-enabled\/phpnuke.conf\r\n[user]$ sudo nano \/etc\/apache2\/sites-available\/phpnuke.conf<\/pre>\n<p>Then, add the following lines:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@yourdomain.com\r\nDocumentRoot \/var\/www\/html\/phpnuke\/\r\nServerName your-domain.com\r\nServerAlias www.your-domain.com\r\n&lt;Directory \/var\/www\/html\/phpnuke\/&gt;\r\nOptions FollowSymLinks\r\nAllowOverride All\r\n&lt;\/Directory&gt;\r\nErrorLog \/var\/log\/apache2\/your-domain.com-error_log\r\nCustomLog \/var\/log\/apache2\/your-domain.com-access_log common\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>[user]$ sudo service apache2 restart<\/pre>\n<p>Open your favorite web browser, navigate to http:\/\/your-domain.com\/phpnuke\/html\/install\/ and if you configured everything correctly the PHP-Nuke installer should be starting. You should follow the easy instructions on the install screen inserting the necessary information as requested.<\/p>\n<p>Once you finish the installation you can access the admin section at:<\/p>\n<pre>http:\/\/yourdomain.com\/phpnuke\/html\/admin.php<\/pre>\n<p>IMPORTANT!!!<br \/>\nDo not forget to remove the \u2018install\u2019 directory on your server after finishing the installation:<\/p>\n<pre>rm -rf \/var\/www\/html\/phpnuke\/html\/install\/<\/pre>\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.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install PHP-Nuke<\/strong> for you. They are available 24\u00d77 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","protected":false},"excerpt":{"rendered":"<p>PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his web site, registered users, and he will have in the hand a powerful assembly of tools to maintain an active and 100% interactive web site using databases. This guide should work &#8230; <a title=\"How to install PHP-Nuke on an Ubuntu 14.04 VPS\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/\" aria-label=\"More on How to install PHP-Nuke on an Ubuntu 14.04 VPS\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":244,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[41,42,132,43,44],"class_list":["post-243","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-how-to-install-php-nuke","tag-install-php-nuke-on-ubuntu","tag-linuxcloudvps","tag-php-nuke","tag-php-nuke-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install PHP-Nuke on an Ubuntu 14.04 VPS | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his\" \/>\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-php-nuke-on-an-ubuntu-14-04-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 PHP-Nuke on an Ubuntu 14.04 VPS | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/\" \/>\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=\"2016-01-10T16:57:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2015\/11\/phpnuke.png\" \/>\n\t<meta property=\"og:image:width\" content=\"235\" \/>\n\t<meta property=\"og:image:height\" content=\"57\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"3 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-php-nuke-on-an-ubuntu-14-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to install PHP-Nuke on an Ubuntu 14.04 VPS\",\"datePublished\":\"2016-01-10T16:57:16+00:00\",\"dateModified\":\"2018-01-31T14:56:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/\"},\"wordCount\":410,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/phpnuke.png\",\"keywords\":[\"How to install PHP-Nuke\",\"Install PHP-Nuke on Ubuntu\",\"linuxcloudvps\",\"php-nuke\",\"php-nuke vps\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/\",\"name\":\"How to install PHP-Nuke on an Ubuntu 14.04 VPS | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/phpnuke.png\",\"datePublished\":\"2016-01-10T16:57:16+00:00\",\"dateModified\":\"2018-01-31T14:56:44+00:00\",\"description\":\"PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/phpnuke.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/phpnuke.png\",\"width\":235,\"height\":57,\"caption\":\"phpnuke cloud vps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install PHP-Nuke on an Ubuntu 14.04 VPS\"}]},{\"@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 PHP-Nuke on an Ubuntu 14.04 VPS | LinuxCloudVPS Blog","description":"PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his","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-php-nuke-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install PHP-Nuke on an Ubuntu 14.04 VPS | LinuxCloudVPS Blog","og_description":"PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2016-01-10T16:57:16+00:00","article_modified_time":"2018-01-31T14:56:44+00:00","og_image":[{"width":235,"height":57,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2015\/11\/phpnuke.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to install PHP-Nuke on an Ubuntu 14.04 VPS","datePublished":"2016-01-10T16:57:16+00:00","dateModified":"2018-01-31T14:56:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/"},"wordCount":410,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2015\/11\/phpnuke.png","keywords":["How to install PHP-Nuke","Install PHP-Nuke on Ubuntu","linuxcloudvps","php-nuke","php-nuke vps"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/","name":"How to install PHP-Nuke on an Ubuntu 14.04 VPS | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2015\/11\/phpnuke.png","datePublished":"2016-01-10T16:57:16+00:00","dateModified":"2018-01-31T14:56:44+00:00","description":"PHP-Nuke is a web-based automated news publishing and content management system (CMS), based on PHP and MySQL. The Administrator has total control of his","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2015\/11\/phpnuke.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2015\/11\/phpnuke.png","width":235,"height":57,"caption":"phpnuke cloud vps"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-php-nuke-on-an-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install PHP-Nuke on an Ubuntu 14.04 VPS"}]},{"@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\/243","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=243"}],"version-history":[{"count":7,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/243\/revisions"}],"predecessor-version":[{"id":546,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/243\/revisions\/546"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/244"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}