nytrm
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Renaming images in postmake sure you are not using a caching plugin, if you do then purge the cache.
Forum: Fixing WordPress
In reply to: I am not able to fix this by myselfIndeed a css issue, need to overwrite
#tribe-events-event-meta a
.tribe-events-event-list-meta tdwith these.
#tribe-events-event-meta a { color: #FFFFFF; text-decoration: none; } .tribe-events-event-list-meta td { background-color: black; border: 0 none !important; color: #FFFFFF; padding: 0 0 4px !important; text-align: left; vertical-align: top; }
apc.ini at host level.
Remember to disable maintenance plugins when activating
APC memory is too low, could you check if this is the problem?
Forum: Plugins
In reply to: [W3 Total Cache] It appears Page Cache URL rewriting is not workingFound the problem, my maintenance plugin was the problem.
W3 Total Cache tries to open the https://www.example.com/w3tc_rewrite_test url on sevrer side.
Because it is nog logged in it gets redirected to the https://www.example.com/ maintenance page and cannot get the expected response it needs to be able to tell if the url rewriting is working.After some debugging i found out my Maintenance Mode plugin was causing the enhanced pagecaching to fail while having it in maintenance mode.
The reason for this w3tc does a server side page request ( not logged in ) to the https://www.example.com/w3tc_rewrite_test address, when not logged in on my page they get redirected to a maintenance page so the response will never be the exspected OK and fails.
Hope this helps for anyone with a maintenance plugin installed ??
Forum: Fixing WordPress
In reply to: wp_enqueue_style add to headThanks, using conditional tags now.
I am having the same issue, i found out it tries to get the url https://www.example.com/w3tc_rewrite_test and if it cannot find it it shows the error.
Manually i can load it and it is OK but somehow i keep getting this error message while URL rewriting is Enabled including all other modules.
Forum: Fixing WordPress
In reply to: wp_enqueue_style add to headI could do that, but i want to load in specific styles on each template.
How will i do this from within the functions.php?
Forum: Fixing WordPress
In reply to: wp_enqueue_style add to headThats what i am doing, register in the functions.php
call enqueue in the template itself.
Forum: Fixing WordPress
In reply to: dots in admin bar.Resolved
Forum: Fixing WordPress
In reply to: dots in admin bar.Resolved after updating to the latest version of PHP.