Help
Discuss or request ArrowChat modifications
User avatar
dbarreca
Customer
 
Posts: 61
Joined: 30 Sep 2010, 03:58

 

by dbarreca 17 Jan 2011, 00:53

hi, I wanted to ask if it was possible to insert photos of people when you chat ... I enclose an example
You do not have the required permissions to view the files attached to this post.
User avatar
dbarreca
Customer
 
Posts: 61
Joined: 30 Sep 2010, 03:58

 

by dbarreca 20 Jan 2011, 03:01

news????
User avatar
MMurataj
Customer
 
Posts: 6
Joined: 12 May 2010, 08:57

 

by MMurataj 04 Mar 2011, 13:15

i would like this function too
User avatar
MMoazzeni
Customer
 
Posts: 4
Joined: 06 Aug 2011, 04:15

 

by MMoazzeni 12 Oct 2011, 03:25

im using vldpersonals and integrate with arrowchat its show no_avatar for all users how i can integrate to show profile picture :-( please help me
User avatar
Jason
Customer
 
Posts: 2356
Joined: 12 Dec 2009, 16:06

 

by Jason 12 Oct 2011, 04:23

This feature is coming! :)
User avatar
MMoazzeni
Customer
 
Posts: 4
Joined: 06 Aug 2011, 04:15

 

by MMoazzeni 12 Oct 2011, 05:06

waiting for ...
tanx friend.
User avatar
MKhan
Customer
 
Posts: 1
Joined: 07 Mar 2012, 01:27

 

by MKhan 07 Mar 2012, 22:16

Hi what is expected date of release of this feature, or is it available in any update?
I recently installed arrow chat on my phpfox site.

Please let me know I want this
User avatar
Jason
Customer
 
Posts: 2356
Joined: 12 Dec 2009, 16:06

 

by Jason 07 Mar 2012, 23:09

MKhan wrote:Hi what is expected date of release of this feature, or is it available in any update?
I recently installed arrow chat on my phpfox site.

Please let me know I want this

v1.5, releasing soon (March).
User avatar
DRusch
Customer
 
Posts: 3
Joined: 06 Mar 2012, 18:58

 

by DRusch 10 Mar 2012, 18:31

Wich date will it be released in march?
User avatar
RMrsic
Customer
 
Posts: 1
Joined: 15 Dec 2011, 03:17

 

by RMrsic 13 Mar 2012, 18:35

I resolve this problem easy calling esternal php file in function_recive.php

Code: Select all
function getAvatar($image, $user_id) {
    if (is_file(dirname(dirname(__FILE__)).'/images/'.$image.'.gif')) {
        return 'images/'.$image.'.gif';
    } else {
        return 'http://yourdomain.com/user/thumb.php?img='.$user_id;
    }
}


Then just thumb.php make record to your user and

Code: Select all
if($row['thumb'] != ''){
header('Content-Type: image/gif');
readfile('images/no_thumb.gif');


}else{
header('Content-Type: image/jpeg');
readfile('images/profil/'.$row['thumb']);
}



I hope that Help Sombody
User avatar
Staff Bot
ArrowChat Team
 
Posts: 8996
Joined: 07 Nov 2012, 13:41

 

by Staff Bot 07 Nov 2012, 12:40

This thread has been locked because the last post is greater than six months old. There is a good chance that the information in this thread is outdated. Please open a new topic if you wish to discuss this further.