mcfreder
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress HTTP 500Hello,
All you need to do is go to https://www.ads-software.com/download/ and download and extract only the two folders wp-admin and wp-includes to your website ftp and it will fix immediately.
This shouldn’t be related to ssl but rather a plugin you have that has wrong Group and owner permissions (https://helpdesk.ugent.be/img/wscp3014.gif). You can use winscp ftp or any other client to check if any plugin has wrong group and owner permission. When you find the plugin folder try to set it same as other folders group and owner.
Last step is to disable and re-enable that plugin. If you don’t do these steps you will keep getting http 500 error upon updating plugins, theme, or wp version. After all if this keeps showing up you can try to disable really simple ssl or other ssl plugin just for the sake for updating plugins or something.
Keep me updated!
Forum: Fixing WordPress
In reply to: Website not opened error 404@sara241 Since you are using windows plesk panel, you can login through here: https://www.carastore4u.com:8880 Then find and click on Domains then File manager and click on your website and then inside httpdocs there should be the .htaccess file and if you can’t find it create new file (check this tutorial: https://www.youtube.com/watch?time_continue=69&v=2kT40Wj2SUY ) and add the following code:
redirect 301 / https://www.carastore4u.com/wordpress/
If the code above does not work try this one:
redirect 301 / https://www.carastore4u.com/wordpress/
Forum: Fixing WordPress
In reply to: WordPress Admin Panel won’t load – site is live@deluxemaid You are mostly welcome! This will occur more often so be prepared to do it over LOL
Forum: Fixing WordPress
In reply to: Website not opened error 404Open Cpanel then go to your website file manager > click public_html folder on your left hand side then find .htaccess and make sure you delete all code inside .htaccess and put this code instead:
RewriteEngine On RedirectMatch 301 ^/$ /wordpress/
Forum: Fixing WordPress
In reply to: Problems with redirects – in my blogGo to your admin panel and check if General Settings have the URLS exactly like this:
https://www.cabinetexpert.ro
You need to access cpanel through your bluehost acc: https://my.bluehost.com/cgi-bin/cplogin
Forum: Fixing WordPress
In reply to: Website not opened error 404First off, Let’s fix your 404 error you need to set a redirect 301 in your root website and find .htaccess file and now open it and remove all codes in it and put this code instead
RewriteEngine On RewriteBase / RewriteCond %{HTTPS} off RewriteRule ^ https://{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE] RewriteRule !^wordpress/ wordpress%{REQUEST_URI} [L,NC]
Secondly, If I understood you correctly You are looking to switch your wordpress website to https:// instead of https:// ?
If that is the case I need you to go to your website ftp again then go to /wordpress/ folder and find .htaccess and open it then remove all the code lines you have there and put this instead:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ RewriteCond %{ENV:HTTPS} !=on RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L] # BEGIN WordPress RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wordpress/index.php [L] </IfModule>
I see some images not working on your https address, so to fix that You also need to install and activate this plugin: https://www.ads-software.com/plugins/remove-http/
That’s it!
Let me know if you need further assistance.
Forum: Fixing WordPress
In reply to: Problems with redirects – in my blogHi,
First off deactivate all your plugins and go your wp-config.php and add these lines:
define('WP_HOME','https://www.cabinetexpert.ro'); define('WP_SITEURL','https://www.cabinetexpert.ro');
Let me know if it’s fixed by now
Forum: Fixing WordPress
In reply to: WordPress Admin Panel won’t load – site is liveHi,
Insert this line of code in your wp-config.php
define( 'WP_DEBUG', true );
Then go to your admin panel and check what errors are being rendered. If it’s a path to a plugin try to disable it Or you can share here the errors you are getting so i help you further.
Have you recently updated your wordpress? Sometimes wp updates fail to modify the db_version within your mysql wp-options table. CHECK out my answer here: https://stackoverflow.com/questions/29896125/wordpress-database-returns-error-500
- This reply was modified 7 years, 10 months ago by mcfreder.
Forum: Fixing WordPress
In reply to: Another day, another fatal errorGo to https://www.ads-software.com/ And download latest wordpress version extract only 2 folders wp-admin and wp-includes into your website ftp.
- This reply was modified 7 years, 10 months ago by mcfreder.
Forum: Fixing WordPress
In reply to: Problem with blog post renderingThere is something that is removing
<link rel=stylesheet id=twentyfourteen-style-css href='https://legaldocspro.net/blog/wp-content/themes/twentyfourteen/style.css' type='text/css' media=all />
From the header of that post Because if you take a look at all your blog posts they all show that css style code liner in the source
Are you using a custom template for your post?
Forum: Fixing WordPress
In reply to: WP 4.7.1 moves sidebar to bottom on Posts (not pages)Hi,
First off make a backup of your theme then Go to https://www.ads-software.com/themes/reddle/
Download the theme and extract only index.php, single.php, page.php, sidebar.php and upload them to your current theme.
However you can download the theme and put in a new folder then start making changes that suites you.
Also in your admin panel don’t forget to check if you have actual widgets in Appearance > Widgets
GL
- This reply was modified 7 years, 10 months ago by mcfreder.
Forum: Fixing WordPress
In reply to: Word Press Fatal ErrorHello,
Go to https://www.ads-software.com/ And download latest wordpress zip Then extract Only wp-admin and wp-includes and then upload them to your wordpress installation. Don’t worry those are only admin panel files so it’s 1000000% safe to do.
Keep me updated!
GL
Forum: Fixing WordPress
In reply to: Problem with blog post renderingThe fix is very simple! Your page is lacking this line:
<link rel=stylesheet id=twentyfourteen-style-css href='https://legaldocspro.net/blog/wp-content/themes/twentyfourteen/style.css' type='text/css' media=all />
Try to add it to your theme header.
Let me know if this works
- This reply was modified 7 years, 10 months ago by mcfreder.