{"id":910,"date":"2019-05-21T10:13:19","date_gmt":"2019-05-21T10:13:19","guid":{"rendered":"http:\/\/smohub.com\/blog\/?p=910"},"modified":"2019-05-21T10:13:19","modified_gmt":"2019-05-21T10:13:19","slug":"5-most-common-problems-of-wordpress-and-solution","status":"publish","type":"post","link":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/","title":{"rendered":"5 Most Common Problems of WordPress and Solution"},"content":{"rendered":"<p>If you just entered your website and got an error message, or even worse, a white screen,\u00a0<strong>don\u2019t fret!<\/strong>\u00a0For some reason,\u00a0<strong>there\u2019s an error on your WordPress and you\u2019ll have to correct it<\/strong>. On today\u2019s post I will introduce the 5 most common problems, some of their possible causes, and how to solve them.<\/p>\n<h2>1. The White Screen of Death (WSOD)<\/h2>\n<h3>Plugins<\/h3>\n<p>If you continue to have access to the WordPress dashboard, then solving this problem is quite simple. Just go to the section of plugins and\u00a0<strong>deactivate the last plugin you have installed.<\/strong>\u00a0If this doesn\u2019t solve the problem, it is possible that the error is being generated by another plugin, so we have to figure out which one it is. To do so,\u00a0<strong>deactivate all the plugins at once<\/strong>\u00a0(you can use the selection box on top of the plugin table to mark them all and then select the action\u00a0<em>Deactivate<\/em>). Following,\u00a0<strong>you can activate the plugins one by one until you find which on is failing<\/strong>.<\/p>\n<p>If you don\u2019t have access to the desktop, we\u2019ll have to\u00a0<strong>deactivate the plugins via FTP<\/strong>. Using your preferred FTP client (or, as before, the tool you have to manipulate the files of your WordPress server), go to the directory\u00a0<code>wp-content<\/code>\u00a0and change the name of the folder\u00a0<code>plugins<\/code>\u00a0to\u00a0<code>plugins-debug<\/code>. After changing the name, go to your site to verify that everything is working fine. To activate the plugins one by one, go back to the directory\u00a0<code>plugins<\/code>\u00a0(remember that we just changed the name to\u00a0<code>plugins-debug<\/code>\u00a0and therefore the directory\u00a0<code>plugins<\/code>\u00a0doesn\u2019t exist) and move the plugins from\u00a0<code>plugins-debug<\/code>\u00a0to\u00a0<code>plugins<\/code>, so that you can find which one is not working. Once you finish, you can get rid of the directory\u00a0<code>plugins-debug<\/code>,<strong>\u00a0<\/strong>which should now be empty.<\/p>\n<p>Once you have identified what plugin that is causing the problems, you have several options:<\/p>\n<ol>\n<li><strong>Install a previous version that you know doesn\u2019t fail<\/strong>\u00a0(and avoid updating it).<\/li>\n<li><strong>Contact the developer,\u00a0<\/strong>explain your problem and ask\u00a0them to correct their\u00a0plugin.<strong>\u00a0<\/strong><\/li>\n<li><strong>Replace the plugin\u00a0<\/strong>with another one with the same feature\u2026 but without blank screens, of course<strong>\u00a0<\/strong><\/li>\n<\/ol>\n<h3>Themes<\/h3>\n<p>If we haven\u2019t managed to get rid of the white screen by deactivating the plugins, it\u2019s very possible that the theme is what is failing. Just as in the case of the plugins,\u00a0<strong>if your website stopped working overnight because of a theme, it\u2019s either because\u00a0your theme has been updated and the update has an error, or because you\u2019ve edited something manually and you\u2019ve made a mistake.<\/strong><\/p>\n<p>To analyze whether the white screen is generated by a theme, we\u2019ll follow the same steps we did for the plugins. Access the directory\u00a0<code>wp-content\/themes<\/code><strong>\u00a0<\/strong>and change the name of the directory of your theme (for example, from\u00a0<code>my-theme<\/code>\u00a0to\u00a0<code>my-theme-debug<\/code>) so that WordPress thinks you have uninstallated the theme, and so is obliged to use the default theme (like\u00a0<em>Twenty Seventeen<\/em>).<\/p>\n<p>Once you know the problem is caused by the theme, you can take the following actions to correct it:<\/p>\n<ol>\n<li><strong>If you have edited the theme manually\u00a0<\/strong>(usually by adding or modifying it from the file<b>\u00a0<\/b><code>functions.php<\/code>),<strong>\u00a0I recommend you get rid of the changes.<\/strong>\u00a0If you\u2019re not sure of what you\u2019ve done or how to go back to the previous state, then reinstall the theme from scratch. And remember that before touching anything of your WordPress (especially if we\u2019re talking about code) it\u2019s very important to make\u00a0a backup; if something goes wrong, the backup will allow us to go back to the previous state in just a few minutes.<\/li>\n<li><strong>Contact the author of the theme and ask for help.\u00a0<\/strong><\/li>\n<li><strong>Use another theme.\u00a0<\/strong><\/li>\n<\/ol>\n<h3>If All of this Fails\u2026 Activate PHP\u2019s DEBUG Mode!<\/h3>\n<p>The best thing that can happen is that none of the previous actions corrects your solution. But it can also happen that they allow you to identify what\u2019s wrong, but you don\u2019t know how to correct it. In these cases, what should we do?\u00a0Well,\u00a0<strong>the only thing\u00a0we can do is trying to get more information about the problem.<\/strong>\u00a0To do so, open the file\u00a0<code>wp-config.php<\/code>\u00a0and search the following line:<\/p>\n<pre class=\"php\">define( 'WP_DEBUG', false );\r\n<\/pre>\n<p>Once you\u2019ve located it, add\u00a0<code>\/\/<\/code>\u00a0at the beginning:<\/p>\n<pre class=\"php\">\/\/ define( 'WP_DEBUG', false );\r\n<\/pre>\n<p>so that it becomes a comment. Next, add the following statements:<\/p>\n<pre class=\"php\">define( 'WP_DEBUG', true );\r\ndefine( 'WP_DEBUG_LOG', true );\r\n<\/pre>\n<p>which will activate the information of PHP\u2019s DEBUG. Thanks to this, when you access your website you won\u2019t see a white screen anymore, but you\u2019ll be able to see the errors in the PHP code\u00a0that are keeping your website from properly working, as well as the files and lines where the errors are.<\/p>\n<p>If you don\u2019t want this information to appear on your website, you can avoid it showing\u00a0on the browser and make it appear in a log file by adding these two additional lines:<\/p>\n<pre class=\"php\">define(  'WP_DEBUG_DISPLAY', false );\r\n@ini_set( 'display_errors', 0 );\r\n<\/pre>\n<p>With them, all the log information will appear in a file called\u00a0<code>error.log<\/code>, which you will find in the directory\u00a0<code>wp-content<\/code>.<\/p>\n<h2>2. INTERNAL SERVER ERROR<\/h2>\n<p>Sometimes, your server responds with an\u00a0<strong>error 500, Internal Server Error<\/strong>. In those cases, the best thing you can do is get up, go get a coffee and come back with a lot of patience because\u00a0<strong>it could be anything.<\/strong><\/p>\n<h3>Again, Blame One of the Plugins, a Theme, or Exhausted Memory<\/h3>\n<p>Yes, sometimes errors introduced by plugins or themes don\u2019t end up in\u00a0a white screen, but show\u00a0the feared error 500 instead. In these cases, the only thing you can do is repeat the steps we have described in the previous actions\u2026<\/p>\n<h3>Correct the File\u00a0<code>.htaccess<\/code><\/h3>\n<p>It\u2019s not a plugin\u2018s fault? Nor a theme\u2019s? Well, don\u2019t despair\u2014maybe what failed was your\u00a0<code>.htaccess<\/code>\u00a0file. In these cases\u00a0<strong>it\u2019s better to start from scratch.<\/strong>\u00a0Access the system of your WordPress files via FTP and change its name to, for instance,\u00a0<code>.htaccess_backup<\/code>. If you can\u2019t find it, it\u2019s probably hidden; make sure you select the option \u201c<em>Show hidden files<\/em>\u201d on your FTP program.<\/p>\n<p>Once you\u2019ve \u201cdeleted\u201d the file (in reality, we\u2019ve just changed its name\u00a0<span class=\"emoji\">), go the dashboard of\u00a0<em>WordPress \u00bb Settings \u00bb Permalinks\u00a0<\/em>and press\u00a0<em>Save changes<\/em>. The change in settings automatically regenerates the file\u00a0<\/span><code>.htaccess<\/code>, and so this way you can validate that the new version works correctly.<\/p>\n<h2>3. ERROR ESTABLISHING DATABASE CONNECTION<\/h2>\n<p>Another typical error we may find. This is usually an error of the server, but sometimes it\u2019s something as stupid as not having changed the user and\/or the password of the database, and so WordPress cannot access it.<\/p>\n<h3>Review the file wp-config.php<\/h3>\n<p>The first thing you have to do is check if the error appears only on the public part of your website or also on the dashboard\u00a0(<code>wp-admin<\/code>).<\/p>\n<p><strong>A)<\/strong>\u00a0If it only comes up on the public side, and in addition you see a text like \u201c<em>the database needs to be repaired<\/em>\u201c, then you just need to add the following line to your file\u00a0<code>wp-config.php<\/code>:<\/p>\n<pre class=\"php\">define(  'WP_ALLOW_REPAIR', true );\r\n<\/pre>\n<p>Next, visit this page of your website\u00a0<code>http:\/\/yoursite.com\/<strong>wp-admin\/maint\/repair.php<\/strong><\/code>\u00a0and follow the steps to repair the database. Once you\u2019ve finished, don\u2019t forget to eliminate the line we just added to\u00a0<code>wp-config.php<\/code>.<\/p>\n<p><strong>B)<\/strong>\u00a0If you\u2019ve changed the user name or the password of your database, make sure the information in\u00a0<code>wp-config.php<\/code>\u00a0on the database is correct:<\/p>\n<pre class=\"php\">define( 'DB_NAME', 'database-name' );\r\ndefine( 'DB_USER', 'database-username' );\r\ndefine( 'DB_PASSWORD', 'database-password' );\r\ndefine( 'DB_HOST', 'localhost' );\r\n<\/pre>\n<p>In the previous example, I took\u00a0it for granted that the server with\u00a0the database is the one executing WordPress (hence, the use of\u00a0<em>localhost<\/em>), but this is not always true.<\/p>\n<h3>Contact Your Hosting Provider<\/h3>\n<p>If nothing solves the problem, or the error appeared after a peak in traffic, then it\u2019s very possible that it is your hosting provider that\u2019s stopping\u00a0the access to the database. Contact them and ask them for help\u2014it\u2019ll be quicker and easier!<\/p>\n<h2>4. Error with Automatic Updates<\/h2>\n<p>WordPress 3.7 introduced the automatic updates with the aim of promoting better safety and facilitating the implementation of new versions. By default, only minor updates (those of maintenance or safety) are automatically done. Sometimes, these updates fail. Keep in mind that they\u2019re carried out without any human interaction. So how can we know if there\u2019s been a problem in them? Well, because of the following reasons:<\/p>\n<ol>\n<li>A PHP error appears<\/li>\n<li>Your website has gone blank (again, the dreadful WSOD, about which we\u2019ve already talked)<\/li>\n<li>There is a notice informing you of the error<\/li>\n<\/ol>\n<p>There are several reasons why the automatic update may fail, but the most common ones are a weak\u00a0internet connection, or that the permissions of the files and directories are not the suitable ones, and so they cannot be overwritten with the new version..<\/p>\n<h2>5. WordPress Posts with Error 404<\/h2>\n<p>One of the most frustrating errors comes up\u00a0when we try to access the posts of our blog or a page on our website and we obtain the error 404. This type of errors appear when the server doesn\u2019t find the source we\u2019re asking for, either because it doesn\u2019t exist or because it doesn\u2019t know where to look for it. In the case of WordPress, the most probable cause\u00a0is that the file\u00a0<code>.htaccess<\/code>\u00a0is corrupt. Let\u2019s see what we can do to repair this!<\/p>\n<h3>Correcting Our Permalinks<\/h3>\n<p>We have already seen how to make WordPress automatically regenerate the file\u00a0<code>.htaccess<\/code>. If this doesn\u2019t solve our problem (to be honest, I\u2019d be surprised if it didn\u2019t), we can try to create it manually and add the following content:<\/p>\n<pre># BEGIN WordPress\r\n&lt;IfModule mod_rewrite.c&gt;\r\nRewriteEngine On\r\nRewriteBase \/\r\nRewriteRule ^index.php$ - [L]\r\nRewriteCond %{REQUEST_FILENAME} !-f\r\nRewriteCond %{REQUEST_FILENAME} !-d\r\nRewriteRule . \/index.php [L]\r\n&lt;\/IfModule&gt;\r\n# END WordPress\r\n<\/pre>\n<h2>Final Word<\/h2>\n<p>In my experience, the solutions I wrote about in this post will help you solve the majority of the problems that you will encounter. However, unfortunately there are other errors that are less common or more complex to solve that I have left out of this post. For those, I recommend you take a look at the<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you just entered your website and got an error message, or even worse, a white screen,\u00a0don\u2019t fret!\u00a0For some reason,\u00a0there\u2019s an error on your WordPress and you\u2019ll have to correct it. On today\u2019s post I will introduce the 5 most common problems, some of their possible causes, and how to solve them. 1. The White [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":911,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6,5],"tags":[],"class_list":["post-910","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-general","category-wordpress-tips"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>5 Most Common Problems of WordPress and Solution<\/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:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"5 Most Common Problems of WordPress and Solution\" \/>\n<meta property=\"og:description\" content=\"If you just entered your website and got an error message, or even worse, a white screen,\u00a0don\u2019t fret!\u00a0For some reason,\u00a0there\u2019s an error on your WordPress and you\u2019ll have to correct it. On today\u2019s post I will introduce the 5 most common problems, some of their possible causes, and how to solve them. 1. The White [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/\" \/>\n<meta property=\"og:site_name\" content=\"Wordpress Development\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-21T10:13:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"536\" \/>\n\t<meta property=\"og:image:height\" content=\"374\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"smotiv\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"smotiv\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/\"},\"author\":{\"name\":\"smotiv\",\"@id\":\"https:\/\/smo.vn\/blog\/#\/schema\/person\/400886672daf89b093ef3bafdb0d052e\"},\"headline\":\"5 Most Common Problems of WordPress and Solution\",\"datePublished\":\"2019-05-21T10:13:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/\"},\"wordCount\":1633,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/smo.vn\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg\",\"articleSection\":[\"General\",\"WordPress Tips\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/\",\"url\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/\",\"name\":\"5 Most Common Problems of WordPress and Solution\",\"isPartOf\":{\"@id\":\"https:\/\/smo.vn\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg\",\"datePublished\":\"2019-05-21T10:13:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage\",\"url\":\"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg\",\"contentUrl\":\"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg\",\"width\":536,\"height\":374},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/smo.vn\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"5 Most Common Problems of WordPress and Solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/smo.vn\/blog\/#website\",\"url\":\"https:\/\/smo.vn\/blog\/\",\"name\":\"Wordpress Development\",\"description\":\"Vietnam Out Sourcing Services !\",\"publisher\":{\"@id\":\"https:\/\/smo.vn\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/smo.vn\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/smo.vn\/blog\/#organization\",\"name\":\"Wordpress Development\",\"url\":\"https:\/\/smo.vn\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smo.vn\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2020\/12\/cropped-smo-logo-e1609398962174.png\",\"contentUrl\":\"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2020\/12\/cropped-smo-logo-e1609398962174.png\",\"width\":240,\"height\":240,\"caption\":\"Wordpress Development\"},\"image\":{\"@id\":\"https:\/\/smo.vn\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/smo.vn\/blog\/#\/schema\/person\/400886672daf89b093ef3bafdb0d052e\",\"name\":\"smotiv\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smo.vn\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/da6682d4b35f6fcd898942787ca2a1e1ca3522d990aee85547e1ae3664f7e8ae?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/da6682d4b35f6fcd898942787ca2a1e1ca3522d990aee85547e1ae3664f7e8ae?s=96&d=mm&r=g\",\"caption\":\"smotiv\"},\"url\":\"https:\/\/smo.vn\/blog\/author\/smohub\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"5 Most Common Problems of WordPress and Solution","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:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/","og_locale":"en_US","og_type":"article","og_title":"5 Most Common Problems of WordPress and Solution","og_description":"If you just entered your website and got an error message, or even worse, a white screen,\u00a0don\u2019t fret!\u00a0For some reason,\u00a0there\u2019s an error on your WordPress and you\u2019ll have to correct it. On today\u2019s post I will introduce the 5 most common problems, some of their possible causes, and how to solve them. 1. The White [&hellip;]","og_url":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/","og_site_name":"Wordpress Development","article_published_time":"2019-05-21T10:13:19+00:00","og_image":[{"width":536,"height":374,"url":"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg","type":"image\/jpeg"}],"author":"smotiv","twitter_card":"summary_large_image","twitter_misc":{"Written by":"smotiv","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#article","isPartOf":{"@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/"},"author":{"name":"smotiv","@id":"https:\/\/smo.vn\/blog\/#\/schema\/person\/400886672daf89b093ef3bafdb0d052e"},"headline":"5 Most Common Problems of WordPress and Solution","datePublished":"2019-05-21T10:13:19+00:00","mainEntityOfPage":{"@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/"},"wordCount":1633,"commentCount":0,"publisher":{"@id":"https:\/\/smo.vn\/blog\/#organization"},"image":{"@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage"},"thumbnailUrl":"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg","articleSection":["General","WordPress Tips"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/","url":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/","name":"5 Most Common Problems of WordPress and Solution","isPartOf":{"@id":"https:\/\/smo.vn\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage"},"image":{"@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage"},"thumbnailUrl":"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg","datePublished":"2019-05-21T10:13:19+00:00","breadcrumb":{"@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#primaryimage","url":"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg","contentUrl":"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2019\/05\/552510-2xlLU91502802561.jpg","width":536,"height":374},{"@type":"BreadcrumbList","@id":"https:\/\/smo.vn\/blog\/5-most-common-problems-of-wordpress-and-solution\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/smo.vn\/blog\/"},{"@type":"ListItem","position":2,"name":"5 Most Common Problems of WordPress and Solution"}]},{"@type":"WebSite","@id":"https:\/\/smo.vn\/blog\/#website","url":"https:\/\/smo.vn\/blog\/","name":"Wordpress Development","description":"Vietnam Out Sourcing Services !","publisher":{"@id":"https:\/\/smo.vn\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/smo.vn\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/smo.vn\/blog\/#organization","name":"Wordpress Development","url":"https:\/\/smo.vn\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smo.vn\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2020\/12\/cropped-smo-logo-e1609398962174.png","contentUrl":"https:\/\/smo.vn\/blog\/wp-content\/uploads\/2020\/12\/cropped-smo-logo-e1609398962174.png","width":240,"height":240,"caption":"Wordpress Development"},"image":{"@id":"https:\/\/smo.vn\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/smo.vn\/blog\/#\/schema\/person\/400886672daf89b093ef3bafdb0d052e","name":"smotiv","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smo.vn\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/da6682d4b35f6fcd898942787ca2a1e1ca3522d990aee85547e1ae3664f7e8ae?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/da6682d4b35f6fcd898942787ca2a1e1ca3522d990aee85547e1ae3664f7e8ae?s=96&d=mm&r=g","caption":"smotiv"},"url":"https:\/\/smo.vn\/blog\/author\/smohub\/"}]}},"_links":{"self":[{"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/posts\/910","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/comments?post=910"}],"version-history":[{"count":1,"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/posts\/910\/revisions"}],"predecessor-version":[{"id":912,"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/posts\/910\/revisions\/912"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/media\/911"}],"wp:attachment":[{"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/media?parent=910"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/categories?post=910"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/smo.vn\/blog\/wp-json\/wp\/v2\/tags?post=910"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}