Files not serving from CDN
-
Looks like in the file /wp-content/plugins/dreamspeed-cdn/media/classes/dreamspeed.php
on line 388 and line 614,
if ( $scheme == 'https' && $this->get_setting( 'fullspeed' ) !== 1 ) {
causing the module to use the file in the bucket instead of the CDN version of files even with “Serve accelerated files” is checkedJust wonder shouldn’t it be the following instead?
if ( $scheme == 'https' && $this->get_setting( 'fullspeed' ) != 1 ) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Files not serving from CDN’ is closed to new replies.