{"id":14226,"date":"2026-07-15T00:34:44","date_gmt":"2026-07-15T06:34:44","guid":{"rendered":"https:\/\/www.supportpro.com\/blog\/?p=14226"},"modified":"2026-07-15T00:34:47","modified_gmt":"2026-07-15T06:34:47","slug":"mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/","title":{"rendered":"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">RunCloud provides its own PHP versions, which are different from Ubuntu\u2019s default ones. So, instead of using apt-get install php-* to install PHP modules, which can cause conflicts with RunCloud&#8217;s setup, it\u2019s recommended that the modules be manually compiled and installed for compatibility.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Below are the complete instructions for compiling and installing custom PHP modules on <strong><a href=\"https:\/\/www.supportpro.com\/blog\/is-runcloud-worth-it-cost-benefit-analysis\/\" title=\"\">RunCloud<\/a> Nginx<\/strong> servers.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">Before getting started, ensure that you have root access to the server. You can authenticate using either the root password or an SSH key.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 1:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The first step is to install the necessary development tools. The command below installs <strong>autoconf<\/strong> for configuration scripts and <strong>libpcre3-dev<\/strong> for developing regular expressions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">apt-get install autoconf libpcre3-dev<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">apt-get install libmcrypt-dev libreadline-dev<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 2:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Next, download the necessary extension from PECL\u2014a repository for PHP extensions. You&#8217;ll need the source code archive to compile and install the extension on your system. Use the wget command to download the archived files.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">wget&nbsp; <a href=\"https:\/\/pecl.php.net\/get\/mcrypt-1.0.4.tgz\">https:\/\/pecl.php.net\/get\/<strong>e<\/strong><\/a><strong>xtension.version.tgz<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Replace extension.version.tgz with the specific module and version you need. For example:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>wget&nbsp; <\/strong><a href=\"https:\/\/pecl.php.net\/get\/mcrypt-1.0.4.tgz\"><strong>https:\/\/pecl.php.net\/get\/mcrypt-1.0.4.tgz<\/strong><\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the example above, <strong>mcrypt<\/strong> is the module name, and <strong>1.0.4<\/strong> is the version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 3:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Change the directory to the extracted module directory.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>cd extension.version.tgz<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;<\/strong><strong>Step 4:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Installing the module:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>#<\/em><\/strong><em>Clean Previous Builds:<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">make clean<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>#<\/em><\/strong><em>Clean the PHPize Build Environment<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\/RunCloud\/Packages\/<strong>phpXXrc<\/strong>\/bin\/phpize &#8211;clean<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>#Prepare the Build Environment with PHPize<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\/RunCloud\/Packages\/<strong>phpXXrc<\/strong>\/bin\/phpize<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>#Configure the Build<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">.\/configure &#8211;with-php-config=\/RunCloud\/Packages\/<strong>phpXXrc<\/strong>\/bin\/php-config &#8211;with-libdir=lib64 CFLAGS=&#8217;-O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wall -pedantic -fsigned-char -fno-strict-aliasing&#8217;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Note:<\/strong> The &#8216;<strong>XX&#8217;<\/strong> in the commands above should be replaced with the PHP version for which you need the module installed. For example, if you&#8217;re working with PHP 7.4, use &#8216;php74rc,&#8217; and for PHP 8.3, use &#8216;php83rc.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>#Compile and Install the Extension<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">make install<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>#Enable the Extension in PHP<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">echo &#8220;extension=<strong>extension.so<\/strong>&#8221; &gt; \/etc\/php<strong>XX<\/strong>rc\/conf.d\/mcrypt.ini<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Change the \u201cextension\u201d in the above command to the name of the extension. For example:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">echo &#8220;extension=<strong>mcrypt.so<\/strong>&#8221; &gt; \/etc\/ph<strong>p74rc<\/strong>\/conf.d\/mcrypt.ini<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 5:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Final step of the installation procedure, restart the PHP-fpm service and verify the installation.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">systemctl restart php<strong>XX<\/strong>rc-fpm&nbsp;&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\/RunCloud\/Packages\/php<strong>XX<\/strong>rc\/bin\/php -m&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Remember to replace the \u201cXX\u201d with the correct PHP version.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Example:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">systemctl restart php<strong>74<\/strong>rc-fpm&nbsp;&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\/RunCloud\/Packages\/php74rc\/bin\/php -m | mcrypt<\/p>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-white-background-color has-background\"><div class=\"wp-block-media-text__content\">\n<p class=\"has-large-font-size wp-block-paragraph\">Facing issues? <\/p>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Our technical support<br>engineers can solve it. <\/p>\n\n\n\n<!--HubSpot Call-to-Action Code --><span class=\"hs-cta-wrapper\" id=\"hs-cta-wrapper-3350a795-db50-482f-9911-301930d1b1be\"><span class=\"hs-cta-node hs-cta-3350a795-db50-482f-9911-301930d1b1be\" id=\"hs-cta-3350a795-db50-482f-9911-301930d1b1be\"><!--[if lte IE 8]><div id=\"hs-cta-ie-element\"><\/div><![endif]--><a href=\"https:\/\/cta-redirect.hubspot.com\/cta\/redirect\/2725694\/3350a795-db50-482f-9911-301930d1b1be\" ><img decoding=\"async\" class=\"hs-cta-img\" id=\"hs-cta-img-3350a795-db50-482f-9911-301930d1b1be\" style=\"border-width:0px;\" src=\"https:\/\/no-cache.hubspot.com\/cta\/default\/2725694\/3350a795-db50-482f-9911-301930d1b1be.png\"  alt=\"Contact Us today!\"\/><\/a><\/span><script charset=\"utf-8\" src=\"https:\/\/js.hscta.net\/cta\/current.js\"><\/script><script type=\"text\/javascript\"> hbspt.cta.load(2725694, '3350a795-db50-482f-9911-301930d1b1be', {\"useNewLoader\":\"true\",\"region\":\"na1\"}); <\/script><\/span><!-- end HubSpot Call-to-Action Code -->\n<\/div><figure class=\"wp-block-media-text__media\"><img fetchpriority=\"high\" decoding=\"async\" width=\"904\" height=\"931\" src=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup.png\" alt=\"guy server checkup\" class=\"wp-image-12943 size-full\" srcset=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup.png 904w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup-291x300.png 291w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup-768x791.png 768w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2022\/09\/Free-server-checkup-585x602.png 585w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/><\/figure><\/div>\n","protected":false},"excerpt":{"rendered":"<p>RunCloud provides its own PHP versions, which are different from Ubuntu\u2019s default ones. So, instead of using apt-get install php-* to install PHP modules, which can cause conflicts with RunCloud&#8217;s&hellip;<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-14226","post","type-post","status-publish","format-standard","hentry","category-miscellaneous"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"SupportPRO Admin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Server Management Tips | SupportPRO Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to Install Custom PHP Modules on RunCloud\" \/>\n\t\t<meta property=\"og:description\" content=\"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-07-15T06:34:44+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-15T06:34:47+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to Install Custom PHP Modules on RunCloud\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#article\",\"name\":\"How to Install Custom PHP Modules on RunCloud\",\"headline\":\"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide\",\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"},\"datePublished\":\"2026-07-15T00:34:44-06:00\",\"dateModified\":\"2026-07-15T00:34:47-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#webpage\"},\"articleSection\":\"Miscellaneous\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/#listItem\",\"name\":\"Miscellaneous\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/#listItem\",\"position\":2,\"name\":\"Miscellaneous\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#listItem\",\"name\":\"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#listItem\",\"position\":3,\"name\":\"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/#listItem\",\"name\":\"Miscellaneous\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\",\"name\":\"SupportPRO\",\"description\":\"SupportPRO Blog\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"telephone\":\"+18476076123\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/\",\"name\":\"SupportPRO Admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/13d2f63048d631e03a432375448be5eb7861069df4fef10f0cb1c7b36554c225?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"SupportPRO Admin\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#webpage\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/\",\"name\":\"How to Install Custom PHP Modules on RunCloud\",\"description\":\"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"datePublished\":\"2026-07-15T00:34:44-06:00\",\"dateModified\":\"2026-07-15T00:34:47-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"name\":\"Server Management Tips\",\"description\":\"SupportPRO Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to Install Custom PHP Modules on RunCloud<\/title>\n\n","aioseo_head_json":{"title":"How to Install Custom PHP Modules on RunCloud","description":"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.","canonical_url":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#article","name":"How to Install Custom PHP Modules on RunCloud","headline":"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide","author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"},"datePublished":"2026-07-15T00:34:44-06:00","dateModified":"2026-07-15T00:34:47-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#webpage"},"isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#webpage"},"articleSection":"Miscellaneous"},{"@type":"BreadcrumbList","@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.supportpro.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/#listItem","name":"Miscellaneous"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/#listItem","position":2,"name":"Miscellaneous","item":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#listItem","name":"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#listItem","position":3,"name":"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide","previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/#listItem","name":"Miscellaneous"}}]},{"@type":"Organization","@id":"https:\/\/www.supportpro.com\/blog\/#organization","name":"SupportPRO","description":"SupportPRO Blog","url":"https:\/\/www.supportpro.com\/blog\/","telephone":"+18476076123"},{"@type":"Person","@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author","url":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/","name":"SupportPRO Admin","image":{"@type":"ImageObject","@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/13d2f63048d631e03a432375448be5eb7861069df4fef10f0cb1c7b36554c225?s=96&d=mm&r=g","width":96,"height":96,"caption":"SupportPRO Admin"}},{"@type":"WebPage","@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#webpage","url":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/","name":"How to Install Custom PHP Modules on RunCloud","description":"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/#breadcrumblist"},"author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"creator":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"datePublished":"2026-07-15T00:34:44-06:00","dateModified":"2026-07-15T00:34:47-06:00"},{"@type":"WebSite","@id":"https:\/\/www.supportpro.com\/blog\/#website","url":"https:\/\/www.supportpro.com\/blog\/","name":"Server Management Tips","description":"SupportPRO Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Server Management Tips | SupportPRO Blog","og:type":"article","og:title":"How to Install Custom PHP Modules on RunCloud","og:description":"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.","og:url":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/","article:published_time":"2026-07-15T06:34:44+00:00","article:modified_time":"2026-07-15T06:34:47+00:00","twitter:card":"summary","twitter:title":"How to Install Custom PHP Modules on RunCloud","twitter:description":"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability."},"aioseo_meta_data":{"post_id":"14226","title":"How to Install Custom PHP Modules on RunCloud","description":"Learn how to install custom PHP modules on RunCloud with step-by-step instructions, compatibility checks, and best practices for server stability.","keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-07-15 06:34:51","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":"{\"title\":{\"suggestions\":[],\"usage\":0},\"description\":{\"suggestions\":[],\"usage\":0}}","ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2025-02-19 08:23:50","updated":"2026-07-15 06:36:34"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/\" title=\"Miscellaneous\">Miscellaneous<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tMastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.supportpro.com\/blog"},{"label":"Miscellaneous","link":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/"},{"label":"Mastering Custom PHP Module Installation on RunCloud: A Step-by-Step Guide","link":"https:\/\/www.supportpro.com\/blog\/mastering-custom-php-module-installation-on-runcloud-a-step-by-step-guide\/"}],"_links":{"self":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/14226","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/comments?post=14226"}],"version-history":[{"count":2,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/14226\/revisions"}],"predecessor-version":[{"id":17769,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/14226\/revisions\/17769"}],"wp:attachment":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/media?parent=14226"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/categories?post=14226"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/tags?post=14226"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}