{"id":746,"date":"2024-10-07T09:43:58","date_gmt":"2024-10-06T23:43:58","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/?p=746"},"modified":"2024-10-07T09:44:00","modified_gmt":"2024-10-06T23:44:00","slug":"increase-phpmyadmin-upload-size-limit-on-azure-web-app","status":"publish","type":"post","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/","title":{"rendered":"Increase PHPMyAdmin Upload Size Limit on Azure Web App"},"content":{"rendered":"\n<p>In this Azure App Services article, we will show how to increase PHPmyAdmin Upload size limit on Azure Web App.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>PHPMyAdmin is a PHP-based open-source and free tool that allows us to manage MySQL and MariaDB databases using a web interface.  The tool offers a simplified interface that makes the administration of MySQL intuitive and simple.<\/p>\n\n\n\n<p>MySQL deployments are very popular with WordPress, and the majority of WordPress these days runs on databases powered by MqSQL. <\/p>\n\n\n\n<p>When deploying WordPress on Microsft Azure Web App, the deployment comes with the Azure MySQL database fully hosted and managed by Azure. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-azure-web-app-upload-limit\">Azure Web App Upload Limit <\/h2>\n\n\n\n<p>By default, Azure MySQL databases come with a 50MB upload limit. For most WordPress installations, this is not an issue; however, for large installations where you need to import and upload an existing MySQL database, this limit is not enough. This post will show you how to increase the default upload limit.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-phpmyadmin\">PHPMyAdmin <\/h2>\n\n\n\n<p>To access your PHPMyAdmin tool, open a web browser and use the following URL (Change the webappname to your Azure Web App). <\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-b1ab8c5d41f24c4e9c68125686969eda\"><code>https:&#47;&#47;WEBAPPNAME.azurewebsites.net\/phpmyadmin\/<\/code><\/pre>\n\n\n\n<p>The PHPMyAdmin interface is shown below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"885\" height=\"601\" data-src=\"\/wp-content\/uploads\/2024\/10\/image-4.png\" alt=\"\" class=\"wp-image-747 lazyload\" data-srcset=\"\/wp-content\/uploads\/2024\/10\/image-4.png 885w, \/wp-content\/uploads\/2024\/10\/image-4-300x204.png 300w, \/wp-content\/uploads\/2024\/10\/image-4-768x522.png 768w, \/wp-content\/uploads\/2024\/10\/image-4-480x326.png 480w\" data-sizes=\"(max-width: 885px) 100vw, 885px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 885px; --smush-placeholder-aspect-ratio: 885\/601;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-increase-phpmyadmin-upload-size-limit-on-azure-web-app\">How to Increase PHPMyAdmin Upload Size Limit on Azure Web App<\/h2>\n\n\n\n<p>We must first add an environment variable to the Azure Web App to increase the default limit. Open your Azure Web App and add the following environment variable. <\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>Name - PHP_INI_SCAN_DIR<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>Value - \/usr\/local\/etc\/php\/conf.d\/home\/site\/wwwroot\/ini<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"997\" height=\"322\" data-src=\"\/wp-content\/uploads\/2024\/10\/image-5.png\" alt=\"\" class=\"wp-image-748 lazyload\" data-srcset=\"\/wp-content\/uploads\/2024\/10\/image-5.png 997w, \/wp-content\/uploads\/2024\/10\/image-5-300x97.png 300w, \/wp-content\/uploads\/2024\/10\/image-5-768x248.png 768w, \/wp-content\/uploads\/2024\/10\/image-5-980x317.png 980w, \/wp-content\/uploads\/2024\/10\/image-5-480x155.png 480w\" data-sizes=\"(max-width: 997px) 100vw, 997px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 997px; --smush-placeholder-aspect-ratio: 997\/322;\" \/><\/figure>\n\n\n\n<p>After creating the environment variable, we need to create a folder called ini in the following path.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-569de2b488760ae0bd0d6b0081a81b19\"><code>\/home\/site\/wwwroot\/<\/code><\/pre>\n\n\n\n<p>To create the file, log in to the Web App using SSH. If you are unfamiliar with how to log in to your Web App using SSH.<\/p>\n\n\n\n<p>Once logged in to the Web App using SSH create an ini folder in the wwwroot folder.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-569de2b488760ae0bd0d6b0081a81b19\"><code>\/home\/site\/wwwroot\/<\/code><\/pre>\n\n\n\n<p>Run the following commands to set the new limit. <\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-1d0ffebba9a0be870b98f030e08abd1d\"><code>echo \"upload_max_filesize=120M\" &gt;&gt; extensions.ini\necho \"post_max_size=120M\" &gt;&gt; extensions.ini<\/code><\/pre>\n\n\n\n<p>The above command will create a file called extentions.ini and add two configuration items. The new upload limit will be 120MB. <\/p>\n\n\n\n<p>the extentions.ini file should look like:<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-5a5b97367249fdaab18b7840008ce504\"><code>post_max_size=120M\nupload_max_filesize=120M<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test-new-upload-limit\">Test New Upload Limit <\/h2>\n\n\n\n<p>To test the new upload limit, restart the Azure Web App. You will see the new limit next to the Browse your computer text.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"937\" height=\"480\" data-src=\"\/wp-content\/uploads\/2024\/10\/image-6.png\" alt=\"\" class=\"wp-image-749 lazyload\" data-srcset=\"\/wp-content\/uploads\/2024\/10\/image-6.png 937w, \/wp-content\/uploads\/2024\/10\/image-6-300x154.png 300w, \/wp-content\/uploads\/2024\/10\/image-6-768x393.png 768w, \/wp-content\/uploads\/2024\/10\/image-6-480x246.png 480w\" data-sizes=\"(max-width: 937px) 100vw, 937px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 937px; --smush-placeholder-aspect-ratio: 937\/480;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-articles\">Related Articles<\/h2>\n\n\n\n<ul class=\"wp-block-yoast-seo-related-links yoast-seo-related-links\">\n<li><a href=\"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2024\/07\/26\/developing-apps-for-microsoft-teams\/\">Developing Apps for Microsoft Teams<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2024\/09\/13\/effortless-web-app-deployment-with-azure-cli\/\">Effortless Web App Deployment with Azure CLI<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cloudproinc.com.au\/index.php\/2024\/07\/08\/creating-custom-error-pages-in-azure-web-app\/\">Creating Custom Error Pages in Azure Web App<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2024\/05\/06\/simplifying-ios-app-deployment-with-microsoft-intune\/\">Simplifying iOS App Deployment with Microsoft Intune<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2024\/07\/29\/streamlining-entra-id-app-registrations-with-azure-bicep\/\">Streamlining Entra ID App Registrations with Azure Bicep<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this Azure App Services article, we will show how to increase PHPmyAdmin Upload size limit on Azure Web App.<\/p>\n","protected":false},"author":1,"featured_media":470,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Increase PHPMyAdmin Upload Size Limit on Azure Web App","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Learn how to increase PHPMyAdmin upload size limit on Azure Web App in this comprehensive Azure App Services tutorial.","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[16,13],"tags":[],"class_list":["post-746","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-microsoft-azure","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Increase PHPMyAdmin Upload Size Limit on Azure Web App - CPI Consulting<\/title>\n<meta name=\"description\" content=\"Learn how to increase PHPMyAdmin upload size limit on Azure Web App in this comprehensive Azure App Services tutorial.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Increase PHPMyAdmin Upload Size Limit on Azure Web App\" \/>\n<meta property=\"og:description\" content=\"Learn how to increase PHPMyAdmin upload size limit on Azure Web App in this comprehensive Azure App Services tutorial.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-06T23:43:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-06T23:44:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2024\/07\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1792\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CPI Staff\" \/>\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:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Increase PHPMyAdmin Upload Size Limit on Azure Web App\",\"datePublished\":\"2024-10-06T23:43:58+00:00\",\"dateModified\":\"2024-10-06T23:44:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/\"},\"wordCount\":396,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp\",\"articleSection\":[\"Azure\",\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/\",\"url\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/\",\"name\":\"Increase PHPMyAdmin Upload Size Limit on Azure Web App - CPI Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp\",\"datePublished\":\"2024-10-06T23:43:58+00:00\",\"dateModified\":\"2024-10-06T23:44:00+00:00\",\"description\":\"Learn how to increase PHPMyAdmin upload size limit on Azure Web App in this comprehensive Azure App Services tutorial.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp\",\"width\":1792,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2024\\\/10\\\/07\\\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Increase PHPMyAdmin Upload Size Limit on Azure Web App\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"width\":500,\"height\":500,\"caption\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\",\"name\":\"CPI Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"caption\":\"CPI Staff\"},\"sameAs\":[\"http:\\\/\\\/www.cloudproinc.com.au\"],\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Increase PHPMyAdmin Upload Size Limit on Azure Web App - CPI Consulting","description":"Learn how to increase PHPMyAdmin upload size limit on Azure Web App in this comprehensive Azure App Services tutorial.","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:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/","og_locale":"en_US","og_type":"article","og_title":"Increase PHPMyAdmin Upload Size Limit on Azure Web App","og_description":"Learn how to increase PHPMyAdmin upload size limit on Azure Web App in this comprehensive Azure App Services tutorial.","og_url":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/","og_site_name":"CPI Consulting","article_published_time":"2024-10-06T23:43:58+00:00","article_modified_time":"2024-10-06T23:44:00+00:00","og_image":[{"width":1792,"height":1024,"url":"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2024\/07\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp","type":"image\/webp"}],"author":"CPI Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#article","isPartOf":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Increase PHPMyAdmin Upload Size Limit on Azure Web App","datePublished":"2024-10-06T23:43:58+00:00","dateModified":"2024-10-06T23:44:00+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/"},"wordCount":396,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"image":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2024\/07\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp","articleSection":["Azure","Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/","url":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/","name":"Increase PHPMyAdmin Upload Size Limit on Azure Web App - CPI Consulting","isPartOf":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#primaryimage"},"image":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2024\/07\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp","datePublished":"2024-10-06T23:43:58+00:00","dateModified":"2024-10-06T23:44:00+00:00","description":"Learn how to increase PHPMyAdmin upload size limit on Azure Web App in this comprehensive Azure App Services tutorial.","breadcrumb":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#primaryimage","url":"\/wp-content\/uploads\/2024\/07\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp","contentUrl":"\/wp-content\/uploads\/2024\/07\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp","width":1792,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/cloudproinc.com.au\/index.php\/2024\/10\/07\/increase-phpmyadmin-upload-size-limit-on-azure-web-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudproinc.azurewebsites.net\/"},{"@type":"ListItem","position":2,"name":"Increase PHPMyAdmin Upload Size Limit on Azure Web App"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.azurewebsites.net\/#website","url":"https:\/\/cloudproinc.azurewebsites.net\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.azurewebsites.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.azurewebsites.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","contentUrl":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","width":500,"height":500,"caption":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd"},"image":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e","name":"CPI Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","caption":"CPI Staff"},"sameAs":["http:\/\/www.cloudproinc.com.au"],"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2024\/07\/How-to-Recover-Deleted-or-Lost-Exchange-Online-Emails-to-PST.webp","jetpack-related-posts":[{"id":53565,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/08\/04\/how-to-fix-the-critical-error-on-azure-wordpress-web-app\/","url_meta":{"origin":746,"position":0},"title":"How to Fix the &#8216;Critical Error&#8217; on Azure WordPress Web App","author":"CPI Staff","date":"August 4, 2025","format":false,"excerpt":"Experiencing a \"critical error\" on your Azure-hosted WordPress website can be alarming, but it's a common issue that can usually be resolved with straightforward troubleshooting steps. In this blog post, How to Fix the 'Critical Error' on Azure WordPress Web App, we'll explore why this error occurs and guide you\u2026","rel":"","context":"In &quot;App Service&quot;","block_context":{"text":"App Service","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/app-service\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/08\/create-a-featured-image-for-a-blog-post-titled-how.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/08\/create-a-featured-image-for-a-blog-post-titled-how.png 1x, \/wp-content\/uploads\/2025\/08\/create-a-featured-image-for-a-blog-post-titled-how.png 1.5x, \/wp-content\/uploads\/2025\/08\/create-a-featured-image-for-a-blog-post-titled-how.png 2x"},"classes":[]},{"id":764,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2024\/10\/07\/how-to-create-an-ads-txt-file-on-azure-web-app-linux\/","url_meta":{"origin":746,"position":1},"title":"How to Create an ads.txt File on Azure Web App (Linux)","author":"CPI Staff","date":"October 7, 2024","format":false,"excerpt":"This Microsoft Azure Web App post will show you how to create an ads.txt file on Azure Web App (Linux). Table of contentsHow to Create an ads.txt File on Azure Web App (Linux)Related Articles Ads.txt is a text file containing information about an advertising network (Adsense, for example) and allows\u2026","rel":"","context":"In &quot;Azure&quot;","block_context":{"text":"Azure","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/microsoft-azure\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2024\/07\/Streamlining-Entra-ID-App-Registrations-with-Azure-Bicep.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2024\/07\/Streamlining-Entra-ID-App-Registrations-with-Azure-Bicep.webp 1x, \/wp-content\/uploads\/2024\/07\/Streamlining-Entra-ID-App-Registrations-with-Azure-Bicep.webp 1.5x, \/wp-content\/uploads\/2024\/07\/Streamlining-Entra-ID-App-Registrations-with-Azure-Bicep.webp 2x"},"classes":[]},{"id":53520,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/07\/21\/running-pytorch-in-microsoft-azure-machine-learning\/","url_meta":{"origin":746,"position":2},"title":"Running PyTorch in Microsoft Azure Machine Learning","author":"CPI Staff","date":"July 21, 2025","format":false,"excerpt":"This post will walk you through what PyTorch is, how it's used in ML and LLM development, and how you can start running it in Azure ML using Jupyter notebooks. If you're working on deep learning, computer vision, or building large language models (LLMs), you've probably come across PyTorch. But\u2026","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 1x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 1.5x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 2x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 3x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 4x"},"classes":[]},{"id":53341,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/05\/01\/building-a-blazor-net-app-that-recognizes-images-with-openai\/","url_meta":{"origin":746,"position":3},"title":"Building a Blazor .NET App that Recognizes Images with OpenAI","author":"CPI Staff","date":"May 1, 2025","format":false,"excerpt":"In this blog post, we\u2019ll show you how to Build a Blazor .NET App that Recognizes Images with OpenAI. You\u2019ll see how we securely upload image files, send them to OpenAI\u2019s API, and return a natural-language response\u2014seamlessly integrated into a modern web interface. This example highlights how CPI Consulting applies\u2026","rel":"","context":"In &quot;.NET&quot;","block_context":{"text":".NET","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/net\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/05\/Building-a-Blazor-NET-App-that-Recognizes-Images-with-OpenAI-e1746073555343.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/05\/Building-a-Blazor-NET-App-that-Recognizes-Images-with-OpenAI-e1746073555343.png 1x, \/wp-content\/uploads\/2025\/05\/Building-a-Blazor-NET-App-that-Recognizes-Images-with-OpenAI-e1746073555343.png 1.5x, \/wp-content\/uploads\/2025\/05\/Building-a-Blazor-NET-App-that-Recognizes-Images-with-OpenAI-e1746073555343.png 2x"},"classes":[]},{"id":53289,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/04\/25\/fix-jetpack-contact-form-email-error-in-azure-wordpress-web-app\/","url_meta":{"origin":746,"position":4},"title":"Fix Jetpack Contact Form Email Error in Azure WordPress Web App","author":"CPI Staff","date":"April 25, 2025","format":false,"excerpt":"In this blog post, we will show how to fix the Jetpack Contact Form email error in the Azure WordPress Web App, specifically resolving the error message \"Invalid format for email address\" when using the Azure WordPress Web App. By following these steps, you can effectively Fix Jetpack Contact Form\u2026","rel":"","context":"In &quot;Azure&quot;","block_context":{"text":"Azure","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/microsoft-azure\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/04\/Fix-Jetpack-Contact-Form-Email-Error-in-Azure-WordPress-Web-App.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/04\/Fix-Jetpack-Contact-Form-Email-Error-in-Azure-WordPress-Web-App.png 1x, \/wp-content\/uploads\/2025\/04\/Fix-Jetpack-Contact-Form-Email-Error-in-Azure-WordPress-Web-App.png 1.5x, \/wp-content\/uploads\/2025\/04\/Fix-Jetpack-Contact-Form-Email-Error-in-Azure-WordPress-Web-App.png 2x"},"classes":[]},{"id":362,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2024\/07\/08\/creating-custom-error-pages-in-azure-web-app\/","url_meta":{"origin":746,"position":5},"title":"Creating Custom Error Pages in Azure Web App","author":"CPI Staff","date":"July 8, 2024","format":false,"excerpt":"This Microsoft Azure Web App article will show the process and requirements for creating custom error pages in Azure Web App. As Microsoft Azure partners and consultants, we help customers design and deploy .NET applications to Microsoft Azure. In enterprise applications, Error pages are critical components of web development. The\u2026","rel":"","context":"In &quot;Azure&quot;","block_context":{"text":"Azure","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/microsoft-azure\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2024\/07\/404errorpagepost.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2024\/07\/404errorpagepost.webp 1x, \/wp-content\/uploads\/2024\/07\/404errorpagepost.webp 1.5x, \/wp-content\/uploads\/2024\/07\/404errorpagepost.webp 2x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/746","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/comments?post=746"}],"version-history":[{"count":1,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/746\/revisions"}],"predecessor-version":[{"id":750,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/746\/revisions\/750"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media\/470"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media?parent=746"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/categories?post=746"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/tags?post=746"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}