Page 1 of 2
2.0 version
PostPosted: 13 Oct 2016, 00:36
by jcom
Can we get a sneak peak of the new features for 2.0? Is it improving all the issues with the mobile version? In some browsers is not working properly, in my case 80% of my users come from mobile..
thanks
Re: 2.0 version
PostPosted: 13 Oct 2016, 00:58
by Jason
We haven't yet announced the full feature set for v2.0, but the mobile version is being improved.
Re: 2.0 version
PostPosted: 13 Oct 2016, 03:29
by jcom
Jason wrote:We haven't yet announced the full feature set for v2.0, but the mobile version is being improved.
when do you think we'll have the 2.0 version ready to download?
Re: 2.0 version
PostPosted: 16 Oct 2016, 03:04
by jcom
Is it going to be PHP 7.0 compatible?
Re: 2.0 version
PostPosted: 16 Oct 2016, 03:55
by Jason
jcom wrote:Is it going to be PHP 7.0 compatible?
It should already work as long as you are using MySQLi. Are you having problems?
Re: 2.0 version
PostPosted: 20 Dec 2016, 10:32
by fifafy
When can we expect 2.0?
Re: 2.0 version
PostPosted: 23 Dec 2016, 04:14
by Death
When will 2.0 be available for download?
Re: 2.0 version
PostPosted: 23 Dec 2016, 04:21
by Death
Release data for 2.0 is December 27th so I've learned.
Re: 2.0 version
PostPosted: 27 Dec 2016, 04:54
by CAlchin
Installed 2.0 however it appears not to be showing up in xenforo. Anyone else had this issue?
Re: 2.0 version
PostPosted: 27 Dec 2016, 12:19
by Jason
CAlchin wrote:Installed 2.0 however it appears not to be showing up in xenforo. Anyone else had this issue?
Responded to your ticket. We'll get it figured out. It may be related to the XenForo cached sessions problem.
Re: 2.0 version
PostPosted: 27 Dec 2016, 17:50
by jcom
Hello Jason,
into the integrations.php file, how can we get the profile link if our site structure it's not by id but by username?
- Code: Select all
function get_link($link, $user_id)
{
global $base_url;
return $base_url . '../users.php?id=' . $link;
}
example: .com/username or .com/jason
Thank you
Re: 2.0 version
PostPosted: 27 Dec 2016, 18:04
by Jason
jcom wrote:Hello Jason,
into the integrations.php file, how can we get the profile link if our site structure it's not by id but by username?
- Code: Select all
function get_link($link, $user_id)
{
global $base_url;
return $base_url . '../users.php?id=' . $link;
}
example: .com/username or .com/jason
Thank you
Change all:
- Code: Select all
" . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_USERID . " link
to:
- Code: Select all
" . TABLE_PREFIX . DB_USERTABLE . "." . DB_USERTABLE_NAME. " link
Then $link will return the username.
Re: 2.0 version
PostPosted: 27 Dec 2016, 18:55
by jcom
Much appreciated Jason.
Re: 2.0 version
PostPosted: 28 Dec 2016, 05:16
by NImpallomeni
Hi sirs,
i dont get my avatars displayed near the usernames.. how can i fix it?
Thanks a lot!
Nick
Re: 2.0 version
PostPosted: 29 Dec 2016, 04:42
by THeringa
I'm missing the option under General Features where you can add a 'Chat Tab on Mobile Devices'. How can I bring back this feature?
Re: 2.0 version
PostPosted: 29 Dec 2016, 04:48
by THeringa
And the link to /arrowchat/mobile is not working anymore. Hoe can I fix this?
Re: 2.0 version
PostPosted: 01 Jan 2017, 05:24
by THeringa
Anyone?
Re: 2.0 version
PostPosted: 03 Jan 2017, 01:02
by Martok
THeringa wrote:And the link to /arrowchat/mobile is not working anymore. Hoe can I fix this?
Is there any error when you visit that URL?
Make sure you have uploaded the .htaccess file (in the root of the arrowchat folder). I missed this initially (easily done especially when using a Mac) and that prevented the mobile chat from working until it was uploaded.
Re: 2.0 version
PostPosted: 04 Jan 2017, 03:19
by THeringa
Just a normal 404.
I've checked the .htaccess file and the mobile chat is supposed to be located at /public/mobile, but this folder is missing in the zip file all together. I've uploaded the old /mobile folder from a previous version and this seems to be working.
Still looking for a way to bring back the chat tab on mobile though.
Re: 2.0 version
PostPosted: 04 Jan 2017, 13:14
by Jason
THeringa wrote:Just a normal 404.
I've checked the .htaccess file and the mobile chat is supposed to be located at /public/mobile, but this folder is missing in the zip file all together. I've uploaded the old /mobile folder from a previous version and this seems to be working.
Still looking for a way to bring back the chat tab on mobile though.
Mobile chat is no longer available on the kick starter package due to rising costs. However, you can use the old version by doing exactly what you did. You can change the includes/edition.php file from starter to premium in order to get the floating tab option.