noi_kite
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Language Switcher] Different websites in a multisite networkThanks Dennis, this works fine.
Forum: Plugins
In reply to: [Multisite Language Switcher] Different websites in a multisite networkThanks Dennis, but this is not very convenient, as I always have to change the user and logout/login to work on the different sites. It’s not possible to have all sites in one dashboard anymore. Is there a different way? It would be nice to have the option in MSLS to specify like websites of network 1 and websites of network 2 … Thanks anyway.
Forum: Plugins
In reply to: [Swift Performance Lite] SWIFT and CLOUDFLARE minify togetherHello Scottie, thanks. I had both enabled and it worked, but I will try like you said and see if SWIFT alone or Cloudflare alone does better results.
Just for information, from the wp rocket website:
“Cloudflare can perform the minification process of CSS and JS files as well as WP Rocket, but there is one extra thing that WP Rocket does, and it is called concatenation. This means that WP Rocket combines files into little groups for better compatibility and performance, and that is one useful feature that is not included in Cloudflare.
We recommend you activate minification in Cloudflare as well as WP Rocket in order to get the best results.”Forum: Plugins
In reply to: [Swift Performance Lite] SWIFT and CLOUDFLARE minify togetherfor example WP Rocket recommends to leave it ON
Thanks for the instruction.
I have a problem with my logo.
After setting up the domain mapping without plugin, the logo on my page is very big and not scaled anymore.
I′m using Avada theme and can set a normal logo and a retina logo.
It looks like it′s showing the huge retina logo and not scaling it to the retina resolution.
After activating the MU Domain Mapping Plugin, the logo is normal, like it should be, again.
What is the problem here and how can I resolve this?
Thank you very much.Forum: Plugins
In reply to: [Gallery Plugin for WordPress - Envira Photo Gallery] generated imagesAnd this 1280px image file is still in my wp directory after deleting the image.
All generated images got deleted, only this 1280px image is still there.
I can′t delete it with webFTP. What kind of file is it, is it protected?
So my webspace get flooded with this files and I can′t delete them.
Please give me a solution for this! ThanksForum: Plugins
In reply to: [Gallery Plugin for WordPress - Envira Photo Gallery] generated imagesHello akyusa,
I don′t have a login, so I can′t get a ticket.
I tried different things now.
After changing the image dimension for the gallery, it will load the set dimension (e.g. 320px) put it will still also load the 1280px file. It′s loading both (what I can see in the browser web information).
If I change the image dimensions for the lightbox picture, nothing will change.
After playing around with the image dimensions for the gallery and the lightbox, surprisingly it generated another image file with 1920px size. Now its always loading the 1920px size file besides the 320px file. Remember I just uploaded a 960px file. It′s generating judge files.Does it′s always loading 2 files for one picture (or 3 if thumbnails are activated)? One for gallery grid preview and one for lightbox?
It looks like it′s loading the wrong picture for the lightbox. Even if I set dimension to “default”, it should use original file size (960px) and also if I set a different dimension like 800px, it will always loading the 1280px file and now even the 1920px file.Maybe it is confused because of the retina display and trying to create a bigger file for the resolution?
After this I created a completely new gallery to do some more tests.
I set the image dimensions to “default” or to a different one like 400px for grid and 800px for lightbox (makes no differences if set to default or 800px). I uploaded some completely new pictures. I took a look with webFTP and saw that just the normal pictures were created from wordpress.
After I published the gallery and loaded the website with the gallery, it created a new 1280px image file and used this one, instead of the default=960px or 800px. It′s also loading again both, the 400px (I think the grid image, which is set to 400px, so it′s correctly) and the 1280px (I think the wrong lightbox image maybe).I hope someone can help me to fix this issue or can tell me what I′m doing wrong.
Thanks a lot.Forum: Plugins
In reply to: [Zanto WP Translation (For Multisites)] language switcher in menuI found out there was an addon (Zanto wp menu switcher) for this, but looks like it′s not available anymore and the author is not updating the plugin anymore.
Does anyone has the addon and can share it with me please?
Would be awesome, thanks a lot.Forum: Plugins
In reply to: [WP Super Cache] after uninstall 404 not found HELPsolved.
delete all the stuff above and but in:
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]Forum: Plugins
In reply to: [WP Super Cache] after uninstall 404 not found HELPSo far I know now, the problem is the htaccess. I deleted all the other stuff, but if I′ll delete the wp super cache entry in th htaccess the site is 404 not found. If I copy it back, it′s working.
Whats the problem with that:
# BEGIN WPSuperCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#If you serve pages from behind a proxy you may want to change ‘RewriteCond %{HTTPS} on’ to something more sensible
AddDefaultCharset UTF-8
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{HTTPS} on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz” [L]
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{HTTPS} !on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz” [L]
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTPS} on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html” [L]
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTPS} !on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html” [L]
</IfModule>
# END WPSuperCacheI want delete it completely, how can I do it without the 404 error?
Forum: Plugins
In reply to: [WP Super Cache] after uninstall 404 not found HELPNot Found
The requested URL /spot/ was not found on this server.
Apache Server at https://www.kitebirds.de Port 80