inktvusa
Forum Replies Created
-
@webdevmattcrom – So this was bugging me quite a bit and I did some more digging and found the solution, and it had nothing to do with Give.
I have a plugin called “Really Simple SSL” which force enables SSL on all pages. What I failed to realize was that before I had this plugin, I wrote the following rules in my .htaccess which was causing the additional trailing slash, leading to the errors seen in this thread.
<IfModule mod_rewrite.c> RewriteCond %{HTTP_HOST} ^www\. RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,L,R] </IfModule> <IfModule mod_rewrite.c> RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [NE,L,R] </IfModule>Commenting out these rules fixed the error. Just wanted to let you know in case anyone else ever has a similar issue.
Thanks! 🙂
Forum: Plugins
In reply to: [WP Rocket Footer JS] Breaks loginThank you for your patience, Derrick. I will try to make sometime tomorrow. Again, thank you for a great plugin (as I have left a 5 star rating!). This error only occurred in the last one or two updates of WP Rocket. Your plugin used to work fine previous to that. Thanks for your help.
Forum: Plugins
In reply to: [WP Rocket Footer JS] Breaks loginIt absolutely duplicates features in addition to the problem it causes with the latest WP Rocket.
March 3rd, 2017
http://docs.wp-rocket.me/article/56-remove-query-string-on-static-resources
Forum: Plugins
In reply to: [WP Rocket Footer JS] Breaks loginI realized WP Rocket added this feature on 12/2016. I have enabled it and disabled this plugin since it is a duplicate feature. Thank you for your assistance and great job on the plugin!
Forum: Plugins
In reply to: [WP Rocket Footer JS] Breaks loginCould you please upload the file to Mediafire or Sendthisfile? Or if it is code, Pastebin or Codepen? Thanks.
In “Settings > General” and in my wp-config, they are defined as such:
define('WP_HOME', 'https://www.site.org'); // blog url define('WP_SITEURL', 'https://www.site.org'); // site urlI have several redirects in my .htaccess, however, those are in relation to routing all traffic to https.
I will mark this resolved for the time being since modifying give/includes/scripts.php to the code below works (until your next update overrides it; may need to include this in my child theme).
src: url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.eot?ngjl88'; ?>'); src: url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.eot?#iefixngjl88'?>') format('embedded-opentype'), url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.woff?ngjl88'; ?>') format('woff'), url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.svg?ngjl88#icomoon'; ?>') format('svg');Out of all the activated plugins, this only occurs for a file in the 2Checkout Gateway add-on and this present issue.
Thanks.
Forum: Plugins
In reply to: [WP YouTube Lyte] Default playlist image is outdated@futtta @jasonbear – I decided to share the script I am using since it seemed people are not comfortable with working directly with databases.
Hope this helps, it is the easiest way I could do it. It has been working flawlessly for me. 🙂
Cheers!
Since the plugin directory is defined as :
// Plugin Folder URL if ( ! defined( 'GIVE_PLUGIN_URL' ) ) { define( 'GIVE_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); }This would mean that
GIVE_PLUGIN_URLwould equate to /give/ (per the WP Codex, “Gets the URL (with trailing slash) for the plugin __FILE__ passed in”)In give/includes/scripts.php, line numbers 371 to 374 :
src: url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.eot?ngjl88'; ?>'); src: url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.eot?#iefixngjl88'?>') format('embedded-opentype'), url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.woff?ngjl88'; ?>') format('woff'), url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.svg?ngjl88#icomoon'; ?>') format('svg');This results in /give//assets/… It should be defined as the following, right?
src: url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.eot?ngjl88'; ?>'); src: url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.eot?#iefixngjl88'?>') format('embedded-opentype'), url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.woff?ngjl88'; ?>') format('woff'), url('<?php echo GIVE_PLUGIN_URL . 'assets/fonts/icomoon.svg?ngjl88#icomoon'; ?>') format('svg');This actually occurs on any page I am on. This error shows up even when viewing the WP Dashboard. This does not occur with any other plugin so I am at somewhat of a loss.
Forum: Plugins
In reply to: [WP YouTube Lyte] Default playlist image is outdated@jasonbear – You could theoretically use a plugin like SQL Executioner, but if you are not comfortable with databases, you can destroy your website. I would advise against using it if you are not comfortable. Thanks!
Forum: Plugins
In reply to: [WP YouTube Lyte] Default playlist image is outdated@futtta – Installed the GH version and the cache issue still persists.
I am now clearing the cache by using MySQL/MariaDB’s
event_schedulerfunction to directly clear meta_value of meta_key_lyte_xxxxunderwp_postmeta.This immediately works and begins to display the correct image. Wish I did not have to jump through these hoops to avoid 500kB of youtube files loading on embed. Haha. 🙂
EDIT:
'CREATE EVENT ON SCHEDULE EVERY 1 DAY STARTS '2017-04-11 00:00:00' DO UPDATE 'my_wp_database'.'wp_postmeta' SET 'meta_value' = '' WHERE 'wp_postmeta'.'meta_id' =11950;'- This reply was modified 9 years, 1 month ago by inktvusa.
Forum: Plugins
In reply to: [WP YouTube Lyte] Default playlist image is outdated@futtta – I had this error occur yesterday for me as well and clearing the cache via cron and other methods that previously worked, no longer cleared the cache. I went into the dashboard and cleared the cache through WP YouTube Lyte settings and it did not work either. I have several hundred videos in my playlist FYI. I am going to install the latest dev-version from GitHub and record the results. Thanks! 🙂
@mbrsolution – I would also like to have the option to use Google’s reCaptcha or No Captcha instead of the math captcha currently used. I am presently using this plugin but would prefer if you can incorporate it into AIOWPS&F. It’s quite simple to do!
Forum: Plugins
In reply to: [WP YouTube Lyte] Cache Image Not Updating in PlaylistYou’ve already dived in. Thanks for the constant support, Frank. You are a really good developer and a really good person. Thank you again. 🙂
Forum: Plugins
In reply to: [WP YouTube Lyte] Cache Image Not Updating in PlaylistI purged my database of anything WP YouTube Lyte related and re-installed the plugin. The code above now works. Thanks!