programmin
Forum Replies Created
-
Forum: Reviews
In reply to: [10WebPlayer] Works well looks niceI agree it looks nice but I found that it is set to break word so you end up getting li
nes that do not make very much sen
se
like that. What I’m asking is, did you have to build specific custom styles to fix things like this when you use this plugin or did you use the standard styles? just curious.
Forum: Plugins
In reply to: [10WebPlayer] Youtube playlist is extremely slow and makes the page useless.Thanks for checking into this! Any chance I can test the fixed version of the plugin soon?
Forum: Plugins
In reply to: [10WebPlayer] Youtube playlist is extremely slow and makes the page useless.It was having significant issue with or without the cache set. The minute or so loading time was reduced by those three changed lines in the source code as noted above. Have you brought that to the attention of the developers? Also can you set it to use admin-ajax.php rather than calling up the entire page on an ajax request to page back/forth?
Forum: Plugins
In reply to: [10WebPlayer] Youtube playlist is extremely slow and makes the page useless.One other thing I notice, is that the ajax loading left and right keeps requesting and receiving an entire page – so the header, the footer, all shortcodes in the page, have to be rendered out and output to the browser, just to page to the next page in a Youtube playlist. Any chance there is a way to make a lighter faster admin-ajax.php call?
Forum: Plugins
In reply to: [10WebPlayer] Youtube playlist is extremely slow and makes the page useless.I may have found a partial fix, in your frontend_ytwd.php if you just limit the number of items it fetches it is much faster:
else{ delete_transient("ytwd_data_f_p_".$youtube_id); $count = 0; while($nextPageToken && $count < 5 ) { $data = $this->get_gallery_data($api_data, $row->embed_type, $youtube_id, $row->channel_identifer, $nextPageToken); $nextPageToken = isset($data["nextPageToken"]) ? $data["nextPageToken"] : false; $all_data[] = $data; $count++; } }Maybe this section isn’t even needed as it is still fetching 8 per page.
Is Fusion Builder something that extends wp-statistics and expects to use the jqplot library? If so I see the same issue and so will others who extended the wp-statistics behavior… hope we can have jqplot back or at least an option to use it.
Duplicate of https://wordpress.org/support/topic/tracking-downloads-5/ ?
Forum: Plugins
In reply to: [10WebPlayer] Youtube playlist is extremely slow and makes the page useless.Please reference Web Dorado Support Ticket #139916, thanks.
Only if it is a WordPress request, for starters… Generally uploads are directly linked from wp-content/uploads though you could redirect to it.
Same thing here, that version of PHP does not allow [array] syntax but only array() syntax. This seems like a big problem that could be solved by just a few characters…
I have used it with PHP7 and it didn’t crash or bring down the site, what warnings specifically are you concerned about? What happens when you try it?
#1 You could investigate by looking at wp_statistics_pages etc tables in your database.
#2 Generally http requests for some image upload, would not even trigger WordPress php to run, so no.
#3 You could test that theory out I don’t know much about their code to tell you.If you look at your wp_statistics_pages and similar tables this makes you’ll see they only store the day. Looks like wp_statistics_visitor is the only one that stores a last visited timestamp.
Come to think of it that is probably why the statistics are off by one – last (n) days would not make sense if you included those logged today, which we only have partial information and logs are being added to today’s date in the logs?
https://wordpress.org/support/topic/the-statistics-are-one-day-off/
Forum: Plugins
In reply to: [DevBuddy Twitter Feed] Exception can break the page, version 4.0.0This may be only when the twitter page linked is “protected”? Can we have this exception fixed?
I’m still noticing seconds of cpu time rendering the forms on mobile device using version 3.1.4.
On the topic of resource utilization I also noticed this plugin is quite hefty – 21MB is about as large as all of WordPress itself! Any chance the 5mb of assets folder and other items could be on a CDN so users don’t have as much risk of copy failure while installing or upgrading?