Qtwix
Forum Replies Created
-
Forum: Plugins
In reply to: [Developer Tools] different values for directives as root phpinfojust got the cause of the issue. The values were modified by a plugin which made changes to the wp-config.php and therefore altered the values within WordPress.
- This reply was modified 5 years, 8 months ago by Qtwix.
Forum: Plugins
In reply to: [Developer Tools] different values for directives as root phpinfoThanks for the reply.
What do you mean by “The file you added”? I didn’t add any file here. My question is about one of my sites where I am using the Developer Tools plugin. As I changed php values by altering the hosting’s php settings and later on also in the root folder .htaccess, I noticed that the changes were not updated/recognized by the Developer Tools Plugin. So, I created an additional new phpinfo.php file…
<?php phpinfo(); ?>
…in the root folder of the website and realized that the values in root folder’s phpinfo.php file do not match the ones from the Developer Tools Plugin.
Any idea why this could happen?
Thanks
- This reply was modified 5 years, 8 months ago by Qtwix.
@wfdave Thanks, for your reply! So, could you please add the option to remove author names to the list of feature requests? I think this would definitively be one to further increase the security of a site.
Thanks!
Forum: Plugins
In reply to: [LiteSpeed Cache] “Do Not Cache URIs” issue on WPMU sub-sitesHi,
I finally found the error. It’s not the LS Cache which causes the issue, it’s browser related. The issue was caused by the browser cache of Firefox, if it’s not executed in private mode. Running Firefox in private mode removes the issue.
Thanks anyway.
Best regards,
Forum: Plugins
In reply to: [LiteSpeed Cache] “Do Not Cache URIs” issue on WPMU sub-sitesForum: Plugins
In reply to: [LiteSpeed Cache] “Do Not Cache URIs” issue on WPMU sub-sitesHi,
I just wanted to submit a ticket as you suggested. However, since I upgraded the LiteSpeed Cache plugin yesterday, I cannot reproduce the issue anymore. So it seems as if the update resolved the issue. So, in case I will experience the issue again, I will get back here.
Thanks
Forum: Plugins
In reply to: [LiteSpeed Cache] “Do Not Cache URIs” issue on WPMU sub-sitesHi,
So I checked the header and while the frontend correctly shows “x-litespeed-cache: hit”, the backend below wp-admin shows a hader with “x-litspeed-cache-control: no-cache”. However, the issue is still present using the suggested “wp-admin” string in “do not cache URI”, as shown in my video linked above.
-> So, I’m I right that if I get “x-litspeed-cache-control: no-cache” in the header while loading the backend, it means that LiteSpeed Cache does not cache the page at all?
-> And if yes, how come that the LS Cache setting “Logged-in Users” on/off as well as purging the cache influences the backend as shown in the linked video?Thanks,
UrsForum: Plugins
In reply to: [LiteSpeed Cache] “Do Not Cache URIs” issue on WPMU sub-sites…I uploaded an additional screencast to the folder to outline better, what I mean:
https://www.dropbox.com/sh/y6cwdt0qbdgxhjs/AABjby8ts60LwrLkR3ryQGAMa?dl=0&preview=caching_issue.mp4Thanks!
- This reply was modified 6 years, 1 month ago by Qtwix.
Forum: Plugins
In reply to: [LiteSpeed Cache] “Do Not Cache URIs” issue on WPMU sub-sitesHi,
There’s an option Cache > “Cache Logged-in Users”. I it’s turned on, then I have caching issues in the media library with the additional plugin “WP Real Media Library”, which shows additional folders in the library; “Purge All” resolves the issue. If I turn Cache > “Cache Logged-in Users” off then I don’t have any caching issue. So I assume, the backend is actually cached and therefore, I want to exclude the media library from being cached.
Where do I find this “x-litspeed-cache-control: no-cache” header on subsite page?
Thanks!
Best regards
Forum: Plugins
In reply to: [LiteSpeed Cache] CSS optimization issues (Firefox Windows)Hi Lisa,
Thank you very much! As of the yesterday’s great release of Firefox Quantum, the issue got removed and the page is looking correct now. Also, I did not have any issues neither with Edge nor with Chrome.
So, finally all is fine now ?? !
Best wishes…
Forum: Plugins
In reply to: [LiteSpeed Cache] CSS optimization issues (Firefox Windows)Hi Lisa
Thanks for your reply. Yes, I already cleard the browser cache. Meanwhile I also un- and reinstalled Firefox, completely deleted the Firefox profile and even tried it with another user profile. The issue is still present and the layout completely messed up. The first page load after clearing the browser cache looks ok, but after reloading the page or switching to another page, the issue appears again. If I deactivate all the css optimizations, the page looks good again.
Meanwhile I also tried it on another Windows computer with Firefox and the page looks good. This is very strange…
Currently, I have no clue where to look further. This computer is a brand new HP laptop with nothing special on it. I only installed MS Office, Firefox and Sophos Home on it. If you have any suggestion, I’d really appreciate it!
Thanks!
Forum: Fixing WordPress
In reply to: "Activate Administrator Menu Access module" bugOh, sorry I accidentally posted it in the wrong forum.
I posted it here:
https://www.role-editor.com/forums/topic/activate-administrator-menu-access-module-bug/
Thanks anyway!Forum: Fixing WordPress
In reply to: How to backup utf8mb4 with a mysqldumpAnyone using mysqldump for database backups?
I tried to dump withmysqldump --default-character-set=utf8mb4 -u username -p'password' dbname > ./dbname.sql;
…but Emoji’s get lost after import ?? .
Thanks!
Forum: Fixing WordPress
In reply to: Various collation types in DB after upgrade to 4.2.1Hi James,
Perfect, it’s what I already have set. Thanky for your help!
Forum: Fixing WordPress
In reply to: Various collation types in DB after upgrade to 4.2.1Thanks a lot for your reply and links!
Would you suggest to change the following entries
/** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', 'utf8_general_ci');
to
/** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8mb4'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', 'utf8mb4_unicode_ci');
? Or is it better to leave the definitions blank? What are the consequences of this rules? Do they override the server settings?