Page 1 of 1
photo
PostPosted: 17 Jan 2011, 00:53
by dbarreca
hi, I wanted to ask if it was possible to insert photos of people when you chat ... I enclose an example
Re: photo
PostPosted: 20 Jan 2011, 03:01
by dbarreca
news????
Re: photo
PostPosted: 04 Mar 2011, 13:15
by MMurataj
i would like this function too
PostPosted: 12 Oct 2011, 03:25
by MMoazzeni
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
PostPosted: 12 Oct 2011, 04:23
by Jason
This feature is coming! :)
PostPosted: 12 Oct 2011, 05:06
by MMoazzeni
waiting for ...
tanx friend.
PostPosted: 07 Mar 2012, 22:16
by MKhan
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
PostPosted: 07 Mar 2012, 23:09
by Jason
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).
PostPosted: 10 Mar 2012, 18:31
by DRusch
Wich date will it be released in march?
PostPosted: 13 Mar 2012, 18:35
by RMrsic
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
Topic Closed
PostPosted: 07 Nov 2012, 12:40
by Staff Bot
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.