cheonmu
Forum Replies Created
-
Forum: Plugins
In reply to: [Adaptive Images for WordPress] Images not scalingThanks for answering.
I think i found what was my problem.
the problem is Nginx-Rocket when i told firstly.
When i open Default.conf form Nginx-rocket, I can find below code and i just remove jpeg, png, gif.
# BROWSER MEDIA CACHE # location ~* \.(ico|gif|jpe?g|png|svg|eot|otf|woff|woff2|ttf|ogg)$ { etag on; expires 30d; }
I guess Broswer cache from Adaptive Images and Rocket-nginx was crashed maybe.
Thanks you.
- This reply was modified 5 years, 10 months ago by cheonmu.
Forum: Plugins
In reply to: [Adaptive Images for WordPress] Images not scalingHi, I really appreciate your kind reply despite a lot of questions.
I really want to use your Plugin so I migrated to new Nginx server by referring to https://websiteforstudents.com/setup-wordpress-woocommerce-with-nginx-mariadb-and-php-7-2-on-ubuntu-16-04-18-04/ tutorial.
My server is currently using the code below.
server { listen 80; server_name ja.seoartgallery.com www.ja.seoartgallery.com static.ja.seoartgallery.com www.static.ja.seoartgallery.com; return 301 https://$server_name$request_uri; } server { listen 443 ssl http2; server_name ja.seoartgallery.com www.ja.seoartgallery.com static.ja.seoartgallery.com www.static.ja.seoartgallery.com; root /var/www/ja.seoartgallery.com/htdocs; index index.php index.html index.htm; ssl_certificate "/etc/letsencrypt/live/ja.seoartgallery.com/fullchain.pem"; ssl_certificate_key "/etc/letsencrypt/live/ja.seoartgallery.com/privkey.pem"; ssl_dhparam "/etc/ssl/certs/dhparam.pem"; # Set caches, protocols, and accepted ciphers. This config will merit an A+ SSL Labs score. ssl_session_cache shared:SSL:20m; ssl_session_timeout 10m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; ssl_ciphers 'ECDH+AESGCM:ECDH+AES256:ECDH+AES128:DH+3DES:!ADH:!AECDH:!MD5'; access_log /var/log/nginx/ja.seoartgallery.com.access.log; error_log /var/log/nginx/ja.seoartgallery.com.error.log warn; # Block dot file (.htaccess .htpasswd .svn .git .env and so on.) location ~ /\. { deny all; } # Block (log file, binary, certificate, shell script, sql dump file) access. location ~* \.(log|binary|pem|enc|crt|conf|cnf|sql|sh|key|yml|lock)$ { deny all; } # Block access location ~* (composer\.json|composer\.lock|composer\.phar|contributing\.md|license\.txt|readme\.rst|readme\.md|readme\.txt|copyright|artisan|gulpfile\.js|package\.json|phpunit\.xml|access_log|error_log|gruntfile\.js)$ { deny all; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { log_not_found off; access_log off; } # Block .php file inside upload folder. uploads(wp), files(drupal), data(gnuboard). location ~* /(?:uploads|default/files|data)/.*\.php$ { deny all; } client_max_body_size 100M; location / { try_files $uri $uri/ /index.php?$args; rewrite \.(?:jpe?g|gif|png)$ /wp-content/plugins/adaptive-images/adaptive-images-script.php; } # Allow Lets Encrypt Domain Validation Program location ^~ /.well-known/acme-challenge/ { allow all; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } }
Could you check if your plugin is working normally now?
Thank you.
Forum: Plugins
In reply to: [Adaptive Images for WordPress] Images not scalingHi, Thanks for answering.
I’m still not sure if Adaptive Images for WordPress plug-in is working normally from my website.
I checked the download capacity of the whole image by changing resolutionby using Chrome developer tool, but there is no difference.
If Resolution is marked as 320.1..v.v as shown in the screenshot you have uploaded above(https://prnt.sc/niqmb5), does it mean that it’s working normally?
And is it possible to use with WebP Express plugin both?
Thank you.
- This reply was modified 5 years, 10 months ago by cheonmu.
Forum: Plugins
In reply to: [Adaptive Images for WordPress] Images not scalingHi, Thanks for answering.
I tried to access to Debug url again , original image is displayed, not the debug information.
Since WP ROCKET is still disabled, it does not seem to be a plug-in problem.
I am checking the configuration of my server block, but I have not found any problems.
This is my server block and i will test again what is problem.
I am using nginx 1.10.3 + Ubuntu 16.04 + mariadb 10.1.38 + php7.0
Thank you
server{ listen 80; server_name ja.seoartgallery.com www.ja.seoartgallery.com static.ja.seoartgallery.com www.static.ja.seoartgallery.com img.ja.seoartgallery.com www.img.ja.seoartgallery.com; location /{ return 301 https://$host$request_uri; } } server { server_name ja.seoartgallery.com www.ja.seoartgallery.com static.ja.seoartgallery.com www.static.ja.seoartgallery.com img.ja.seoartgallery.com www.img.ja.seoartgallery.com; error_log /var/log/nginx/ja.seoartgallery.com.error.log; root /var/www/ja.seoartgallery.com/htdocs; location ~* \.(eot|ttf|woff|woff2|png)$ { add_header Access-Control-Allow-Origin *; expires 365d; } location ~* \.(js|css|pdf|html|swf)$ { expires 30d; add_header Cache-Control "public, no-transform"; } index index.php index.html index.htm; include common/php7-seo.conf; include /var/www/ja.seoartgallery.com/conf/nginx/*.conf; }
php7-seo.conf
location / { try_files $uri $uri/ /index.php?$args; rewrite \.(?:jpe?g|gif|png)$ /wp-content/plugins/adaptive-images/adaptive-images-script.php; } location ~ \.php$ { try_files $uri =404; include fastcgi_params; fastcgi_pass php7; }
# FastCGI cache settings fastcgi_cache_path /var/run/nginx-cache levels=1:2 keys_zone=WORDPRESS:50m inactive=60m; fastcgi_cache_key "$scheme$request_method$host$request_uri"; fastcgi_cache_use_stale error timeout invalid_header updating http_500 http_503; fastcgi_cache_valid 200 301 302 404 1h; fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; fastcgi_param SERVER_NAME $http_host; fastcgi_ignore_headers Cache-Control Expires Set-Cookie; fastcgi_keep_conn on;
#SSL listen 443 ssl http2; ssl on; ssl_certificate /etc/letsencrypt/live/ja.seoartgallery.com-0001/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/ja.seoartgallery.com-0001/privkey.pem; ssl_dhparam "/etc/ssl/certs/dhparam.pem"; # Set caches, protocols, and accepted ciphers. This config will merit an A+ SSL Labs score. ssl_session_tickets off; ssl_ecdh_curve secp384r1; ssl_session_cache shared:SSL:20m; ssl_session_timeout 10m; ssl_stapling on; ssl_stapling_verify on; ssl_trusted_certificate /etc/letsencrypt/live/ja.seoartgallery.com/chain.pem; resolver 8.8.8.8 8.8.4.4 valid=300s; resolver_timeout 5s; ssl_buffer_size 4k; ssl_protocols TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; # ssl_ciphers 'ECDH+AESGCM:ECDH+AES256:ECDH+AES128:DH+3DES:!ADH:!AECDH:!MD5'; ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH'; add_header Strict-Transport-Security 'max-age=31536000';
- This reply was modified 5 years, 10 months ago by cheonmu.
Forum: Plugins
In reply to: [Adaptive Images for WordPress] Images not scalingHi, Thanks for answering.
I found the problem is compatible with wp-rocket plugin.
when i use Rocket-Nginx script with Wp-rocket and Adaptive Images plugin, debug url can`t access.
if I deleted Rocket-Nginx script in my server block, i can access debug url but Adaptive Images plugin not work collectly (not changed configuration in Adaptive Images plugin)
Finally, I disabled Rocket plugin and Delete Rocket-Nginx script but Adaptive Images plugin still not work.
Please check
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay button not showing.Hi, Thanks for answering.
I updated all plugins and theme and I’ve disabled and tested all plugins.
Since it operates well by using the old version(3.2.3) of Stripe plug-in, the update seems to be not an issue.
Forum: Plugins
In reply to: [Adaptive Images for WordPress] Images not scalingHi, Thanks for answering!
I am currently running a website on VPS and I have the authorities of an administrator.
I made a couple changes in the settings in the server block and the Debug is properly working now.
However, I am still unable to adjust the image size. Could I kindly ask you to check it one more time?
Hi, @shortpixel
Thanks for answering. I optimized all of images (Thumbnails and Featured images ..v.v)
but I am used “Piture” option with Nginx code both.
Do i need to unchecked “Deliver the WebP versions of the images in the front-end” option?
If i unchecked that option, Webp files not loaded.
My website is here and activated SPIO already.
Thank you.
Forum: Plugins
In reply to: [WooCommerce] How to add custom text below user id in my account page?@slash1andy Hi, Thanks for answering. but i want to put custom text in dashboard on my account page. Please see this screenshot. not login or register page.
Hi, Thanks for answering.
I was test all variation of line-break css to my text (p) but doesn’t work.
I am using your shortcode like below.
Text
Short descritopon
[read more]
Long descritopon
[/read]Than you.
- This reply was modified 6 years, 3 months ago by cheonmu.
Forum: Plugins
In reply to: [Yoast SEO] How to no index subpages and categories from SERP?Hi, Thanks for answering.
Do i need to put %%page%% variable to SEO title field like below?
%%title%% – %%sitename%% %%page%%
I tried to put %% page %% variable to SEO title field in Page, but sniffet preview did not change anything.
Thank you.
Hi, Thanks for answering.
I made as gif file.
Please check this link -> https://imgur.com/a/5jSVi4n
In gif, if click +more button, expanded description and -less button also moved to bottom of description
Forum: Plugins
In reply to: [Schema] Is this plugin compatible with Yoast local plugin?Thanks for answering.
How can i give you my API key?
I was bought ur service already so i cant post here
my website is https://seoartgallery.con
Thank you
Hi, Thanks for answering!
I have already converted a lot of image files to webp files, but still the files in jpeg and webp formats are loaded simultaneously in the Chrome devlepor tool.
How can I test whether the webp files work properly?
If I see that WEBP file is normally operating, I am thinking of paying for the service your company provides, re-upload all the images on my website and zip them by Glossy.
But is there any function that switches uploaded image files to WEBP file?