The description of the plugin says it pulls in the images, but the feeds I’m pulling in just show text. I think the images are integral to the look I want in a lifestream. Is this a bug, or do I need to alter something in the settings? What to do?
Thanks for keeping this plugin alive!
]]>Adding/updating Twitter feeds stopped working as of 6/11 — I’m sure it’s due to a change on their end. Any chance of a bug fix? Here’s the error message:
Error fetching feed from https://twitter.com/statuses/user_timeline/j_l_r.rss?page=1&count=20&source=twitterandroid (A feed could not be found at . This does not appear to be a valid RSS or Atom feed.)....
<?xml version="1.0" encoding="UTF-8"?>
<errors>
<error code="34">Sorry, that page does not exist</error>
</errors>
Hi,
Thanks a lot for keeping this plugin evolving and up to date!
Here are some issues I’ve found:
Feature request:
Best.
]]>It says it cannot be activated because it provokes a fatal error.
]]>Hi,
I am having an issue with the way the last event is displayed in my widget.
Text overlays the logo…
Any idea how to fix that? Let me know if you need more information.
Template : Blaskan
Website: MrGermain.fr
Thanks!
]]>Hi,
Than you for upgrading the original Lifestream Plugin (maybe you can tell about the fork source in the description, because it confused people).
I’ve seen that the plugin create a custom post_type ‘lsevent’ for each event imported.
The code who register the post_type is located in inc/core.php line 662 :
register_post_type('lsevent', array(
'label' => $this->__('Lifestream Events'),
'singular_label' => $this->__('Lifestream Event'),
'show_ui' => false,
'public' => true,
'exclude_from_search' => true,
'hierarchical' => false,
'capability_type' => 'post',
'rewrite' => array('slug', 'lifestream'),
'query_var' => false,
'can_export' => false,
'show_in_nav_menus' => false,
'supports' => array('title', 'comments')
));
The n, the function who create a post_type for each event is located line 1961 :
function create_post_for_event($event)
{
global $wpdb;
// TODO: find a better title
$post = array(
'post_title' => 'Lifestream Event',
'post_content' => '',
'post_status' => 'publish',
'post_author' => $event->owner_id,
'post_type' => 'lsevent',
// should we insert the feed types into the tags?
// 'tags_input' => ''
'post_date' => date('Y-m-d H:i:s', $event->timestamp),
);
$post_id = wp_insert_post($post);
$event->post_id = $post_id;
$event_list = array();
if ($event->is_grouped)
{
$wpdb->query($wpdb->prepare("UPDATE <code>".$wpdb->prefix."lifestream_event_group</code> set <code>post_id</code> = %d WHERE <code>id</code> = %d", $event->post_id, $event->id));
foreach ($event->data as $event)
{
// TODO: append to $event_list
}
}
else
{
$event_list[] = $event;
}
// TODO: process event list and update post ids
}
So, my goal is to extend the possibilities of the plugin by using custom post_types capabilities : edit, tags, categories, thumbnails…
I’m able to show ‘lsevent’ post_types in WP Admin with this code :
register_post_type('lsevent', array(
'label' => 'Lifestream',
'singular_label' => 'Event',
'show_ui' => true,
'public' => true,
'exclude_from_search' => true,
'hierarchical' => false,
'capability_type' => 'post',
'rewrite' => true,
'query_var' => true,
'can_export' => false,
'show_in_nav_menus' => false,
'menu_position' => 4,
'supports' => array('editor', 'title','excerpt', 'custom-fields', 'thumbnail'),
'taxonomies' => array('category', 'post_tag'), // this is IMPORTANT
'_builtin' => false, // It's a custom post type, not built in!
));
But, the problem is that all ‘lsevent’ post_types are empty (they don’t have content), so for the moment it’s useless to query them.
So, my question is : How can I do do allow the plugin to import the events contents in the post_types ? The content can be included in the content box and in the title… With this way of thinking, we will be able to categorize event, for exemple to query all events (google reader, tweets…) relative to “WordPress” subject, usefull !
Thanks a lot for your advices.
Anthony (from Paris)
core.php, line 536:
$this->path = WP_CONTENT_URL . '/plugins/wp-lifestream2';
core.php, line 841:
if ($results) return;
I’ll try to post more as I find test the plugin out. Is there a better place to do that than here?
]]>Failed to open url: https://github.com/username.atom
(cURL error 60: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed)
]]>///////////////////////////
Automatic translation use
///////////////////////////
Daily Digest of tumblr is used.
The following errors are displayed on the acquired contents.
Warning: Missing argument 2 for Lifestream::get_anchor_html(), called in /virtual/xxxxxx/public_html/xxx.xxxxx.com/wp-content/plugins/wp-lifestream2/extensions/tumblr/extension.inc.php on line 66 and defined in /virtual/xxxxxx/public_html/xxx.xxxxx.com/wp-content/plugins/wp-lifestream2/inc/core.php on line 761
PHP Version 5.2.5
The error same as original lifestream 1.0 is displayed.
but, original lifestream 0.99.9.6 is OK.
I follow the instructions to get my google ID and mine is a slightly different URL then mentioned. What I get is like this, (note I’ve removed a couple of numbers for privacy)
https://plus.google.com/u/0/106951264133/posts
I try using the 21 digit number as instructed and I get this error “Error fetching feed from https://plusfeed2.appspot.com/100569 (XML error: Mismatched tag at line 5, column 8)….
The examples I’ve seen haven’t had the /u/o/. Has Google changed their URL structures, does the google+ integration still work for everyone else?
]]>WordPress Version: 3.2.1
Lifestream Version: 1.1.3
It seems like every time the feed updates I lose the CSS style from the Lifestream theme “boxy” or “default”.
When I go in and simply “save settings” I get the style back.
I only have the two standard themes “default” and “boxy”.
Has anyone else had this? Or is there anything I can adjust to help this problem?
]]>FYI – Delicious has updated their Feed URLs.
To fix the delicious feeds –
wp-lifestream2/extensions/delicious/extension.inc.php
change function get_url()
from
$url = 'https://del.icio.us/rss/'.$this->get_option('username');
if ($this->get_option('filter_tag')) $url .= '/'.$this->get_option('filter_tag');
return $url;
to
$url = 'https://feeds.delicious.com/v2/rss/'.$this->get_option('username');
if ($this->get_option('filter_tag')) $url .= '/'.$this->get_option('filter_tag');
return $url;
and change function get_public_url
from
return 'https://del.icio.us/'.$this->get_option('username');
to
return 'https://delicious.com/'.$this->get_option('username');
Any idea what’s going on with the time zone issue? Mine is offset by 7 hours and can’t seem to figure out why. If you need any help let me know what I can do. Thanks!
elembemedia.com
elembemedia.com/lifestream
Seems that I have to give Google+ feed a push must of the time and get errors on it. The rss feed for /feed/lifestream-feed sometimes says 404 error, but when I refresh it, everything works fine once I push the Google+ refresh again after that.
Any ideas?
]]>When I try to add my twitter feed to lifestream I get the following error:
There were errors with your request:
Error fetching feed from https://twitter.com/statuses/user_timeline/marktuma.rss?page=1&count=20&source=twitterandroid (A feed could not be found at )....
<?xml version="1.0" encoding="UTF-8"?>
<hash>
<error>Rate limit exceeded. Clients may not make more than 150 requests per hour.</error>
<request>/
Is this just me, or is it a known thing? Is there anything I can do about it?
Thanks for a great plugin!
]]>I can see that there are three plugins based on the same source of ‘LifeStream ” . Can you please let me know if there are any differences between these plugins?
LifeStream2 , https://www.ads-software.com/extend/plugins/lifestream/ and https://www.ads-software.com/extend/plugins/lifestream-update/
]]>I used to use the lifestream plugin before its development stopped. I now see that a few people are updating it but am not sure which one to use. Are you working in tandem with the others at https://www.ads-software.com/extend/plugins/lifestream/ ?
]]>The cron jobs don’t seem to be running to update the feeds on my site. They seem to be set in UTC and my site was in UTC+1 (London) but I have changed my site to be UTC to try and minimise issues. After reseting the cron jobs and waiting for the required time, they still do not run.
Is there way I can set a cron job on the server to update the feeds rather than setting it in WordPress dashboard?
]]>