Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Latest Activity 1.6 not showing
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  14 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
munkee  
View profile  
 More options Aug 26 2009, 6:23 am
From: munkee <r.g.r...@gmail.com>
Date: Wed, 26 Aug 2009 03:23:00 -0700 (PDT)
Subject: Latest Activity 1.6 not showing
Hi all,

The following piece of code doesnt seem to be working in an upgrade
1.5 to 1.6 version of elgg. It just displays blank

This piece of code is called on the main unlogged in screen

<?php
// Load the latest content
        //$title = elgg_view_title(elgg_echo('content:latest'));
        set_context('search');
        $content = list_registered_entities(0,6,true,false,array
('object','group'));
      echo $content;
?>
</div>

Thanks for any help.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
munkee  
View profile  
 More options Aug 28 2009, 6:13 am
From: munkee <r.g.r...@gmail.com>
Date: Fri, 28 Aug 2009 03:13:30 -0700 (PDT)
Local: Fri, Aug 28 2009 6:13 am
Subject: Re: Latest Activity 1.6 not showing
Reported to Trac, as I've noticed that the same thing happens when you
do a fresh install and create a load of public content. Nothing
appears on the standard prelogged in page, this page is using code
which is like mine above.

See:
/elgg/dashboard/latest.php

https://trac.elgg.org/elgg/ticket/1198

On Aug 26, 11:23 am, munkee <r.g.r...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Jardine  
View profile  
 More options Aug 28 2009, 8:28 am
From: Kevin Jardine <kevinjard...@gmail.com>
Date: Fri, 28 Aug 2009 05:28:05 -0700 (PDT)
Local: Fri, Aug 28 2009 8:28 am
Subject: Re: Latest Activity 1.6 not showing
Strange, I've done a 1.5 to 1.6 upgrade and dashboard/latest.php
continues to display the latest content.

Are you getting anything in your error log about this, Munkee?

Kevin

On Aug 28, 12:13 pm, munkee <r.g.r...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
munkee  
View profile  
 More options Aug 28 2009, 11:08 am
From: munkee <r.g.r...@gmail.com>
Date: Fri, 28 Aug 2009 08:08:48 -0700 (PDT)
Local: Fri, Aug 28 2009 11:08 am
Subject: Re: Latest Activity 1.6 not showing
There's nothing in php_error_log - until I turn on debug mode, then
there too much info

Whats even stranger is I've upgraded a copy of our live version, and
that is working fine

Just the v1.6rc1 fresh, v1.6 fresh and v1.5 -> v1.6 student version
are showing blank information in Latest Activity

Even stranger when I turn on 'custom_index' I get all the indivdual
items showing in their seprate sections - they just dont want to show
together

On Aug 28, 1:28 pm, Kevin Jardine <kevinjard...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
munkee  
View profile  
 More options Aug 28 2009, 11:43 am
From: munkee <r.g.r...@gmail.com>
Date: Fri, 28 Aug 2009 08:43:35 -0700 (PDT)
Local: Fri, Aug 28 2009 11:43 am
Subject: Re: Latest Activity 1.6 not showing
After much testing...

These lines work:
$content = list_entities('group','',0,6,false, false, false);
$content = list_entities('object','file',0,10,false, false, false);

But this line which will show all activity and multipl pages, doesnt:
$content = list_registered_entities(0,6,true,false,array
('object','group'));

Is there another way around this ?

Regards.

On Aug 28, 4:08 pm, munkee <r.g.r...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Jardine  
View profile  
 More options Aug 28 2009, 12:09 pm
From: Kevin Jardine <kevinjard...@gmail.com>
Date: Fri, 28 Aug 2009 09:09:25 -0700 (PDT)
Local: Fri, Aug 28 2009 12:09 pm
Subject: Re: Latest Activity 1.6 not showing
The code I have in my 1.6 install is:

global $CONFIG;
$title = elgg_view_title(elgg_echo('content:latest'));
set_context('search');
$content = list_registered_entities(0,10,true,false,array
('object','group'));
set_context('latest');
$content = elgg_view_layout('two_column_left_sidebar', '', $title .
$content);
page_draw(elgg_echo('content:latest'), $content);

and this seems to work just fine for me.

Strange ...

On Aug 28, 5:43 pm, munkee <r.g.r...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Jardine  
View profile  
 More options Aug 28 2009, 12:11 pm
From: Kevin Jardine <kevinjard...@gmail.com>
Date: Fri, 28 Aug 2009 09:11:32 -0700 (PDT)
Local: Fri, Aug 28 2009 12:11 pm
Subject: Re: Latest Activity 1.6 not showing
Ah, but I have an upgrade, not a fresh install.

I'll try a fresh install.

On Aug 28, 6:09 pm, Kevin Jardine <kevinjard...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ThomasC  
View profile  
 More options Sep 7 2009, 1:12 pm
From: ThomasC <berkshire...@gmail.com>
Date: Mon, 7 Sep 2009 10:12:11 -0700 (PDT)
Local: Mon, Sep 7 2009 1:12 pm
Subject: Re: Latest Activity 1.6 not showing
Hello, I am having the same issue, do you know what may be wrong? I
installed a fresh 1.6 and I never saw anything on the latest acitivty
box.

What stranges me is that no many people are complaining so maybe it
has something to do with something I did wrong.

