Andre Gagnon
Forum Replies Created
-
Hi There,
Thanks for reaching out. It looks like your server is allowing directory browsing, which isn’t something we can control with our plugin. This is a server-level security Who is your host? Most reliable hosts will disable this by default.
Forum: Plugins
In reply to: [Presto Player] It is not working with the plugin JWT AuthThanks for the message. It looks like that’s because the JWT plugin intercepts ALL Rest Routes, including ours. You’ll need to follow their whitelist instructions noted on their plugin page, and whitelist only the routes you want intercepted:
https://ww.wp.xz.cn/plugins/jwt-auth/
Our admin requests follow the standard WordPress Nonce and Cookie authentication, and it seems to be returning a “Authorization header not found.” error, because, of course, we do not send a JWT in an Authorization header.
Forum: Plugins
In reply to: [Presto Player] Customize Youtube Play ButtonHappy to hear it! Any other questions, let me know!
Forum: Plugins
In reply to: [Presto Player] Customize Youtube Play ButtonRemoving this button is available in our Pro plugin, which lets you customize the buttons in the player. There are a ton of options available that lets you choose which controls to have in the player.
Let me know if you need any additional assistance!
Forum: Plugins
In reply to: [Presto Player] Why is Presto Player adding 30 requests to the page?I think you are mistaken, though. Our player size is 239k. These additional requests your seeing in your screenshot are:
1. Subscribe button ~ 79k
2. Your youtube poster image ~ 169kYou’re welcome to upload a smaller poster image via our if you want to reduce the size there, but this is not a direct result of our player. These requests would happen regardless of the video player used.
Forum: Plugins
In reply to: [Presto Player] Why is Presto Player adding 30 requests to the page?Thanks for following up. Those requests are from your YouTube subscribe button which is in the action bar. In order to remove those youll want to remove the subscribe button. We don’t have any control over these requests, since YouTube loads these when the button is displayed.
Forum: Plugins
In reply to: [Presto Player] Public Videos Don’t Work After UpdateJust responded via email, but I’m posting here in case someone else has this issue.
Deactivating and reactivating Breeze seems to have solved the problem. I know a lot of users were having issues with Breeze after the latest update, so I think deactivating and reactivating force cleared the cache. Can you take a look?
Forum: Plugins
In reply to: [Presto Player] Public Videos Don’t Work After UpdateAh, okay great! Glad it’s solved.
It’s always caching, isn’t it? 😅
Thanks! I got the email. It looks like it’s a browser restriction with vimeo. Chrome will not allow autoplaying videos with sound depending on if you’ve interacted with the domain before and something called a Media Engagement Index:
https://developers.google.com/web/updates/2017/09/autoplay-policy-changes#mei
It could be that the media engagement index for your domain has not been reached yet, so autoplay won’t work yet. This doesn’t always happen with Vimeo directly since the click is happening on Vimeo iframe and not our player.
Let me know if this makes sense.
Forum: Plugins
In reply to: [Presto Player] Public Videos Don’t Work After UpdateDo you have varnish running? You may need to clear your varnish caching on Cloudways.
It seems the scripts are still reordered for non-logged in users:
https://share.getcloudapp.com/Jru40PRD
Can you reach out to [email protected]? We may need to take a closer look at your caching setup.
Forum: Plugins
In reply to: [Presto Player] Why is Presto Player adding 30 requests to the page?It looks like WPRocket is trying to lazy load our youtube video. Those youtube requests are not coming from us, but the lazy loading module. You’ll need to disable that plugin’s functionality and the number of requests will reduce significantly. It’s not needed for our player since we don’t load anything until the user clicks play.
Forum: Plugins
In reply to: [Presto Player] Why is Presto Player adding 30 requests to the page?I’m not seeing 500kb anywhere – looking at the waterfall, I’m seeing 239k from Presto Player:
Forum: Plugins
In reply to: [Presto Player] Why is Presto Player adding 30 requests to the page?Hi There,
Thanks for reaching out. We load parts of our player this way on purpose, which is actually much better for performance. Instead of bundling the entire javascript file into one big file, we instead load different parts of the file, based on what javascript you are using. This means, you don’t need to load all the Vimeo video logic, if you’re using a self-hosted video for example.
Since you’re running http2, this is also a good thing, since these are requested simultaneously. You can see this in your waterfall:
https://share.getcloudapp.com/NQuw6wL7
The number of requests is not really what needs to be optimized anymore with http2. In fact, it’s not even audited anymore on GTMetrix if you’re running http2.
Forum: Plugins
In reply to: [Presto Player] Customize Youtube Play ButtonHi Nik!
Our player is wrapped in a web component, which uses style encapsulation via the “Shadow Dom”. This prevents your theme stylesheet from overwriting and breaking the player styles.
Instead, you can use shadow parts and css variables to target specific parts of the player. What specifically are you looking to customize?
- This reply was modified 5 years ago by Andre Gagnon. Reason: fix spelling
Forum: Plugins
In reply to: [Presto Player] Public Videos Don’t Work After UpdateIt does look like scripts are being reordered still. You can see the HurryTimer is throwing a javascript error because that’s out of order too.
I think there’s still something cached for non-logged in users happening here, but I don’t know enough about your server to help you clear it.
Do you also have cloudflare running? Maybe caching is happening there.