blindpet
Forum Replies Created
-
Forum: Plugins
In reply to: [Disqus Conditional Load] Disable Rocketloader on CloudFlareThat is only because I disabled Rocketloader everywhere, I can re-enable it so you can check, please let me know when you are done so I can disable Rocketloader again.
Forum: Plugins
In reply to: [Disqus Conditional Load] Disable Rocketloader on CloudFlareThank you Joel, unfortunately the new feature isn’t working for me. Flushed my caches everywhere I could think of, did you happen to test this on a CloudFlare Rocketloader enabled system?
Just got this again, seems to be Better WordPress Minify in case anybody should stumble upon this.
Forum: Plugins
In reply to: [Redis Object Cache] Using redis for database cache?Well I don’t know, for example in W3 total cache you can use memcached to cache objects and database separately.
I figured there must be some benefit to enabling both object and database cache. My understanding is if using database cache in Redis you could avoid hitting MySQL more often.
For example the way WordPress caches ajax requests could be limited compared to how redis could do it.
I did try using the Donate button from the admin panel as well.
Let me know when you think the donation button is working (or post the email address).
I just manually removed autoload for a bunch of old plugins but I fear some of the tables are still there. I look forward to the new release 🙂
Forum: Plugins
In reply to: [Disqus Conditional Load] Disable Rocketloader on CloudFlareI was going to make a donation but can see it’s not possible, was going to donate for an hour or two of your time to implement this.
Will buy pro instead 🙂
Will this be available in the free and pro versions?
Forum: Fixing WordPress
In reply to: WordPress giving cookie that expired a year agoI would recommend adding this to the reauth=1 wiki/documentation and other cookie related pages
Forum: Fixing WordPress
In reply to: WordPress giving cookie that expired a year agoFinally managed to fix this after paying somebody for a consult. It has to do with the web server listening on another port like 8090 if you are using a reverse proxy like Varnish or nginx. In you wp-config.php force cookies for your domain
define( 'COOKIE_DOMAIN', 'www.htpcguides.com' ); define( 'SITECOOKIEPATH', '/' ); define( 'COOKIEPATH', '/' );Forum: Fixing WordPress
In reply to: WordPress giving cookie that expired a year agoOk I have tried restoring the wp_users table from my last known good backup and same problem. For those curious, this is how you do it from a mysqldump of your whole database
Extract only the wp_users table from the dump and create a new dump only containing that table
sed -n -e '/DROP TABLE.*wp_users/,/UNLOCK TABLES/p' name-of-full-dump > wpusersattemptreauthfix.sqlThen restore the partial table into your wordpress database
mysql -u root -p -Dwpdatabase-name < wpusersattemptreauthfix.sqlForum: Fixing WordPress
In reply to: WordPress giving cookie that expired a year agoUpon further inspection I can see that I am getting cookies but they are both expired and have invalid content (only contain +). I am not getting the wp-settings-1 or wp-settings-time-1 cookies.
I believe this can be fixed in the database, can anybody tell me how I’d go about doing this?
Forum: Fixing WordPress
In reply to: WordPress giving cookie that expired a year agoI have now replaced the wordpress core files and still no change.
Is there no thorough way to debug this?
Isn’t WordPress generating cookies using PHP? I switched to php5-fpm and same result.
My PHP info is showing which I assume is normal
date/time support enabled "Olson" Timezone Database Version 2015.7 Timezone Database internal Default timezone UTCI am super stumped.
Forum: Fixing WordPress
In reply to: WordPress giving cookie that expired a year agoOne thing I hadn’t done was replacing wp-login.php with a fresh copy as outlined on the troubles logging in page. Nothing changed unfortunately.
I fixed this myself, there should really be an option to do this in the plugin
Replace htpcguides.com with your desired home and siteurl
In MySQL or phpadmin
update wp_options set option_value='http://www.htpcguides.com' where option_name='siteurl'; update wp_options set option_value='http://www.htpcguides.com' where option_name='home';Forum: Fixing WordPress
In reply to: Help debugging wp-login redirect reauth=1 errorI made a new thread as I thought it had to do with the web server and it is here https://wordpress.org/support/topic/wordpress-giving-cookie-that-expired-a-year-ago
Forum: Fixing WordPress
In reply to: WordPress giving cookie that expired a year agoThanks Jan, my apologies for not referencing my other thread where I list everything that I have done to try and fix the reauth=1 error. Here is the list of what I have tried, I continuously get the reauth error https://www.htpcguides.com/wp-login.php?redirect_to=https%3A%2F%2Fwww.htpcguides.com%2Fwp-admin%2F&reauth=1
Date gives me
Tue Nov 10 12:24:57 UTC 2015I don’t have the 2015 theme but the 2014 theme, when I disable my regular theme so it uses the 2014 theme that doesn’t help. I disable it by renaming the folder
I have disabled all plugins by renaming the plugins folder and restarting the web server and php5-fpm (with Apache I just restarted Apache)
I have cleared cookies, reset salts and tried different browsers even in incognito omde
The problem persists, I get a cookie but its expiration date is from a year ago
Monday, November 10, 2014 at 1:55:43 PMI have spent 2 days on this, I’m at the point where I need to pay my way out of this but I really want to understand what has happened.