Tag Archives: wordpress

Post-processing of the image failed likely because the server is busy or does not have enough resources. [SOLVED]

If you encounter the following error: Post-processing of the image failed likely because the server is busy or does not have enough resources. Uploading a smaller image may help. Suggested maximum size is 2500 pixels. and you have tried all the normal solutions (adjusting php.ini, other upload settings) then I suggest checking your plugins for potential issues. Here is the error screenshot: Specifically, I encountered this error when the following plugin was enabled: After you deactivate potentially troublesome plugins, you

youtube Api Could not be loaded ! Please Check and Renew SSL Certificate ! [SOLVED]

Recently I encountered the following error message on a client’s site: This error is fairly glaring as it covers the video that was meant to be playing. After some research, I was able to narrow the issue to a slider plugin and specifically the following javascript libary: jquery.themepunch.revolution.min.js and another more recent site had the same code in the file: rs6.min.js on both sites, the file was located in: \wp-content\plugins\revslider\public\assets\js\ After reviewing the code, it is evident that the javascript

Adjust WordPress Divi theme footer text [SOLVED]

Question: I am trying to adjust the footer text on a Divi based theme but cannot find it anywhere in the PHP code! How do I adjust the footer text in a Divi (child) WordPress theme? Answer: Good question! You can adjust the footer text via the theme customizer: #1 Login to the WordPress admin area and go to Divi -> Theme Customizer #2 Choose: Footer #3 Choose: Bottom Bar Voila, your theme’s footer text has been edited. I hope this helps! 🙂

Plugin could not be activated because it triggered a fatal error. — WordPress

When installing or upgrading a plugin in WordPress, you may get a message like this: Plugin could not be activated because it triggered a fatal error. The specifics may look something like this Fatal error: Access level to WPsite_Firebar_List_Table::get_table_classes() must be public (as in class WP_List_Table) in /xyz/wp-content/plugins/codecanyon-9861906-firebar-notification-bars-for-wordpress/admin/model/list-table.php on line 460 The error is likely due to an outdated version of WordPress. Upgrade to the latest version and your issue will hopefully be resolved 🙂

Downloading and extracting WordPress via command line

# wget http://wordpress.org/latest.tar.gz –2015-05-04 10:44:46– http://wordpress.org/latest.tar.gz Resolving wordpress.org… 66.155.40.249, 66.155.40.250 Connecting to wordpress.org|66.155.40.249|:80… connected. HTTP request sent, awaiting response… 301 Moved Permanently Location: https://wordpress.org/latest.tar.gz [following] –2015-05-04 10:44:46– https://wordpress.org/latest.tar.gz Connecting to wordpress.org|66.155.40.249|:443… connected. HTTP request sent, awaiting response… 200 OK Length: 6321767 (6.0M) [application/octet-stream] Saving to: âlatest.tar.gzâ 100%[==========================================================>] 6,321,767 6.63MB/s in 0.9s 2015-05-04 10:44:47 (6.63 MB/s) – âlatest.tar.gzâ saved [6321767/6321767] # tar xfz latest.tar.gz 🙂

Regenerate thumbnails error on WordPress [SOLVED]

Recently I switched to a new WordPress theme and subsequently encountered some image thumbnail issues. Here is the specific error I received when regenerating thumbnails: function (){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);”function”===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&”string”!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this} This was particularly frustrating, because if a custom size is not available then WordPress will use the FULL size image even for thumbnails. This of course results in slow page times and wasted bandwidth 🙁 The solution Thankfully, after a little checking it appeared to be a simple permissions