core-data-recovery
Forum Replies Created
-
Forum: Plugins
In reply to: [yubikey-plugin] Plugin not enforcing!did you go to users and enable it for yourself?
you also have to go to users and put in the first 12 chars of your keys for that particular user.Forum: Plugins
In reply to: [WP Super Cache] My whole is down after activating the plugin.wp-config.php make certain the /home/accountname is the correct one.
if it can’t find the defined path, then it can’t cache the files correctly.
The old account may be /home/account12/public_html/wp-content/plugins/wp-super-cache/
the new one may just be home/account/public_html/wp-content/plugins/wp-super-cache/Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] – Errors in the headerIt is often, after a move that your /home/account/ has changed.
this is just below wp-cache = true in wp-config.phpUninstalling and reinstalling will fix this, you could change the line and it will fix the issue.
Forum: Fixing WordPress
In reply to: Media Upload Error Still Present on WP 3.5.1I’d contact your ISP/Host and have them look at the server permissions. I had to have them make a change to the server side after going to 3.5.1
Forum: Fixing WordPress
In reply to: Media Upload Error Still Present on WP 3.5.1check to see , with ftp or file browser (in cpanel)
that the /wp-content/uploads is set to 755 for all directories, including the year and month you are uploading to.make sure your year and month exist under wp-content/uploads/2013/01/
try uploading again.
Forum: Fixing WordPress
In reply to: Media Upload Error Still Present on WP 3.5.1yourwebsite.com/cpanel?
Forum: Fixing WordPress
In reply to: Media Upload Error Still Present on WP 3.5.1then it is most likely set to the default.
are you on a shared host, or is this on it’s own cpanel?
Forum: Fixing WordPress
In reply to: Media Upload Error Still Present on WP 3.5.1try navigating to settings, media, and check that the upload path is
/wp-content/uploads.you may have to make it
wp-content/uploadsForum: Fixing WordPress
In reply to: Media Upload Error Still Present on WP 3.5.1are you on a shared host and is this an add-on domain, (not the primary)?
I’m having the same issue on hostgator with add-on domains.
Forum: Plugins
In reply to: [Redirectioner] Redirect Expired Posts to first categoryyes, depending on how many of these that happen weekly.
You just have to look at the 404 links that are broken, sort them by number of hits and then redirect them appropriately.
it’s not an automated thing.
You might be able to add some code to modify it to that purpose, if need be.
It’s fairly simple to manage if you don’t have over 20 of these going down a week.
Forum: Plugins
In reply to: [Redirectioner] [Plugin: 404 Redirected] Manual redirects not workingdo you have the https://website.com full URL in the address?
Forum: Plugins
In reply to: [Redirectioner] Exclude pages and url stringsDon’t forget to add the extra } at the end of the function area to close the if function.
Forum: Plugins
In reply to: [Redirectioner] [Plugin: 404 Redirected] Ignore tree?In /wp-content/plugins/404-redirected/includes/frontend.php
I added
if($urlParts[‘path’] != ‘/transaction-results/’ && $urlParts[‘path’] != ‘transaction-results’ ){in function wbz404_process404() before
//Get URL data if it’s already in our database on line 65this excludes the search page from being redirected
Don’t forget to add a single } bracket at the end of the function to close the if function.
(this tip was from Daniel Tulip) I just modified it so it will exclude your tree.
Forum: Plugins
In reply to: [Redirectioner] Exclude pages and url stringsThat worked for me as well, I’d like to put in an exclusion list.
Maybe they will add a feature to ignore certain things like /checkout/ or /checkout/pay
It was interfering with my woocommerce cart with a plugin called paypal advanced.