Changeset 1466179
- Timestamp:
- 08/02/2016 01:46:44 PM (10 years ago)
- Location:
- ustream-status
- Files:
-
- 4 edited
-
tags/3.0.0/readme.txt (modified) (1 diff)
-
tags/3.0.0/ustreamstatus.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/ustreamstatus.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ustream-status/tags/3.0.0/readme.txt
r1466175 r1466179 102 102 = How can I check if Ustream server is working or not? = 103 103 104 In order to check if Ustream service itself is working or not, you could directly ping their server by going to105 106 http://api.ustream.tv/php/channel/XXXX/getValueOf/status107 108 Replace the last "XXXX" to your account ID (e.g., YokosoNews) when you're live. You should be able to see like `s:4:"live";`, in your browser.109 110 104 If you're still having problem getting the status, you can think of the following situation 111 105 112 - You mistyped your Ustream channel ID106 - You mistyped your Ustream channel 113 107 - You mistyped the wrong URL of images 114 108 - Ustream Server may be having some problem. -
ustream-status/tags/3.0.0/ustreamstatus.php
r1466167 r1466179 143 143 break; 144 144 default: 145 echo_e('Error occured. We could not retrieve the data from Ustream.');145 _e('Error occured. We could not retrieve the data from Ustream.'); 146 146 break; 147 147 } … … 210 210 break; 211 211 default: 212 $output = _ e('Error occured. We could not retrieve the data from Ustream.');212 $output = __('Error occured. We could not retrieve the data from Ustream.'); 213 213 break; 214 214 } -
ustream-status/trunk/readme.txt
r1466175 r1466179 102 102 = How can I check if Ustream server is working or not? = 103 103 104 In order to check if Ustream service itself is working or not, you could directly ping their server by going to105 106 http://api.ustream.tv/php/channel/XXXX/getValueOf/status107 108 Replace the last "XXXX" to your account ID (e.g., YokosoNews) when you're live. You should be able to see like `s:4:"live";`, in your browser.109 110 104 If you're still having problem getting the status, you can think of the following situation 111 105 112 - You mistyped your Ustream channel ID106 - You mistyped your Ustream channel 113 107 - You mistyped the wrong URL of images 114 108 - Ustream Server may be having some problem. -
ustream-status/trunk/ustreamstatus.php
r1466167 r1466179 143 143 break; 144 144 default: 145 echo_e('Error occured. We could not retrieve the data from Ustream.');145 _e('Error occured. We could not retrieve the data from Ustream.'); 146 146 break; 147 147 } … … 210 210 break; 211 211 default: 212 $output = _ e('Error occured. We could not retrieve the data from Ustream.');212 $output = __('Error occured. We could not retrieve the data from Ustream.'); 213 213 break; 214 214 }
Note: See TracChangeset
for help on using the changeset viewer.