• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.

Search results

  1. T

    RESOLVED 3rd Part Shortcodes stopped working

    Hi Temyk, Yes, that makes sense. I used another player and it worked fine. Thanks for your great support. Appreciate it.
  2. T

    RESOLVED 3rd Part Shortcodes stopped working

    Hi Temyk, The "?>" was left over from the suggestion from: I didnt know I should remove it. Ok removing "?>" does pop up the FV Player now. But the FV Player itself is acting different then if I just use it's own shortcode. There appears to be some formatting issues, the progress bar...
  3. T

    RESOLVED 3rd Part Shortcodes stopped working

    Temyk, I don't doubt it. I'd appreciate any of your insight.
  4. T

    RESOLVED 3rd Part Shortcodes stopped working

    Bear with me, I'm new to this. I do see a typo, so I copy and pasted what you had added: echo "<p>"; echo do_shortcode("[fvplayer src='https://mystreaming.serversurl.com:443/live/new/playlist.m3u8?token={$token}']"); now it does pop up the FV Player but again w/ no token and we see this on the...
  5. T

    RESOLVED 3rd Part Shortcodes stopped working

    argggh! Still not working. I added the above and I get the following on the page, so it just prints it out, instead of launching the shortcode: echo do_shortcode("[fvplayer src='https://mystreaming.serversurl.com:443/live/new/playlist.m3u8?token=5f62a59f2bd7c']");
  6. T

    RESOLVED 3rd Part Shortcodes stopped working

    Hi Temyk, Thanks. I tried that, I turned of the execution of shortcodes in snippets - and that did make it so that the token was added to the end of the url, in the variable, but then the shortcode was not executed, and I see this on the page, rather then the Player: [fvplayer...
  7. T

    RESOLVED 3rd Part Shortcodes stopped working

    This is what the Streaming Server receives: WARN server comment - HTTPStreamerAdapterCupertinoStreamer.onPlaylist[live/new/playlist.m3u8?token=]: Session not accepted[308447569] the token variable never get's populated.
  8. T

    RESOLVED 3rd Part Shortcodes stopped working

    HI Temyk, Thanks. You're on to something here. So that does launch the FV Player shortcode, but my variable $token, no longer populates. I can see in my Streaming Server logs the Player coming in with no token and getting rejected because of this. In your code change above, you added...
  9. T

    RESOLVED 3rd Part Shortcodes stopped working

    That was it! Just that. but I've gone ahead and made it easier, using the built in Wordpress shortcodes, I was able to reproduce it. Here are the steps. In Woody Ad Snippets create a new php snippet with just this in it: echo '<p>[audio...
  10. T

    RESOLVED 3rd Part Shortcodes stopped working

    Hi, here it is: add_shortcode( 'shortcode_name', function () { $out = '<p>write your HTML shortcode content here</p>'; return $out; } ); Thanks
  11. T

    RESOLVED 3rd Part Shortcodes stopped working

    Sorry for the long delay, based in Oregon and had to deal with a level 2 evacuation. Things are looking better, so I was able to test. I'm attaching the debug.log output from when I was trying to access the page and received the 503 Service Unavailable The server is temporarily unable to...
  12. T

    RESOLVED 3rd Part Shortcodes stopped working

    So do you mean make a snippet like this: add_shortcode( 'shortcode_name', function () { $out = '<p>write your HTML shortcode content here</p>'; return $out; } ); and then I make another snippet that uses that shortcode, so like this: echo "<p>[shortcode_name]"; When I did that...
  13. T

    RESOLVED 3rd Part Shortcodes stopped working

    Hi Temyk, Probably always sage advise :). I turned it On, but now my site gives me a 503 when I go to the page that uses that snippet. Here is the error message I get: Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity...
  14. T

    RESOLVED 3rd Part Shortcodes stopped working

    Hello, I was using Woody snippets to add a token to our video player, FV Player. The code has been working for sometime. It creates a unique token an appends it to the end of the URL that is given in a FV Player's shortcode. This has been working for a few months. Then all of a sudden...