{"id":6103,"date":"2021-02-08T17:39:28","date_gmt":"2021-02-08T12:09:28","guid":{"rendered":"https:\/\/www.skynats.com\/?p=6103"},"modified":"2024-12-06T17:38:12","modified_gmt":"2024-12-06T12:08:12","slug":"fix-plesk-error-new-files-configuration-for-apache-web-server","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/","title":{"rendered":"Error: New files of configuration for Apache web server in Plesk"},"content":{"rendered":"\n<p>We often encounter the <strong>Error: New files of configuration for Apache web server in Plesk<\/strong> when accessing the home page of the Plesk control panel. This error can arise due to various reasons, such as the Mailman package not being installed, PHP memory issues, or APS database-related errors. These factors can interfere with the proper functioning of the web server and control panel.<\/p>\n\n\n\n<p>We handle Plesk errors for our clients by using our Plesk management plan. Our technical team expert will handle and fix the error on behalf of you which is caused due to some following reason. You can check out our <a href=\"https:\/\/www.skynats.com\/plesk-server-management\/ \" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#02709f\" class=\"has-inline-color\">Plesk <\/span><span style=\"color:#0070a0\" class=\"has-inline-color\">management plan<\/span><\/a> for further assistance.<\/p>\n\n\n\n<p>While accessing the Plesk you will be receiving the below popup message.&nbsp;<\/p>\n\n\n\n<p><strong>Error:<\/strong> New files of configuration for Apache web server in Plesk were not built due to errors in configuration templates. The detailed error message was e-mailed to you, so please check the mail, fix the error, and click here to retry generating configuration.<\/p>\n\n\n\n<p>Follow the below steps to fix the issue.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Mailman package is not installed<\/strong><\/li>\n<\/ol>\n\n\n\n<p>While reconfiguring the domain, you will be experiencing the following error.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># \/usr\/local\/psa\/admin\/sbin\/httpdmng --reconfigure-all<\/code><\/pre>\n\n\n\n<p>No valid mailman bindir detected<\/p>\n\n\n\n<p>&nbsp;In this case, the error is due to the mailman package missing.<\/p>\n\n\n\n<p><strong>Follow the below steps to fix this issue<\/strong>.<\/p>\n\n\n\n<p>First of all, you need to download and install the mailman package from <a href=\"http:\/\/autoinstall.plesk.com\">http:\/\/autoinstall.plesk.com<\/a><\/p>\n\n\n\n<p>After that remove all entries from the configuration table of the &#8216;psa&#8217; database and follow the commands below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -uadmin -p`cat \/etc\/psa\/.psa.shadow` psa -e\"delete from Configurations\"<\/code><\/pre>\n\n\n\n<p>Then remove all &#8216;Include&#8217; records from the configuration files and all the contents from the directory below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># sed -i \/Include\/d \/usr\/local\/psa\/admin\/conf\/ip_vhosts_bootstrap.conf&amp;&amp; sed -i \/Include\/d \/usr\/local\/psa\/admin\/conf\/vhosts_bootstrap.conf&amp;&amp; sed -i \/include\/d \/usr\/local\/psa\/admin\/conf\/nginx_vhosts_bootstrap.conf&amp;&amp; sed -i \/Include\/d \/usr\/local\/psa\/admin\/conf\/webmail_horde_bootstrap.conf&amp;&amp; sed -i \/Include\/d \/usr\/local\/psa\/admin\/conf\/webmail_atmail_bootstrap.conf&amp;&amp; sed -i \/Include\/d \/etc\/httpd\/conf.d\/zz010_psa_httpd.conf&amp;&amp; rm -f \/usr\/local\/psa\/admin\/conf\/generated\/*<\/code><\/pre>\n\n\n\n<p>Finally, you can reconfigure and try to fix the issues.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/usr\/local\/psa\/admin\/bin\/httpdmng --reconfigure-all<\/code><\/pre>\n\n\n\n<p><strong>Aps database-related error.<\/strong><\/p>\n\n\n\n<p>Ensure its DB-related error and follow the below steps. &nbsp;Run the following commands to check the reason behind the error.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -uadmin -p`cat \/etc\/psa\/.psa.shadow ` psa -Nse\"select * from Configurations where status='error' G\"<\/code><\/pre>\n\n\n\n<p>Follow the below steps to fix the error.<br>First, login into MYSQL and connect to the psa database by using the following commands.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># mysql -uadmin -p`cat \/etc\/psa\/.psa.shadow`\nmysql> connect psa<\/code><\/pre>\n\n\n\n<p>Then run the below query to find the objectIDs with an error status.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql> select objectId from Configurations where status='error';\n+----------+\n| objectId |\n+----------+\n| 8 |\n+----------+\n1 row in set (0.00 sec)<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">From the above result you will get the objectId that will find out the domain by using the ID. <\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql> select id,name,parentDomainId from domains where id=8;\n+----+------------------+----------------+\n| id | name | parentDomainId |\n+----+------------------+----------------+\n| 8 | test.com | 0 |\n+----+------------------+----------------+\n1 row in set (0.00 sec)<\/code><\/pre>\n\n\n\n<p>We will get the subscription ID for the specified domain.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql> select id, object_id from Subscriptions where object_id=8\n+----+-----------+\n| id | object_id |\n+----+-----------+\n| 5 | 8 |\n+----+-----------+\n1 row in set (0.00 sec)<\/code><\/pre>\n\n\n\n<p>Later check the subscription has entries in the APS context table.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> mysql> SELECT `apsContexts`.* FROM `apsContexts` AS `apsContexts` WHERE (`pleskType` = 'hosting' AND `pleskId` =8 );\n+----+-----------+---------+-------+----------------+\n| id | pleskType | pleskId | ssl | subscriptionId |\n+----+-----------+---------+-------+----------------+\n| 5 | hosting | 8 | false | 0 |\n+----+-----------+---------+-------+----------------+\n1 row in set (0.00 sec)<\/code><\/pre>\n\n\n\n<p>&nbsp;As you can see the subscription ID to be different from the Plesk ID.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql> update apsContexts set subscriptionId=5 where pleskId=8;\nQuery OK, 1 row affected (0.01 sec)\nRows matched: 1 Changed: 1 Warnings: 0<\/code><\/pre>\n\n\n\n<p>Finally, you can reconfigure and then fix the issues.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/usr\/local\/psa\/admin\/bin\/httpdmng --reconfigure-all<\/code><\/pre>\n\n\n\n<p><strong>PHP Memory issue<\/strong><\/p>\n\n\n\n<p>&nbsp;You can check the PHP memory issue in the &#8216;\/var\/log\/sw-cp-server\/error_log&#8217;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>\u00a0<\/strong>cat \/var\/log\/sw-cp-server\/error_log<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>PHP Fatal error: allowed memory size of 134217728 bytes exhausted (tried to allocate 7680 bytes)<\/strong><\/pre>\n\n\n\n<p>The error is due to the Plesk PHP memory limit.<\/p>\n\n\n\n<p><strong>Follow the steps to solve the issue.<\/strong><\/p>\n\n\n\n<p>Try to set the Php memory _limit&#8221; parameter in&#8221;\/usr\/local\/psa\/admin\/conf\/php.ini&#8221; into a high value than the current one.<\/p>\n\n\n\n<p>Try to remove the old error messages (non-existent configuration files) via the Plesk interface or through the SSH connection.<\/p>\n\n\n\n<p><strong>Follow the steps to remove the old error via the Plesk interface:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For that, you need to login into the Plesk account.<\/li>\n\n\n\n<li>Click on the tools and settings then select the webserver configurations trouble-shooter.<\/li>\n\n\n\n<li>Click the &#8216;v&#8217; button and select the status search filter to error from the drop-down menu.<\/li>\n\n\n\n<li>You can choose any of the following to fix the errors.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Click on the Rebuild button and select all the broken configuration files.<\/li>\n\n\n\n<li>If the configuration files get the same error then choose all the files and try to remove them by clicking on the remove button.<\/li>\n\n\n\n<li>Check and ensure no broken configuration files are leftover.<\/li>\n<\/ul>\n\n\n\n<p><strong>Follow the steps to remove the old messages via SSH connection.<\/strong><\/p>\n\n\n\n<p>Connect to the Plesk server via SSH.<\/p>\n\n\n\n<p>Use the following commands to remove the broken configuration files from the Plesk database.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>plesk db \"delete from Configurations where status &lt;&gt; 'ok'\\G\"\t<\/code><\/pre>\n\n\n\n<p>Validate configuration files by using the following commands.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>plesk repair web -validate-configuration<\/code><\/pre>\n\n\n\n<p>In case, any further errors are found that would be solved by following the commands.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>plesk repair web -y<\/code><\/pre>\n\n\n\n<p>Use the Plesk &#8216;fix_vhosts&#8217; script to find out all the missing virtual host directories and then create the basic virtual host structure.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># wget http:\/\/kb.parallels.com\/Attachments\/24430\/Attachments\/fix_vhosts.sh.zip\n# unzip fix_vhosts.sh.zip\n# chmod +x fix_vhosts.sh\n# .\/fix_vhosts.sh<\/code><\/pre>\n\n\n\n<p><br>This blog will give clear instructions to fix the Error: New files of configuration for Apache web server in Plesk. If you are stuck with the setup, our <a href=\"https:\/\/www.skynats.com\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#016c9a\" class=\"has-inline-color\">technical support team<\/span><\/a> will solve it for you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We often encounter the Error: New files of configuration for Apache web server in Plesk when accessing the home page of the Plesk control panel. This error can arise due to various reasons, such as the Mailman package not being installed, PHP memory issues, or APS database-related errors. These factors can interfere with the proper [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[35,193],"class_list":["post-6103","post","type-post","status-publish","format-standard","hentry","category-blog","tag-apache-webserver","tag-plesk-server-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Error: New files of configuration for Apache web server in Plesk<\/title>\n<meta name=\"description\" content=\"Resolve Error: New files of configuration for Apache web server in Plesk with expert tips. Learn how to fix configuration issues efficiently.\" \/>\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.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Error: New files of configuration for Apache web server in Plesk\" \/>\n<meta property=\"og:description\" content=\"Resolve Error: New files of configuration for Apache web server in Plesk with expert tips. Learn how to fix configuration issues efficiently.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-08T12:09:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-06T12:08:12+00:00\" \/>\n<meta name=\"author\" content=\"Kevin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kevin\" \/>\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.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/\"},\"author\":{\"name\":\"Kevin\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/749ae0470320eb759ff1e07b8ea7fbe3\"},\"headline\":\"Error: New files of configuration for Apache web server in Plesk\",\"datePublished\":\"2021-02-08T12:09:28+00:00\",\"dateModified\":\"2024-12-06T12:08:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/\"},\"wordCount\":692,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"apache webserver\",\"Plesk server management\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/\",\"name\":\"Error: New files of configuration for Apache web server in Plesk\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2021-02-08T12:09:28+00:00\",\"dateModified\":\"2024-12-06T12:08:12+00:00\",\"description\":\"Resolve Error: New files of configuration for Apache web server in Plesk with expert tips. Learn how to fix configuration issues efficiently.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fix-plesk-error-new-files-configuration-for-apache-web-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Error: New files of configuration for Apache web server in Plesk\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/749ae0470320eb759ff1e07b8ea7fbe3\",\"name\":\"Kevin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/37a006382b218eff478403065cc9d903f85dd0085cb2af7fee95b4537b581c13?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/37a006382b218eff478403065cc9d903f85dd0085cb2af7fee95b4537b581c13?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/37a006382b218eff478403065cc9d903f85dd0085cb2af7fee95b4537b581c13?s=96&d=mm&r=g\",\"caption\":\"Kevin\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Error: New files of configuration for Apache web server in Plesk","description":"Resolve Error: New files of configuration for Apache web server in Plesk with expert tips. Learn how to fix configuration issues efficiently.","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.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/","og_locale":"en_US","og_type":"article","og_title":"Error: New files of configuration for Apache web server in Plesk","og_description":"Resolve Error: New files of configuration for Apache web server in Plesk with expert tips. Learn how to fix configuration issues efficiently.","og_url":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2021-02-08T12:09:28+00:00","article_modified_time":"2024-12-06T12:08:12+00:00","author":"Kevin","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Kevin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/"},"author":{"name":"Kevin","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/749ae0470320eb759ff1e07b8ea7fbe3"},"headline":"Error: New files of configuration for Apache web server in Plesk","datePublished":"2021-02-08T12:09:28+00:00","dateModified":"2024-12-06T12:08:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/"},"wordCount":692,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["apache webserver","Plesk server management"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/","url":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/","name":"Error: New files of configuration for Apache web server in Plesk","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2021-02-08T12:09:28+00:00","dateModified":"2024-12-06T12:08:12+00:00","description":"Resolve Error: New files of configuration for Apache web server in Plesk with expert tips. Learn how to fix configuration issues efficiently.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/fix-plesk-error-new-files-configuration-for-apache-web-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Error: New files of configuration for Apache web server in Plesk"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/749ae0470320eb759ff1e07b8ea7fbe3","name":"Kevin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/37a006382b218eff478403065cc9d903f85dd0085cb2af7fee95b4537b581c13?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/37a006382b218eff478403065cc9d903f85dd0085cb2af7fee95b4537b581c13?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/37a006382b218eff478403065cc9d903f85dd0085cb2af7fee95b4537b581c13?s=96&d=mm&r=g","caption":"Kevin"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6103","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=6103"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6103\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=6103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=6103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=6103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}