Changeset 1422424
- Timestamp:
- 05/23/2016 03:45:13 PM (10 years ago)
- Location:
- activehelper-livehelp/trunk
- Files:
-
- 6 edited
-
activehelper-livehelp.php (modified) (2 diffs)
-
readme.txt (modified) (5 diffs)
-
server/push-notify-msg.php (modified) (2 diffs)
-
server/push-notify.php (modified) (1 diff)
-
sources/livehelp_agents.php (modified) (3 diffs)
-
sources/livehelp_lib-install.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
activehelper-livehelp/trunk/activehelper-livehelp.php
r1365879 r1422424 6 6 Plugin Name: ActiveHelper Live Help 7 7 Plugin URI: http://www.activehelper.com 8 Description: Provide superior service by real time chat with your website visitors and interact them through your website. Create a more efficient connection with your website visitors, increase your sales and customer satisfaction.9 Version: 4. 0.08 Description: Provide superior service by real time live chat with your website visitors and interact them through your website. Create a more efficient connection with your website visitors, increase your sales and customer satisfaction. 9 Version: 4.1.0 10 10 Author: ActiveHelper Inc 11 11 Author URI: http://www.activehelper.com … … 807 807 ' . __('Version : ', 'activehelper_livehelp') . ' 808 808 </td><td class="b"> 809 ' . __('4. 0.0', 'activehelper_livehelp') . '809 ' . __('4.1.0', 'activehelper_livehelp') . ' 810 810 </td></tr></tbody></table> 811 811 <table><tbody><tr><td class="first t"> -
activehelper-livehelp/trunk/readme.txt
r1365879 r1422424 1 1 === ActiveHelper LiveHelp Live Chat=== 2 2 Contributors: activehelper 3 Tags: wordpress livechat, live chat, live help, live support, chat plugin, visitor tracking, visitor chat, phone live chat3 Tags: wordpress livechat, wp chat, live chat, live help, live support, chat plugin, visitor tracking, visitor chat, phone live chat 4 4 Requires at least: 3.2 5 Tested up to: 4. 4.26 Stable tag: 4. 0.05 Tested up to: 4.5.2 6 Stable tag: 4.1.0 7 7 8 8 Wordpress Live Chat plugin. Manage all your wordpress sites from your desktop or mobile. … … 10 10 == Description == 11 11 12 Live Chat- Live chat plugin software. Worpress Live chat allows to engage website visitors to contact you in real-time to your computer desktop or mobile device.13 14 The ActiveHelper Live Chat Plugin is available for WordPress 3.2x, to 4.4x.15 16 WordPress LiveChat Plugin is the most affordable and scalable Live Chat. ActiveHelper Live Chat System is perfect for small and medium WordPress sites. Answer Live chats from any location, Desktop and mobile are included, Windows and Mac, IOS and Android too.12 WordPress Live Chat Plugin - Live chat plugin software. Worpress Live chat allows to engage website visitors to contact you in real-time to your computer desktop or mobile device. 13 14 The ActiveHelper WP Live Chat Plugin is available for WordPress 3.2x, to 4.5x. 15 16 WordPress Chat Plugin is the most affordable and scalable Live Chat. ActiveHelper Live Chat System is perfect for small and medium WordPress sites. Answer Live chats from any location, Desktop and mobile are included, Windows and Mac, IOS and Android too. 17 17 18 18 Monitor in real time your website visitors. Know how many visitors are in the website, who referred, where are from, what keywords we reused to find the website and the visitors navigation history. Know decisive information of your website visitors patterns, conversations and agents service. … … 77 77 * Live chat Responsive design 78 78 * Floating chat button 79 * Push notification for IOS and Android app 80 * Live Chat Server as WordPress Plugin 79 81 80 82 … … 358 360 * Other small improvements and bug fixes. 359 361 362 = 4.1.0 = 363 * Enhanced Push Notification support. 364 * Enhanced mobile support. 365 * Support Wordpress 4.5.x 366 * Core Update. 367 * Core Security update. 368 * Other small improvements and bug fixes. 360 369 361 370 Upgrade: … … 582 591 * Core Security update. 583 592 * Other small improvements and bug fixes. 593 594 = 4.1.0 = 595 * Enhanced Push Notification support. 596 * Enhanced mobile support. 597 * Support Wordpress 4.5.x 598 * Core Update. 599 * Core Security update. 600 * Other small improvements and bug fixes. 601 -
activehelper-livehelp/trunk/server/push-notify-msg.php
r1365879 r1422424 19 19 20 20 21 $query =" SELECT lu.device_id , lu.device, lm.id , lm.message ".21 /* $query =" SELECT lu.device_id , lu.device, lm.id , lm.message ". 22 22 " FROM " . $table_prefix . "sessions ls , " . $table_prefix . "users lu , " . $table_prefix . "messages lm ". 23 23 " WHERE ls.active in(1,2) and ls.id_user = lu.id and ". 24 24 " lu.device_id <> '' and ls.id = lm.session and lm.delivered = 0 and ((UNIX_TIMESTAMP(NOW()))- (UNIX_TIMESTAMP(lm.datetime)) )< 60"; 25 */ 26 27 // New condition to always notify by push 28 29 $query =" SELECT lu.device_id , lu.device, lm.id , lm.message ". 30 " FROM " . $table_prefix . "sessions ls , " . $table_prefix . "users lu , " . $table_prefix . "messages lm ". 31 " WHERE ls.active in(1,2) and ls.id_user = lu.id and ". 32 " lu.device_id <> '' and ls.id = lm.session and lm.delivered = 0"; 25 33 26 //error_log("SQL : " . $query ."\n" , 3 ,"push_message.log");34 //error_log("SQL : " . $query ."\n" , 3 ,"push_message.log"); 27 35 28 36 $rows = $SQL->selectall($query); 37 $msg_sound = 2; 29 38 30 39 foreach ($rows as $key => $row) … … 39 48 { 40 49 if ($push_device=="IOS") { 41 $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" ;50 $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" . "&sound=" . "$msg_sound" ; 42 51 } 43 52 else 44 53 if ($push_device=="Android") { 45 $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" ;54 $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message=" . "$new_msg_arrives" . "$message" . "&sound=" . "$msg_sound" ; 46 55 } 47 56 -
activehelper-livehelp/trunk/server/push-notify.php
r1365879 r1422424 73 73 $push_user_device = $rowu['device_id']; 74 74 $push_device = $rowu['device']; 75 75 $msg_sound = 1; 76 76 77 if ($push_device=="IOS") { 77 $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message=" . "$chat_request" . "$push_username" ;78 $call_URL = $push_api_path . "notify_ios.php?token=".$push_user_device. "&message=" . "$chat_request" . "$push_username" . "&sound=" . "$msg_sound" ; 78 79 } else 79 80 80 81 if ($push_device=="Android") { 81 $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message=" . "$chat_request" . "$push_username" ;82 $call_URL = $push_api_path . "notify_android.php?token=".$push_user_device. "&message=" . "$chat_request" . "$push_username" . "&sound=" . "$msg_sound" ; 82 83 } 83 84 -
activehelper-livehelp/trunk/sources/livehelp_agents.php
r1365879 r1422424 2 2 /** 3 3 * @package ActiveHelper Live Help 4 * @Version 3.5.04 * @Version 4.1.0 5 5 * @Autor ActiveHelper Inc 6 6 */ … … 439 439 } 440 440 441 $now_time = current_time( 'mysql', false ); 442 441 443 $wpdb->query(" 442 444 UPDATE {$wpdb->prefix}livehelp_users … … 448 450 email = '{$_POST['agent_email']}', 449 451 department = '{$_POST['agent_department']}', 452 datetime = '{$now_time}', 453 refresh = '{$now_time}', 450 454 privilege = '{$_POST['agent_privilege']}', 451 455 answers = '{$_POST['agent_answers']}', -
activehelper-livehelp/trunk/sources/livehelp_lib-install.php
r1365879 r1422424 2 2 /** 3 3 * @package ActiveHelper Live Help 4 * @Version 4. 0.04 * @Version 4.1.0 5 5 */ 6 6 … … 1051 1051 1052 1052 $database_version = "4.0.0"; 1053 } 1054 1055 if ($database_version == "4.0.0") { 1056 $database_version = "4.1.0"; 1053 1057 } 1058 1059 1054 1060 } 1055 1061
Note: See TracChangeset
for help on using the changeset viewer.