andrewwat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP Admin URL on a SubdomainIf you are using cPanel, then follow below the steps:
1) Create a subdomain from cPanel, it will create folder inside public_html.
2) Then install WordPress from cPanel, While installing select subdomain’s folder as root folder to install.
3) It will install WordPress in your subdomain.
4) Your wordpress administrator url will be like https://sub.domain.com/wp-login.php
Forum: Fixing WordPress
In reply to: Database Repair WP_OPTIONS errorI had faced this problem earlier, So I had below article to solve the issue. That article did solved the problem.
Please have a check.
Forum: Fixing WordPress
In reply to: Get rid of the footerThere are two solutions for this.
1) Go to additional CSS in Customise from Appeareance
Add below lines at the bottom of CSS codes
`.site-info{
display:none;
}`OR
2) You will footer.php in theme’s root folder.
Edit the footer.php and
remove the footer lines as you want.
and then Save.Forum: Fixing WordPress
In reply to: Pages not displaying full widthHello,
You can try by adding following lines in your CSS file.
.container { width: 100%; }
Forum: Fixing WordPress
In reply to: php7.2 crashes siteChanging PHP version certainly cause compatibility issues,
To find out exact issue, make the following changes in WP-Config.php file to get exact error.1) if you find below WP_DEBUG set to false then set it as true
define( ‘WP_DEBUG’, false ); ===> define( ‘WP_DEBUG’, true );
It will trigger the “debug” mode.
2) Also, change WP_DEBUG_DISPLAY from false to true
define( ‘WP_DEBUG_DISPLAY’, false ); ====> define( ‘WP_DEBUG_DISPLAY’, true );
It will displays the warnings and errors.
Then check your website. Now it will shows the exact error.