Nicolas Bernier
Forum Replies Created
-
Forum: Reviews
In reply to: [Twitch Status] doesn’t workHi
Thanks for feedback
Too much requests should not happen because the data is stored in a cache file to avoid this.
Make sure WordPress has write permission on the plugin’s cache folder. Also, make sure the Twitch credentials (client ID, client secret and channel name) you provided are correct too.
- This reply was modified 4 years, 4 months ago by Nicolas Bernier.
Forum: Reviews
In reply to: [Twitch Status] Does Not WorkDid you set properly your Twitch app Client ID and secret ? This issue looks like a bad configuration.
Forum: Plugins
In reply to: [Twitch Status] Update not workingIt’s not used, you can leave it blank or just insert your website URL.
Forum: Plugins
In reply to: [Twitch Status] Update not working@ccrom Just follow the instructions here https://dev.twitch.tv/console/apps/create
Forum: Plugins
In reply to: [Twitch Status] Update not workingThe plugin is now fixed to support the new Twitch API (Helix).
Please upgrade to version 1.5.
You’ll have to create a Twitch application and set client ID and secret in Twitch Status’ settings to make it work again.
Forum: Plugins
In reply to: [Twitch Status] Update not workingHi
The plugin has not been updated yet for the new Twitch API. A fix in on the way.
Forum: Plugins
In reply to: [Twitch Status] Plugin not work after Server changeYou’re welcome 🙂
This was a configuration issue, this may fix a lot of problems.
Forum: Plugins
In reply to: [Twitch Status] Plugin not work after Server changeI double checked your configuration, change the directive allow_url_fopen to “On” (or 1) in your php.ini
- This reply was modified 9 years, 2 months ago by Nicolas Bernier.
Forum: Plugins
In reply to: [Twitch Status] Plugin not work after Server changeI checked your configuration, allow_url_fopen is set to off.
Try turning it on in your php.ini and try again.
- This reply was modified 9 years, 2 months ago by Nicolas Bernier.
- This reply was modified 9 years, 2 months ago by Nicolas Bernier.
Forum: Plugins
In reply to: [Twitch Status] Plugin not work after Server changeCan you please send me your phpinfo by email ?
nicolas.bernier (at) synagila.com
Forum: Plugins
In reply to: [Twitch Status] Plugin not work after Server changeHi
Try to chmod -R 0755 on your plugins folder, especially the “cache” folder or the plugin, it may be a dumb permission issue.
Forum: Plugins
In reply to: [Twitch Status] Admin-ajax.php is causing high loading timesThe plugin was designed for 1 stream initially so 60 may cause problems.
I will modify it to set a TTL accordingly to the number of streams. There is already a cron job to do this. What I will do is send the browser output in Ajax then let the script run in background to actually update the streams statuses. However this would require to allow no script time limit.
Forum: Plugins
In reply to: [Twitch Status] Insert MULTI-Twitch Online Status in NavigationHi
This is not planned ATM.
However you can create some custom javascript using the data provided by the plugin using in the
twitchStatusobject.Example
jQuery( document ).ready( function () { // Target where to append the Twitch online tag var target = jQuery('#menu-item-816'); var tag = jQuery('<span class="twitch-status-tag"></span>'); target.append(tag); setInterval(function() { // Modify the following to match the names of your channels if ( (twitchStatus.data.channelname1.status == 'online') || (twitchStatus.data.channelname2.status == 'online') || (twitchStatus.data.channelname3.status == 'online') ) { tag.removeClass( 'twitch-offline' ); tag.addClass( 'twitch-online' ); tag.html( twitchStatus.buttonHTML.online ); } else { tag.removeClass( 'twitch-online' ); tag.addClass( 'twitch-offline' ); tag.html( twitchStatus.buttonHTML.offline ); } }, 1000); });Forum: Plugins
In reply to: [Twitch Status] Icon Font ConflictsWell spotted
This will be fixed in the next release.
Thanks
Forum: Plugins
In reply to: [Twitch Status] User is online, but no video?It adapts automatically to 100% of its container width so if you want a fixed size, just nest it into a container with a fixed size.
<div style="width: 640px">[twitch-player channel="mychannelname" chat="true"]</div>