Posts

Showing posts with the label wordpress

WordPress appends the “-2” to a slug

WordPress  appends  the  “- 2 ” to a  slug you still have  the  old content by  the  same name, probably in  the  trash, draft, etc. If so, try emptying it or check media section there must be some image with the same name like I was having problem for cloudhostweb.com/vps there was image cloudhostweb.com/vps.jpeg I had deleted the image and it worked perfectly

Update Failed: Could not create directory.

You can update file permission 777 for the “plugin” and “wp-content” directory. chmod -R 777  wp-content

revolution slider

To change button text link go to actions

Failed to write file to disk

make quota unlimited

wordpress redirection even after changing URL options

define('AUTH_KEY',         'put your unique phrase here'); define('SECURE_AUTH_KEY',  'put your unique phrase here'); define('LOGGED_IN_KEY',    'put your unique phrase here'); define('NONCE_KEY',        'put your unique phrase here'); define('AUTH_SALT',        'put your unique phrase here'); define('SECURE_AUTH_SALT', 'put your unique phrase here'); define('LOGGED_IN_SALT',   'put your unique phrase here'); define('NONCE_SALT',       'put your unique phrase here'); define('WP_HOME','http://tecpact.com/'); define('WP_SITEURL','http://tecpact.com/'); check wp-config.php hard coding

JSON error wordpress

try_files $uri $uri/ /index.php?q=$uri&$args; add in nginx conf location part Was troubled with this error. It was also a nuisance having the index.php in the middle of the url. I tried all the published fixes without success, including the Cloudflare plugin. In the end, the fix was in the apache2.conf – changed AllowOveride to All for / and /var/www and restarted Apache. Then set permalinks to /%postname%/ and it all worked. Error message: The  response is not a valid JSON response .” is overwhelmingly seen in the new Block editor called Gutenberg. The easiest way to resolve the  updating  error is by disabling Gutenberg and switching back to the Classic editor. As they say, old is Gold. You can install the Classic Editor plugin for this. if getting error on widgets saving then  Classic Widgets add this plugin

Enable mega menu using ubermenu plugin

Image

How To Make All 404 Pages Redirect To Homepage

In WordPress First, let’s take a closer look and see what a 404 error really is about. A 404 error is one of the most common errors that you’ll encounter when browsing the Internet. In fact, this error is so common that websites use custom designed 404 pages to show whenever a visitor encounter this error. 404 is a common HTTP status code that shows to you when a webpage or a URL you’ve tried to visit can’t be found on the website or its server. For example, if a website links to one of your blog posts but misspells the URL, then all the visitors who click on that link will be presented with your website’s 404-page instead of the actual blog post. According to  Google , 404 errors don’t have any negative impact on your search rankings. However, it’s still worth fixing if you don’t want to lose your website traffic. What Causes 404 Errors? There can be many causes behind 404 errors. As we’ve mentioned earlier, it could be caused by a misspelled URL or caused by vis...

Unable to locate wp-content error wordpress

just check permissions chown -R username:username public_html

wordpress address (url) greyed out

define( ‘WP_HOME’, ‘https://somedomain.com’ ); define( ‘WP_SITEURL’, ‘https://somedomain.com’ ); just update URL from wpconfig.php

Optimize wordpress website for speed

Website load time should be in between ​ 0 to 1 sec (very good)​ in between ​ 1 to 2 sec(good)​ if that’s ​ above 3 (Poor). First, check your website with gtmetrix.com to get details like Fully page load time, total page size, and request (request is the number of connection a web page required to load that means it connects to the server ) Now analyze the performance score and Yslow score and record them. Now optimize the page as you will have several recommendations in both Pagespeed and Yslow tab try to analyze and do the needful changes. Again analyze the web page after doing the required changes. Steps that could be done to reduce the page load time even further. Serving optimized images(​ Image optimiztion​ ). Serve scaled images. Minify js and CSS(​ fast velocity plugin wp​ ). Make fewer HTTP requests. Implementing caching(​ wp-super-cache​ ). Use CDN(content delivery Network)(​ cloudfare wp​ ). Update plugins,Themes ,WordPress(if using). 8.Optimize Databases(​ wp-o...

Your PHP installation appears to be missing the MySQL extension which is required by WordPress.

PHP module  gd  is required .. Enabling module in PHP configuration .. .. done Installing package  rh-php72-php-gd  .. Installing package(s) with command  /bin/yum -y install rh-php72-php-gd  ..