Are you looking to move the website from https to https. Once you have install the SSL in hosting server, do the below steps to complete and configure the SECURED WORDPRESS SITE. Step : 1 Add the below line in config.php file define(‘FORCE_SSL_ADMIN’, true); Step : 2 Add the below code or ensure the in .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule>
Read MoreMySQL : Change Table Engine from MyISAM to Innodb
Simple SQL Command to change the table engine from MyISAM to InnoDB and InnoDB to MyISAM. InnoDB to MyISAM alter table `test123` engine = ‘MyISAM’ MyISAM to InnoDB alter table `test123` engine = ‘InnoDB‘
Read MoreMySQL : Server Commands
Show the version of the database select version(); List the database name show databases; Switch to other Database use [db name]
Read MoreWordPress: Submit site to Google Console.
In this article we guide how to submit the website to Google Console, Sitemap submission and crawl website. Google Console :- We have to submit the website to Google console and need to get meta tag from Google to ensure our website are crawling by Google search engine. Open Google Web Master Add Property Enter Website URL Google provide meta tag information Open WordPress Site Install Plugin thru Add new Plugin “Install Header and Footer” Paste the copied text from Google in header input box. Save the page and back…
Read MoreWordPress : XML Sitemap Generation | Yoast Plugin
In the article we guide you, how to create XML Sitemap generate thru Yoast Plugin. Add New Plugin Yoast Install & Activate Go to SEO in the left side bar. Choose Features Enable XML Sitemap Button. Click the question bubble button to view the xml site map path.
Read MoreWordPress Memory Exhausted Error ? – Increase PHP Memory
One of the most common wordpress error is memory size exhausted. This could be occur for different scenario. Commonly the scenario occur while posting or updating the content. In this article, we will guide you how to fix the wordpress memory exhausted error and how to increase php memory to resolve the issues. Error : Fatal error: Allowed memory size of 23354432 bytes exhausted (tried to allocate 8388616 bytes) in /home4/xxx/public_html/wp-includes/plugin.php How to resolve the issue ? Open wp-config.php Modify below code define(‘WP_MEMORY_LIMIT’, ’64M’); If the error still persists, enable…
Read MoreHow to Fix WordPress Posts Returning 404 Error when choose permalink in settings ?
While doing wordpress migration from server to server the 404 error is common. In this article we will show how to fix the wordpress post 404 error. Temporarily disable the cache, if you used anything. Until the problems resolved. Change the setting in the server sudo chown www-data /var/www/html/recipe/.htaccess Change the setting in the CONF (If it’s apache) Open the conf file /etc/apache2/apache2.conf Update the settings in AllowOverride parameters <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all…
Read MoreHomeBrew for Mac
Homebrew is a free and open-source software package management system that simplifies the installation of software on Apple’s macOS operating system. Open Terminal Install HomeBrew, copy and paste the below code. /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” View HomeBrew Pack Lists brew search –casks Install Software brew cask install <<SOFTWARE NAME>>
Read MoreCreate a basic site in word press
Step by Step to create basic website in word press, without computer knowledge.
Read MoreHow to count rows in a table ?
How to count rows in a table ? SELECT TABLE_NAME, TABLE_ROWS FROM `information_schema`.`tables` WHERE `table_schema` = ‘YOUR_DB_NAME’;
Read More