Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter joshuanapper

    (@joshuanapper)

    Hey Maciej,

    So I figured it out on my end! For some really weird reason, there was a folder on the server as if you would manually add an HTML page into if doing a project that was named shows. So I had a page on my site named shows/stormtrackers but also on the server was a folder named shows/. Thus the server was trying to pull from that folder but couldn’t find any page file (if that makes sense). And now that I think about it, the 404 error was different than why my site typically shows for a 404. So definitely was a server/user weird error on my end!!

    Thank you so much again!

    Thread Starter joshuanapper

    (@joshuanapper)

    Hey Maciej,

    Here is the .htaccess file

    # BEGIN WP Rocket v3.4.4
    # Use UTF-8 encoding for anything served text/plain or text/html
    AddDefaultCharset UTF-8
    # Force UTF-8 for a number of file formats
    <IfModule mod_mime.c>
    AddCharset UTF-8 .atom .css .js .json .rss .vtt .xml
    </IfModule>
    # FileETag None is not enough for every server.
    <IfModule mod_headers.c>
    Header unset ETag
    </IfModule>
    # Since we’re sending far-future expires, we don’t need ETags for static content.
    # developer.yahoo.com/performance/rules.html#etags
    FileETag None
    <IfModule mod_alias.c>
    <FilesMatch “\.(html|htm|rtf|rtx|txt|xsd|xsl|xml)$”>
    <IfModule mod_headers.c>
    Header set X-Powered-By “WP Rocket/3.4.4”
    Header unset Pragma
    Header append Cache-Control “public”
    Header unset Last-Modified
    </IfModule>
    </FilesMatch>
    <FilesMatch “\.(css|htc|js|asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip)$”>
    <IfModule mod_headers.c>
    Header unset Pragma
    Header append Cache-Control “public”
    </IfModule>
    </FilesMatch>
    </IfModule>
    # Expires headers (for better cache control)
    <IfModule mod_expires.c>
    ExpiresActive on
    # Perhaps better to whitelist expires rules? Perhaps.
    ExpiresDefault “access plus 1 month”
    # cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
    ExpiresByType text/cache-manifest “access plus 0 seconds”
    # Your document html
    ExpiresByType text/html “access plus 0 seconds”
    # Data
    ExpiresByType text/xml “access plus 0 seconds”
    ExpiresByType application/xml “access plus 0 seconds”
    ExpiresByType application/json “access plus 0 seconds”
    # Feed
    ExpiresByType application/rss+xml “access plus 1 hour”
    ExpiresByType application/atom+xml “access plus 1 hour”
    # Favicon (cannot be renamed)
    ExpiresByType image/x-icon “access plus 1 week”
    # Media: images, video, audio
    ExpiresByType image/gif “access plus 4 months”
    ExpiresByType image/png “access plus 4 months”
    ExpiresByType image/jpeg “access plus 4 months”
    ExpiresByType image/webp “access plus 4 months”
    ExpiresByType video/ogg “access plus 1 month”
    ExpiresByType audio/ogg “access plus 1 month”
    ExpiresByType video/mp4 “access plus 1 month”
    ExpiresByType video/webm “access plus 1 month”
    # HTC files (css3pie)
    ExpiresByType text/x-component “access plus 1 month”
    # Webfonts
    ExpiresByType font/ttf “access plus 4 months”
    ExpiresByType font/otf “access plus 4 months”
    ExpiresByType font/woff “access plus 4 months”
    ExpiresByType font/woff2 “access plus 4 months”
    ExpiresByType image/svg+xml “access plus 1 month”
    ExpiresByType application/vnd.ms-fontobject “access plus 1 month”
    # CSS and JavaScript
    ExpiresByType text/css “access plus 1 year”
    ExpiresByType application/javascript “access plus 1 year”
    </IfModule>
    # Gzip compression
    <IfModule mod_deflate.c>
    # Active compression
    SetOutputFilter DEFLATE
    # Force deflate for mangled headers
    <IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
    SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
    RequestHeader append Accept-Encoding “gzip,deflate” env=HAVE_Accept-Encoding
    # Don’t compress images and other uncompressible content
    SetEnvIfNoCase Request_URI \
    \.(?:gif|jpe?g|png|rar|zip|exe|flv|mov|wma|mp3|avi|swf|mp?g|mp4|webm|webp|pdf)$ no-gzip dont-vary
    </IfModule>
    </IfModule>
    # Compress all output labeled with one of the following MIME-types
    <IfModule mod_filter.c>
    AddOutputFilterByType DEFLATE application/atom+xml \
    application/javascript \
    application/json \
    application/rss+xml \
    application/vnd.ms-fontobject \
    application/x-font-ttf \
    application/xhtml+xml \
    application/xml \
    font/opentype \
    image/svg+xml \
    image/x-icon \
    text/css \
    text/html \
    text/plain \
    text/x-component \
    text/xml
    </IfModule>
    <IfModule mod_headers.c>
    Header append Vary: Accept-Encoding
    </IfModule>
    </IfModule>
    # END WP Rocket
    # BEGIN HTTPS Redirection Plugin
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{SERVER_PORT} !^443$
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </IfModule>
    # END HTTPS Redirection Plugin
    # BEGIN WordPress
    # The directives (lines) between BEGIN WordPress and END WordPress are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress
    # Wordfence WAF
    <IfModule LiteSpeed>
    php_value auto_prepend_file ‘/home/o3l8lkcztts9/public_html/wordfence-waf.php’
    </IfModule>
    <IfModule lsapi_module>
    php_value auto_prepend_file ‘/home/o3l8lkcztts9/public_html/wordfence-waf.php’
    </IfModule>
    <Files “.user.ini”>
    <IfModule mod_authz_core.c>
    Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
    Order deny,allow
    Deny from all
    </IfModule>
    </Files>
    # END Wordfence WAF

    I deactivated both my cache and your plugin and tried in a browser that was incognito. No luck. (given I did it right, and I think I did).

    As for the /Shows/, I do have a page titled .com/shows/ the thought was to extend from there so like shows/stormtrackers. or shows/intothestorm. I have had it this setup for over year now with no issues. maybe I’m missing something.

    If you need a login let me know. I have tried almost everything I could think of.

    Thanks,
    Josh

    For what it’s worth, We were in the same shoes. Thankfully another site we run, I hadn’t updated the plugin yet. So I was able to download the plugin from that site and compress it again. Just remove the updated plugin completely and install this rollback version.

    Only sharing this because we were very frustrated with the new update and was very happy with the older version. Just make sure you ignore the notice to update the plugin if you do end up backdating it. Otherwise, you end up back with the newest version.

    This is version 5.3.10.
    Just download and compress the main folder (if it doesn’t download zipped) and upload it to your site. Make sure the old updated plugin is fully removed first. https://www.dropbox.com/s/j9jmcbqzrgrc3ei/google-analytics-dashboard-for-wp.zip?dl=0

    I hope this helps whoever!
    Josh – https://LiveStormChasers.com

    • This reply was modified 4 years, 9 months ago by joshuanapper.
    Thread Starter joshuanapper

    (@joshuanapper)

    Any updates on when the new version will be available? ??

    Thanks again, Josh

    Thread Starter joshuanapper

    (@joshuanapper)

    This is GREAT news to hear! THANKS!

    Thread Starter joshuanapper

    (@joshuanapper)

    This worked PERFECTLY! Saved me a lot of time. Thank you so much for the quick reply. Will leave a positive rating for sure!

    This is the ONLY plugin out there that did exactly what I needed!

    Thank you again to you and the team behind the plugin!

    ~ Josh

    Hey Ya’ll, I am getting much of a similar issue for my end. Any fix on this? ??

    Here was I sent apple on request but resulted in me being sent to this link.

    ***Tittle1***
    Kansas City Underwater After Heavy Rains

    <iframe style=”border: none; overflow: hidden;” src=”https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Fkshbtv%2Fvideos%2F10154719547091190%2F&show_text=0&width=560&#8243; width=”560″ height=”315″ frameborder=”0″ scrolling=”no” allowfullscreen=”allowfullscreen”></iframe>

    Error Message
    THERE HAS BEEN AN ERROR WITH THE API: INVALID_DOCUMENT – THE URL, [HTTPS://PLAYER.VIMEO.COM/VIDEO/], IS INVALID. PLEASE SEE DOCUMENTATION FOR MORE DETAILS ABOUT EMBEDDED VIDEO. (KEYPATH COMPONENTS->1->COMPONENTS->4)

    ***Tittle2***
    Developing: Possible Tornado Destroys Homes On Maryland’s Kent Island As Storm Leaves Thousands Without Power

    <iframe src=”//www.washingtonpost.com/video/c/embed/98f358d4-706a-11e7-8c17-533c52b2f014″ width=”480″ height=”290″ frameborder=”0″ scrolling=”no” allowfullscreen=”allowfullscreen”></iframe>

    Error Message
    THERE HAS BEEN AN ERROR WITH THE API: INVALID_DOCUMENT – THE URL, [HTTPS://PLAYER.VIMEO.COM/VIDEO/], IS INVALID. PLEASE SEE DOCUMENTATION FOR MORE DETAILS ABOUT EMBEDDED VIDEO. (KEYPATH COMPONENTS->1->COMPONENTS->3)

    ***Tittle3***
    BREAKING NEWS: St. Louis Jail Will Add Portable A/C Units Following Viral Video Of Inmates “Screaming”

    <iframe style=”border: none; overflow: hidden;” src=”https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Fattn%2Fvideos%2F1446622468706541%2F&show_text=0&width=400&#8243; width=”400″ height=”400″ frameborder=”0″ scrolling=”no” allowfullscreen=”allowfullscreen”></iframe>

    Error Message
    THERE HAS BEEN AN ERROR WITH THE API: INVALID_DOCUMENT – THE URL, [HTTPS://PLAYER.VIMEO.COM/VIDEO/], IS INVALID. PLEASE SEE DOCUMENTATION FOR MORE DETAILS ABOUT EMBEDDED VIDEO. (KEYPATH COMPONENTS->1->COMPONENTS->6)

    Thread Starter joshuanapper

    (@joshuanapper)

    I just downloaded and purchased your photo add-on and am having problems with displaying of the popup window to add attached photo.

    Please see link for screen shot: https://s9.postimg.org/amrz6om6n/HELP.jpg

    Thread Starter joshuanapper

    (@joshuanapper)

    Just Bumping This For MY Question!

    Thread Starter joshuanapper

    (@joshuanapper)

    Awesome, that worked.
    Now my last question is, how can we display the actual photo rather than the link?
    Or is the not possible yet?

    Thanks!

Viewing 10 replies - 1 through 10 (of 10 total)