Borge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Mixed content over HTTPSYou can check the settings of your dashboard.
Settings >General
Change http:// to https:// this way it will change the site URL in the database for Both site URL and home URLor add these following in your wp-config.php
define(‘WP_HOME’,’https://example.com’);
define(‘WP_SITEURL’,’https://example.com’);Forum: Fixing WordPress
In reply to: 404 not found error form Page menu linksmuleakshay29
Check the Settings> Media
Check the upload path. Should only be wp-contents/uploads
anything before or after that should be removed.Sometimes its like home/user/public_html/demo/wp-content/upload/2016/07
You should remove home/user/public_html/demo/ and /2016/07
If it wont work, check the uploads folder and see if it has 755 permission.
Hope that helps.
Forum: Fixing WordPress
In reply to: 503 Service Unavailable – WholesalerdomainsSeems you are in a Plesk server.
You need to restart IIS Application. If you have access to that you can restart it.Forum: Fixing WordPress
In reply to: cant get past the login pageCan you post the link of your site?
Forum: Fixing WordPress
In reply to: how to increase upload file memory size with ubuntu plesk vps serverIn your plesk,you may go to Website and Domains Tab
then sometimes, theres a drop down that you need to click that way it will show more options.
Click on PHP settings, from there you can change default settings.hope that helps.
Forum: Installing WordPress
In reply to: php7 mysql_connect()TRy adding these in the php.ini
extension=pdo.so
extension=pdo_sqlite.so
extension=sqlite.so
extension=pdo_mysql.so
extension=gd2.so
extension=curl.so
extension=mbstring.so
extension=mcrypt.so
extension=mysqli.so
extension=mysql.so
extension=pdo_mysql.soForum: Fixing WordPress
In reply to: I can't upload and themes or pluginsHi madisonrosenberger,
One reason could be the memory limit on your server, or WordPress itself.
a . If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)If this doesnt work,
b. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64MHowever, if it wont work still,
You may follow these steps in the link below.
https://www.webhostinghero.com/increase-php-memory-limit-for-wordpress/
Though some of WordPress Support Reps here dont advise this, but sometimes it is only the solution for your issue sometimes. Some server are set already to Max RAM depending on your hosting company but wordpress dont sync or whatever the right term is. Here with my hosting company we are allowing 512M on max shared hosting Mem limit.
Sometimes, adding this code in your wp-config.php will work without changing the default-constants.php.
define('WP_MEMORY_LIMIT', '256M');Forum: Fixing WordPress
In reply to: Display Subdomain Install as RootYou have 2 options. You move all files from sub.example.com to example.com or place a redirection using .htaccess from example.com to sub.example.com.
See the links.
https://codex.wordpress.org/Moving_WordPress
http://www.inmotionhosting.com/support/website/redirects/setting-up-a-301-permanent-redirect-via-htaccessForum: Fixing WordPress
In reply to: No Access to DashboardYou may need to re define the site URL in wp-config.php
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');Which command that didnt work?
Forum: Fixing WordPress
In reply to: how to disable PHP Warning in wordpress?Do it with .htaccess in public_html
# supress php errors
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
php_value docref_root 0
php_value docref_ext 0Forum: Fixing WordPress
In reply to: How to Troubleshoot Blank Search Results PageFirstly, sometimes, blank page is caused by fatal error messages but mostly due to memory limit issue.
Memory Limit issue: Solution below.
a. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’64M’);b . If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)c. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64Md. Read this. https://wordpress.org/support/topic/how-do-i-fix-fatal-error-allowed-memory-size-of-94371840-bytes-exhausted?replies=14
Secondly, It could be caused by something else e.g. plug ins or php version ?. But you can check the errors on the error_log.
You may check the error logs to see the most recent error should there be. If cannot see any errors, try this,1. Set php.ini
; – Show all errors, except for notices
;
;error_reporting = E_ALL & ~E_NOTICE
;then
display_errors = On
Forum: Fixing WordPress
In reply to: how to disable PHP Warning in wordpress?You can set in php.ini in home directory should you have any access to it.
display_errors = Off
Forum: Fixing WordPress
In reply to: Error – i dont know what kind ofHi, seems you have the answer already. You may remove that plug in from your FTP or File Manager as it is not compatible with the most recent version of WordPress. Please see the link below.
https://core.trac.wordpress.org/ticket/30758
This error might be caused by WP Tuner plugin, it’s not compatible with recent WordPress versions.
Forum: Fixing WordPress
In reply to: Website is no longer visibleI guess the site URL has been changed in the database in this kind of case. Have you check the DB? if not, go to phpmyAdmin and go to wp_options table the check the site URL there. Then correct it if its not right.
Try adding this code in wp-config and see if it will work.
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');Forum: Fixing WordPress
In reply to: Domain Name and Self-HostingYour DNS seems to be propagating already. As checked
https://www.whatsmydns.net/#NS/maritimerefits.com.au
NS are already with bluehost.It might not be propagated in your end but try clearing the browsing data in your browser and this might work.
I tried going to admin and it takes me to the right page. See the screenshot http://take.ms/oZCJE.