{"id":11517,"date":"2021-05-23T04:42:04","date_gmt":"2021-05-23T08:42:04","guid":{"rendered":"http:\/\/engineersgarag-main\/setup-apache-web-server-part-4-12\/"},"modified":"2023-07-02T14:44:33","modified_gmt":"2023-07-02T18:44:33","slug":"setup-apache-web-server-part-4-12","status":"publish","type":"post","link":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/","title":{"rendered":"Setup Apache Web Server- (Part 4\/12)"},"content":{"rendered":"<p align=\"justify\">In this project the\u00a0<a href=\"https:\/\/www.engineersgarage.com\/embedded\/raspberry-pi\/how-load-ubuntu-raspberry-pi\">Raspberry Pi board is booted with the Ubuntu<\/a>\u00a0OS and is connected to the Ethernet port of a Windows7 PC. The board is connected to the internet connection as explained in the article <a href=\"https:\/\/www.engineersgarage.com\/embedded\/raspberry-pi\/how-connect-raspberry-pi-wi-fi-connection-pc\">Connecting the Raspberrypi to the internet<\/a>. The IP address of the Raspberry Pi board has been obtained to\u00a0<a href=\"https:\/\/www.engineersgarage.com\/embedded\/raspberry-pi\/how-access-raspberry-pi-directly-through-ethernet-port-pc\">remote login in the TUI<\/a>\u00a0using the PUTTY and is\u00a0<a href=\"https:\/\/www.engineersgarage.com\/embedded\/raspberry-pi\/get-display-on-raspberry-pi\">remotely accessed using VNC<\/a>.<\/p>\n<p align=\"justify\"><strong>Make sure you\u2019re up-to-date:<\/strong><\/p>\n<p align=\"justify\">To check for update and to install them enter the following command:<\/p>\n<p align=\"justify\"><em><strong>sudo apt-get update<\/strong><\/em><\/p>\n<p align=\"justify\"><strong>Install Apache:<\/strong><\/p>\n<p align=\"justify\">First, we have to install the apache2 package by entering the following command:<\/p>\n<p align=\"justify\"><em><strong>Sudo apt-get install apache2 apache2-doc apache2-utils<\/strong><\/em><\/p>\n<p align=\"justify\"><em><strong><img decoding=\"async\" style=\"display: block; margin-left: auto; margin-right: auto;\" title=\"Apache Installation Command in Raspberry Pi\" src=\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/07\/Apache-Installation-Command-Raspberry-Pi.png\" alt=\"Apache Installation Command in Raspberry Pi\" \/><\/strong><\/em><\/p>\n<p style=\"text-align: center;\"><span style=\"font-size: 12px;\"><span style=\"font-family: verdana,geneva,sans-serif;\"><em>Fig. 2: Apache Installation Command In Raspberry Pi<\/em><\/span><\/span><\/p>\n<p align=\"justify\">This shouldn\u2019t take long, press \u2018y\u2019 to continue installation.<\/p>\n<p align=\"justify\"><strong>Test The Web Server:<\/strong><\/p>\n<p align=\"justify\">Once the installation is finished, check the server by navigating any browser to http:\/\/localhost\/ on the Pi itself, or http:\/\/192.168.1.10 (whatever the Pi&#8217;s IP address) from another computer on the Local Area Network you should see the following. To find the Pi&#8217;s IP address, type hostname -I at the command line.<\/p>\n<p align=\"justify\"><img decoding=\"async\" style=\"display: block; margin-left: auto; margin-right: auto;\" title=\"Apache Installation Command in Raspberry Pi\" src=\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/07\/Apache-Installation-Command-Raspberry-Pi.png\" alt=\"Apache Installation Command in Raspberry Pi\" \/><\/p>\n<p style=\"text-align: center;\"><span style=\"font-size: 12px;\"><span style=\"font-family: verdana,geneva,sans-serif;\"><em>Fig. 3: Testing Of Web Server Browse On The Pi Through http:\/\/localhost\/\u00a0<\/em><\/span><\/span><\/p>\n<p align=\"justify\"><strong>Installing PHP:<\/strong><\/p>\n<p align=\"justify\">To allow your <a href=\"https:\/\/httpd.apache.org\/\">Apache server<\/a> to process PHP files, you&#8217;ll need to install PHP5 module for Apache. Type the following command to install these:<\/p>\n<p align=\"justify\"><em><strong>sudo apt-get install php5 libapache2-mod-php5\u00a0<\/strong><\/em><\/p>\n<p align=\"justify\"><em><strong><img decoding=\"async\" style=\"display: block; margin-left: auto; margin-right: auto;\" title=\"Installing PHP5 to process PHP files in Apache\" src=\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/07\/Installing-PHP5-process-PHP-files-Apache.png\" alt=\"Installing PHP5 to process PHP files in Apache\" \/><\/strong><\/em><\/p>\n<p style=\"text-align: center;\"><span style=\"font-size: 12px;\"><span style=\"font-family: verdana,geneva,sans-serif;\"><em>Fig. 4: Installing PHP5 To Process PHP Files In Apache<\/em><\/span><\/span><\/p>\n<p align=\"justify\"><em><strong>Copying web page files:<\/strong><\/em><\/p>\n<p align=\"justify\">Navigate to \u2018www\u2019 folder by entering this command:<\/p>\n<p align=\"justify\"><em><strong>cd \/var\/www<\/strong><\/em><\/p>\n<p align=\"justify\">Now remove the index.html file and create the file index.php by following two commands<\/p>\n<p align=\"justify\"><em><strong>sudo rm index.html<\/strong><\/em><\/p>\n<p align=\"justify\"><em><strong>sudo nano index.php<\/strong><\/em><\/p>\n<p align=\"justify\">Now your Apache server is capable of handling some <a href=\"http:\/\/php.net\/manual\/en\/intro-whatis.php\">PHP<\/a> content also:<\/p>\n<p align=\"justify\"><em><strong>&lt;?php echo &#8220;hello world&#8221;;<\/strong><\/em><\/p>\n<p align=\"justify\">You should see &#8220;hello world&#8221; when you save and refresh your browser.<\/p>\n<p align=\"justify\">Try something dynamic by fetching date and time details.<\/p>\n<p align=\"justify\"><em><strong>&lt;?php echo date(&#8216;Y-m-d H:i:s&#8217;);<\/strong><\/em><\/p>\n<p align=\"justify\">or show your PHP info:<\/p>\n<p align=\"justify\"><em><strong>&lt;?php phpinfo();<\/strong><\/em><\/p>\n<p align=\"justify\"><em><strong><img decoding=\"async\" style=\"display: block; margin-left: auto; margin-right: auto;\" title=\"Testing PHP code in Raspberry Pi Apache Server\" src=\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/07\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png\" alt=\"Testing PHP code in Raspberry Pi Apache Server\" \/><\/strong><\/em><\/p>\n<p style=\"text-align: center;\"><span style=\"font-size: 12px;\"><span style=\"font-family: verdana,geneva,sans-serif;\"><em>Fig. 5: Testing PHP Code In Raspberry Pi Apache Server<\/em><\/span><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article is to provide step by step instructions for making Raspberry Pi as a web server where we can publish our web pages over local network. Apache is a prevalent web server application you can introduce on the Raspberry Pi to permit it to serve pages. All alone, Apache can serve HTML documents over HTTP, and with extra modules can serve element website pages utilizing scripting tools, for example, PHP. The fundamental services which are required to turn your Raspberry Pi into a web server are, Apache (the web server itself), PHP (scripting language).<\/p>\n","protected":false},"author":294,"featured_media":64045,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[3993,9],"tags":[],"class_list":{"2":"type-post","9":"entry","10":"has-post-thumbnail"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.2 (Yoast SEO v25.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Setup Apache Web Server- (Part 4\/12)<\/title>\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.engineersgarage.com\/setup-apache-web-server-part-4-12\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setup Apache Web Server- (Part 4\/12)\" \/>\n<meta property=\"og:description\" content=\"This article is to provide step by step instructions for making Raspberry Pi as a web server where we can publish our web pages over local network. Apache is a prevalent web server application you can introduce on the Raspberry Pi to permit it to serve pages. All alone, Apache can serve HTML documents over HTTP, and with extra modules can serve element website pages utilizing scripting tools, for example, PHP. The fundamental services which are required to turn your Raspberry Pi into a web server are, Apache (the web server itself), PHP (scripting language).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/\" \/>\n<meta property=\"og:site_name\" content=\"Engineers Garage\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/engineersgarage\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1048\" \/>\n\t<meta property=\"og:image:height\" content=\"705\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Prabakaran P.M\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@EngineersGarage\" \/>\n<meta name=\"twitter:site\" content=\"@EngineersGarage\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prabakaran P.M\" \/>\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.engineersgarage.com\/setup-apache-web-server-part-4-12\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/\"},\"author\":{\"name\":\"Prabakaran P.M\",\"@id\":\"https:\/\/www.engineersgarage.com\/#\/schema\/person\/31715c526379b6227c36ba75bd9d5358\"},\"headline\":\"Setup Apache Web Server- (Part 4\/12)\",\"datePublished\":\"2021-05-23T08:42:04+00:00\",\"dateModified\":\"2023-07-02T18:44:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/\"},\"wordCount\":348,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.engineersgarage.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png\",\"articleSection\":[\"Raspberry pi\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/\",\"url\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/\",\"name\":\"Setup Apache Web Server- (Part 4\/12)\",\"isPartOf\":{\"@id\":\"https:\/\/www.engineersgarage.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png\",\"datePublished\":\"2021-05-23T08:42:04+00:00\",\"dateModified\":\"2023-07-02T18:44:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage\",\"url\":\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png\",\"contentUrl\":\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png\",\"width\":1048,\"height\":705},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.engineersgarage.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setup Apache Web Server- (Part 4\/12)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.engineersgarage.com\/#website\",\"url\":\"https:\/\/www.engineersgarage.com\/\",\"name\":\"Engineers Garage\",\"description\":\"Electronic Projects, Electrical Engineering Resources, Makers Articles and Product News\",\"publisher\":{\"@id\":\"https:\/\/www.engineersgarage.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.engineersgarage.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.engineersgarage.com\/#organization\",\"name\":\"Engineer's Garage - WTWH Media\",\"url\":\"https:\/\/www.engineersgarage.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.engineersgarage.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/08\/EGlogo.png\",\"contentUrl\":\"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/08\/EGlogo.png\",\"width\":372,\"height\":52,\"caption\":\"Engineer's Garage - WTWH Media\"},\"image\":{\"@id\":\"https:\/\/www.engineersgarage.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/engineersgarage\",\"https:\/\/x.com\/EngineersGarage\",\"https:\/\/www.youtube.com\/channel\/UC0VITh11JSYk-UW7toLebUw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.engineersgarage.com\/#\/schema\/person\/31715c526379b6227c36ba75bd9d5358\",\"name\":\"Prabakaran P.M\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.engineersgarage.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/904ba7cdba032f0cb42d6c51fc58c7c27dde8a425c34aad62444b3f1dd5c19fe?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/904ba7cdba032f0cb42d6c51fc58c7c27dde8a425c34aad62444b3f1dd5c19fe?s=96&r=g\",\"caption\":\"Prabakaran P.M\"},\"url\":\"https:\/\/www.engineersgarage.com\/author\/pp-m\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Setup Apache Web Server- (Part 4\/12)","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.engineersgarage.com\/setup-apache-web-server-part-4-12\/","og_locale":"en_US","og_type":"article","og_title":"Setup Apache Web Server- (Part 4\/12)","og_description":"This article is to provide step by step instructions for making Raspberry Pi as a web server where we can publish our web pages over local network. Apache is a prevalent web server application you can introduce on the Raspberry Pi to permit it to serve pages. All alone, Apache can serve HTML documents over HTTP, and with extra modules can serve element website pages utilizing scripting tools, for example, PHP. The fundamental services which are required to turn your Raspberry Pi into a web server are, Apache (the web server itself), PHP (scripting language).","og_url":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/","og_site_name":"Engineers Garage","article_publisher":"https:\/\/www.facebook.com\/engineersgarage","og_image":[{"width":1048,"height":705,"url":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png","type":"image\/png"}],"author":"Prabakaran P.M","twitter_card":"summary_large_image","twitter_creator":"@EngineersGarage","twitter_site":"@EngineersGarage","twitter_misc":{"Written by":"Prabakaran P.M","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#article","isPartOf":{"@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/"},"author":{"name":"Prabakaran P.M","@id":"https:\/\/www.engineersgarage.com\/#\/schema\/person\/31715c526379b6227c36ba75bd9d5358"},"headline":"Setup Apache Web Server- (Part 4\/12)","datePublished":"2021-05-23T08:42:04+00:00","dateModified":"2023-07-02T18:44:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/"},"wordCount":348,"commentCount":0,"publisher":{"@id":"https:\/\/www.engineersgarage.com\/#organization"},"image":{"@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage"},"thumbnailUrl":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png","articleSection":["Raspberry pi","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/","url":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/","name":"Setup Apache Web Server- (Part 4\/12)","isPartOf":{"@id":"https:\/\/www.engineersgarage.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage"},"image":{"@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage"},"thumbnailUrl":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png","datePublished":"2021-05-23T08:42:04+00:00","dateModified":"2023-07-02T18:44:33+00:00","breadcrumb":{"@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#primaryimage","url":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png","contentUrl":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server.png","width":1048,"height":705},{"@type":"BreadcrumbList","@id":"https:\/\/www.engineersgarage.com\/setup-apache-web-server-part-4-12\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.engineersgarage.com\/"},{"@type":"ListItem","position":2,"name":"Setup Apache Web Server- (Part 4\/12)"}]},{"@type":"WebSite","@id":"https:\/\/www.engineersgarage.com\/#website","url":"https:\/\/www.engineersgarage.com\/","name":"Engineers Garage","description":"Electronic Projects, Electrical Engineering Resources, Makers Articles and Product News","publisher":{"@id":"https:\/\/www.engineersgarage.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.engineersgarage.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.engineersgarage.com\/#organization","name":"Engineer's Garage - WTWH Media","url":"https:\/\/www.engineersgarage.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.engineersgarage.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/08\/EGlogo.png","contentUrl":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2019\/08\/EGlogo.png","width":372,"height":52,"caption":"Engineer's Garage - WTWH Media"},"image":{"@id":"https:\/\/www.engineersgarage.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/engineersgarage","https:\/\/x.com\/EngineersGarage","https:\/\/www.youtube.com\/channel\/UC0VITh11JSYk-UW7toLebUw"]},{"@type":"Person","@id":"https:\/\/www.engineersgarage.com\/#\/schema\/person\/31715c526379b6227c36ba75bd9d5358","name":"Prabakaran P.M","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.engineersgarage.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/904ba7cdba032f0cb42d6c51fc58c7c27dde8a425c34aad62444b3f1dd5c19fe?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/904ba7cdba032f0cb42d6c51fc58c7c27dde8a425c34aad62444b3f1dd5c19fe?s=96&r=g","caption":"Prabakaran P.M"},"url":"https:\/\/www.engineersgarage.com\/author\/pp-m\/"}]}},"featured_image_src":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server-600x400.png","featured_image_src_square":"https:\/\/www.engineersgarage.com\/wp-content\/uploads\/2021\/05\/Testing-PHP-code-Raspberry-Pi-Apache-Server-600x600.png","author_info":{"display_name":"Prabakaran P.M","author_link":"https:\/\/www.engineersgarage.com\/author\/pp-m\/"},"_links":{"self":[{"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/posts\/11517","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/users\/294"}],"replies":[{"embeddable":true,"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/comments?post=11517"}],"version-history":[{"count":0,"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/posts\/11517\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/media\/64045"}],"wp:attachment":[{"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/media?parent=11517"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/categories?post=11517"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.engineersgarage.com\/wp-json\/wp\/v2\/tags?post=11517"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}