If this helps, the river works perfect.

Thanks!

On Aug 28, 1:11 pm, Kevin Jardine <kevinjard...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Jardine  
View profile  
 More options Sep 8 2009, 10:32 am
From: Kevin Jardine <kevinjard...@gmail.com>
Date: Tue, 8 Sep 2009 07:32:38 -0700 (PDT)
Local: Tues, Sep 8 2009 10:32 am
Subject: Re: Latest Activity 1.6 not showing
Just for the record, I am running a fresh Elgg 1.6.1 install and the
river activity page and widget both work for me.

Kevin

On Sep 7, 7:12 pm, ThomasC <berkshire...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
munkee  
View profile  
 More options Sep 8 2009, 12:10 pm
From: munkee <r.g.r...@gmail.com>
Date: Tue, 8 Sep 2009 09:10:16 -0700 (PDT)
Local: Tues, Sep 8 2009 12:10 pm
Subject: Re: Latest Activity 1.6 not showing
I had it so one of my elgg installations on 1.6 was working fine with
'Latest Activity', this version started out life as elgg 1.1

My other installation which doesnt have anywhere near the content as
the above elgg and started life as 1.5, this version doesn't display
anything in 'Latest Activity', it is using the same default code that
I've quoted in the Threads above, which is the same code you get in a
fresh install.

Now, I've upgraded the said above BIG version (the one which started
out life as 1.1) from 1.5 to 1.6.1 (tried 1.6 to 1.6.1 prior to this,
with the same results)

It now prints the 'Latest Activity' screen with the entire content
from the Group its displaying with a large logo, rather than just the
description and small group logo.

What has made this happen, anyone know?

Screen shot here : http://picasaweb.google.co.uk/lh/photo/R500n2-4mZ24yW2OjO2iiQ?feat=di...

BTW the version which doesn't show any content under 1.6, doesnt show
the content under 1.6.1 either, for this version I've resorted to
using this code, for it to at least display something:

   <?php
   // Load the latest content
        //$title = elgg_view_title(elgg_echo('content:latest'));
        set_context('search');
        //$content = list_registered_entities(0,6,true,false,array
('object','group'));
        $content1 = list_entities('group','',0,3,false, false, false);
        $content2 = list_entities('object','file',0,3,false, false,
false);
echo $content1, $content2;
//echo $content;
?>

On Sep 8, 3:32 pm, Kevin Jardine <kevinjard...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lawrence  
View profile  
 More options Oct 14 2009, 7:19 am
From: Lawrence <lvlewit...@gmail.com>
Date: Wed, 14 Oct 2009 04:19:08 -0700 (PDT)
Local: Wed, Oct 14 2009 7:19 am
Subject: Re: Latest Activity 1.6 not showing
Has there ever been a resolution as to why "Latest Activity" isn't
showing up with some people on the index page? I now have this
problem, too, and I haven't been able to find anything on the boards
or on elgg.org that resolves it.

Any ideas?

--Lawrence

On Sep 8, 12:10 pm, munkee <r.g.r...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Jardine  
View profile  
 More options Oct 14 2009, 9:54 am
From: Kevin Jardine <kevinjard...@gmail.com>
Date: Wed, 14 Oct 2009 06:54:18 -0700 (PDT)
Local: Wed, Oct 14 2009 9:54 am
Subject: Re: Latest Activity 1.6 not showing
I think that I've been confusing the river activity with latest
activity. My apologies.

On the full display problem, I think that is because the line

$content = list_registered_entities(0,10,true,false,array
('object','group'));

in index.php should be:

$content = list_registered_entities(0,10,false,false,array
('object','group'));

The third parameter was ignored until Elgg 1.6.1, which is why this
problem was not observed before.

I have a site that I upgraded from Elgg 1.6.0 to 1.6.1 and am now also
seeing that the latest activities listing has disappeared from front
page logged in.

I don't know why.

Cheers,
Kevin

On Sep 8, 6:10 pm, munkee <r.g.r...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Jardine  
View profile  
 More options Oct 14 2009, 9:55 am
From: Kevin Jardine <kevinjard...@gmail.com>
Date: Wed, 14 Oct 2009 06:55:11 -0700 (PDT)
Local: Wed, Oct 14 2009 9:55 am
Subject: Re: Latest Activity 1.6 not showing
That should have been "front page logged out".

On Oct 14, 3:54 pm, Kevin Jardine <kevinjard...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lawrence Lewitinn  
View profile  
 More options Oct 14 2009, 12:18 pm
From: Lawrence Lewitinn <lvlewit...@gmail.com>
Date: Wed, 14 Oct 2009 12:18:03 -0400
Local: Wed, Oct 14 2009 12:18 pm
Subject: Re: [elgg-users] Re: Latest Activity 1.6 not showing

Thanks, Kevin! I'll take a look at it.

In the meantime, I went through each of the plug-ins to see if one of them
may have been the culprit. In fact, it looks like one was: Pages! When I
disabled the Pages plug-in, everything was back to normal.

Is there another Pages plug-in out there? Or, is there a plug-in that lets
the admin add pages (such as a "tour" or other external pages besides the
one in the External Pages plug-in)?

=Lawrence

On Wed, Oct 14, 2009 at 9:55 AM, Kevin Jardine <kevinjard...@gmail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »