By Altitudes on Thursday, 05 March 2015
Posted in Technical Issues
Replies 21
Likes 0
Views 511
Votes 0
Hello,

Since my update from ES 1.3.19 to 1.3.20, I'm having several issues. I updated again carefully to check that everything went fine during install, but issues are still there.

In the backend, I'm getting a blanck page when:
- I click on a user in the user list to edit it
- After editing a group, when I click the Save button

My Browse Users menu had also disappeared from Dropdown Menu (frontend), but I managed to get it back by editing the Theme in backend and saving it (without any change).

In the frontend, I'm unable to post a status in a group (see attached snapshot).

Thank you
Hello Altitudes,

Hm, I need to re-look into this again. I was under the assumption that the new input library would actually work on Joomla 2.5 as well. Will run some more tests and check on this.
·
Thursday, 19 March 2015 02:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

I am sorry for the late reply.
I have helped you fix this issue on your site. About the edit profile, it just a compatibility issue and this fix will be included in the next releases.

Regarding this issue,
in the frontend, I'm unable to post a status in a group (see attached snapshot)
.
I have put a fix on your site. Can you try this again is this again and see if this issue is fixed.

Please advise and hope this works.
·
Thursday, 05 March 2015 20:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you.

The issue on user modification in backend is fixed, but other issues (group modification and post in group) are not...
·
Thursday, 05 March 2015 20:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

I have helped you fix this issue. It seems like it is a compatibility issue between Joomla 2.5.x and Joomla 3.x . Can you verify this issue is fixed on your site?

Please advise.
·
Friday, 06 March 2015 01:23
·
0 Likes
·
0 Votes
·
0 Comments
·
I tested again:

- Post status in a group with a user member of the group: OK
- Post status in a group with a admin (not member of the group): not working too well... you need to reload the page after posting
- Edit group in backend: KO, still not working (blank page after save)
·
Friday, 06 March 2015 02:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

I am really sorry for the delayed reply. Regarding your inquiry,
Edit group in backend: KO, still not working (blank page after save)

I have apply some fix on your site. It is just a compatibility issue. Can you verify this issue is fixed?

Post status in a group with a admin (not member of the group): not working too well... you need to reload the page after posting

After a some time debugging, I believe it is a bug from our end. I am really sorry. We'll addressed this bug in the next releases.

I am really sorry for the inconvenience caused.
·
Friday, 06 March 2015 18:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you.

Editing group from backend is now OK.
·
Friday, 06 March 2015 18:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

Thank for getting back to us. I am glad to hear your issue is now resolved.

As for the stream issue, we'll addressed this bug in the next releases.

Thanks.
·
Friday, 06 March 2015 18:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

Regarding this issue,
Post status in a group with a admin (not member of the group): not working too well... you need to reload the page after posting

Here I have attached to you 4 files to fix this issue. Please download this and put this files in your site here:
.../administrator/components/com_easysocial/includes/stream/stream.php
.../components/com_easysocial/controllers/story.php
.../components/com_easysocial/views/story/view.ajax.php
.../components/com_easysocial/views/stream/view.html.php

Please do update us back on this.
·
Friday, 06 March 2015 19:26
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Now I get an error for both a group member and an administrator of the site (not member of the group)
See attached snapshots.
·
Sunday, 08 March 2015 20:10
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

I am sorry for the delayed reply.
I have apply some fix on your site. It just a compatibility issue.

By the way, if anyone who has this issue, please go to this file: .../components/com_easysocial/controllers/story.php at line: 125, update the existing code with this code:

// Get posted data.
//$post = $this->input->post->getArray();
$post = JRequest::get('POST');


Can you verify this issue is fixed?
·
Monday, 09 March 2015 12:11
·
0 Likes
·
0 Votes
·
0 Comments
·
OK, this is working fine

Thank you
·
Monday, 09 March 2015 19:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

You're much welcome. If you have anymore question, please do ask us here.

Have a nice day.
·
Monday, 09 March 2015 23:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

All of these issues are back with ES 1.3.21...

·
Wednesday, 18 March 2015 21:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

Yes, you have to apply my colleague fix in your site again http://stackideas.com/forums/misc-issues-since-i-updated-to-es-1-3-20#reply-191125
In my opinion, you have to consider to upgrade your Joomla version to 3.x since Joomla do not provide any support in Joomla 2.5.
·
Thursday, 19 March 2015 00:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Upgrading to Joomla 3.x is in my roadmap

I'm sorry to say that ES is supposed to support Joomla 2.5 (as per http://docs.easysocial.io/administrators/welcome/getting_started or Joomla Extension Directory).
And supporting Joomla 2.5 means: you install it and it works. So I can't accept your answer. Those fixes should be included in your code, released to all your customers and work with all the Joomla versions you support.
·
Thursday, 19 March 2015 00:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

Yes, we are sorry that inconvenience caused this who using Joomla 2.5 user.

The reason why suddenly is not working is because Joomla 3.4 already changed their code library.

Example :

// Joomla 3.4 only support this now (new library)
$post = $this->input->post->getArray();

// but Joomla 2.5 only can support this (old library)
$post = JRequest::get('POST');


We will see if we can do something about this.
·
Thursday, 19 March 2015 00:55
·
0 Likes
·
0 Votes
·
0 Comments
·
I can understand that maintaining the compatibility with Joomla 2.5 means some additional work. But if you decide not to maintain it, you should tell your customers from which ES version (giving an approximate date!), so that they can plan their upgrade to Joomla 3.x if they are on Joomla 2.5 (and I guess that a lot of your customers are...).
That's what JomSocial is doing for example, as they announced that from JomSocial 4.2 all the legacy code would be removed.
·
Thursday, 19 March 2015 01:20
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Altitudes,

This issue has been resolved on the latest build. If you are still experiencing issues with this, please let me know.
·
Saturday, 21 March 2015 19:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you. It seems to be fine so far.
·
Saturday, 21 March 2015 20:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for updating
·
Sunday, 22 March 2015 04:37
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post