Changeset 1478492
- Timestamp:
- 08/19/2016 08:10:25 AM (10 years ago)
- Location:
- socketizer/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/class-com-socketizer-admin.php (modified) (5 diffs)
-
com-socketizer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
socketizer/trunk/README.txt
r1473617 r1478492 4 4 Tags: live, realtime, websockets, async, load, refresh 5 5 Requires at least: 3.0.1 6 Tested up to: 4. 5.36 Tested up to: 4.6 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 68 68 == Changelog == 69 69 70 = 1.1.0 = 71 * Non blocking requests to remote service. The plugin should now be completely asynchronous 72 * Switch to HTTP v1.1 73 70 74 = 1.0.0 = 71 75 Initial release 72 76 73 77 == Upgrade Notice == 78 = 1.1.0 = 79 No further actions required 80 74 81 = 1.0.0 = 75 82 No further actions required - first public release -
socketizer/trunk/admin/class-com-socketizer-admin.php
r1473617 r1478492 206 206 ); 207 207 $url = $this->socketizer_service_url . 'cmd/client/refresh/post/'; 208 wp_remote_post( $url, array( 'body' => json_encode( $args ) ) ); 208 wp_remote_post( $url, array( 209 'httpversion' => '1.1', 210 'blocking' => false, 211 'body' => json_encode( $args ) 212 ) ); 209 213 } 210 214 } … … 236 240 'commentId' => (string) $comment_id, 237 241 ); 238 wp_remote_post( $url, array( 'body' => json_encode( $args ) ) ); 242 wp_remote_post( $url, array( 243 'httpversion' => '1.1', 244 'blocking' => false, 245 'body' => json_encode( $args ) 246 ) ); 239 247 } 240 248 } … … 264 272 ); 265 273 $url = $this->socketizer_service_url . 'cmd/client/refresh/post/'; 266 wp_remote_post( $url, array( 'body' => json_encode( $args ) ) ); 274 wp_remote_post( $url, array( 275 'httpversion' => '1.1', 276 'blocking' => false, 277 'body' => json_encode( $args ) 278 ) ); 267 279 } 268 280 } … … 296 308 ); 297 309 $url = $this->socketizer_service_url . 'cmd/client/refresh/post/'; 298 wp_remote_post( $url, array( 'body' => json_encode( $args ) ) ); 310 wp_remote_post( $url, array( 311 'httpversion' => '1.1', 312 'blocking' => false, 313 'body' => json_encode( $args ) 314 ) ); 299 315 } 300 316 } … … 325 341 ); 326 342 $url = $this->socketizer_service_url . 'cmd/client/refresh/post/'; 327 wp_remote_post( $url, array( 'body' => json_encode( $args ) ) ); 343 wp_remote_post( $url, array( 344 'httpversion' => '1.1', 345 'blocking' => false, 346 'body' => json_encode( $args ) 347 ) ); 328 348 } 329 349 } -
socketizer/trunk/com-socketizer.php
r1473617 r1478492 17 17 * Plugin URI: https://socketizer.com 18 18 * Description: Your web in real time. Painful Websockets - WordPress integration, no coding skills required! 19 * Version: 1. 0.019 * Version: 1.1.0 20 20 * Author: Stef Kariotidis 21 21 * Author URI: https://socketizer.com
Note: See TracChangeset
for help on using the changeset viewer.