Version Description
(2014-08-08) = * Enhanced: Better wording on settings page. * Fixed bug: The Links Behaviour option in the settings was not working. * Fixed bug: The wrong feed items were being shown for some sources when using the "View Items" row action.
Download this release
Release Info
Developer | jeangalea |
Plugin | WP RSS Aggregator |
Version | 4.3.1 |
Comparing to | |
See all releases |
Code changes from version 4.3 to 4.3.1
- changelog.txt +5 -0
- includes/admin-display.php +9 -9
- includes/admin-options.php +24 -13
- includes/admin-welcome.php +3 -6
- includes/feed-display.php +2 -2
- includes/system-info.php +7 -1
- log-1.txt +400 -0
- readme.txt +19 -15
- wp-rss-aggregator.php +3 -3
changelog.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
4.3 (2014-08-04)
|
2 |
New Feature: Feed items now also import authors.
|
3 |
Enhanced: Custom feed is now in RSS 2.0 format.
|
1 |
+
4.3.1 (2014-08-08)
|
2 |
+
Enhanced: Better wording on settings page.
|
3 |
+
Fixed bug: The Links Behaviour option in the settings was not working.
|
4 |
+
Fixed bug: The wrong feed items were being shown for some sources when using the "View Items" row action.
|
5 |
+
|
6 |
4.3 (2014-08-04)
|
7 |
New Feature: Feed items now also import authors.
|
8 |
Enhanced: Custom feed is now in RSS 2.0 format.
|
includes/admin-display.php
CHANGED
@@ -297,42 +297,42 @@
|
|
297 |
}
|
298 |
|
299 |
|
300 |
-
add_filter( 'post_row_actions', 'wprss_remove_row_actions', 10,
|
301 |
/**
|
302 |
* Remove actions row for imported feed items, we don't want them to be editable or viewable
|
303 |
*
|
304 |
* @since 2.0
|
305 |
*/
|
306 |
-
function wprss_remove_row_actions( $actions )
|
307 |
{
|
308 |
$page = isset( $_GET['paged'] )? '&paged=' . $_GET['paged'] : '';
|
309 |
-
if ( get_post_type() === 'wprss_feed_item' ) {
|
310 |
unset( $actions[ 'edit' ] );
|
311 |
unset( $actions[ 'view' ] );
|
312 |
//unset( $actions[ 'trash' ] );
|
313 |
unset( $actions[ 'inline hide-if-no-js' ] );
|
314 |
}
|
315 |
-
elseif ( get_post_type() === 'wprss_feed' ) {
|
316 |
unset( $actions[ 'view'] );
|
317 |
unset( $actions[ 'inline hide-if-no-js'] );
|
318 |
-
if ( get_post_status(
|
319 |
$trash = $actions['trash'];
|
320 |
unset( $actions['trash'] );
|
321 |
|
322 |
$view_items_link = apply_filters(
|
323 |
'wprss_view_feed_items_row_action_link',
|
324 |
-
admin_url( 'edit.php?post_type=wprss_feed_item&wprss_feed=' .
|
325 |
-
|
326 |
);
|
327 |
$view_items_text = apply_filters( 'wprss_view_feed_items_row_action_text', 'View items' );
|
328 |
$actions['view-items'] = '<a href="' . $view_items_link . '">' . __( $view_items_text, 'wprss' ) . '</a>';
|
329 |
|
330 |
$fetch_items_row_action_text = apply_filters( 'wprss_fetch_items_row_action_text', 'Fetch items' );
|
331 |
-
$actions[ 'fetch' ] = '<a href="javascript:;" class="wprss_ajax_action" pid="'.
|
332 |
|
333 |
$purge_feeds_row_action_text = apply_filters( 'wprss_purge_feeds_row_action_text', 'Delete items' );
|
334 |
$purge_feeds_row_action_title = apply_filters( 'wprss_purge_feeds_row_action_title', 'Delete feed items imported by this feed source' );
|
335 |
-
$actions['purge-posts'] = "<a href='".admin_url("edit.php?post_type=wprss_feed&purge-feed-items=" .
|
336 |
|
337 |
$actions['trash'] = $trash;
|
338 |
}
|
297 |
}
|
298 |
|
299 |
|
300 |
+
add_filter( 'post_row_actions', 'wprss_remove_row_actions', 10, 2 );
|
301 |
/**
|
302 |
* Remove actions row for imported feed items, we don't want them to be editable or viewable
|
303 |
*
|
304 |
* @since 2.0
|
305 |
*/
|
306 |
+
function wprss_remove_row_actions( $actions, $post )
|
307 |
{
|
308 |
$page = isset( $_GET['paged'] )? '&paged=' . $_GET['paged'] : '';
|
309 |
+
if ( get_post_type($post) === 'wprss_feed_item' ) {
|
310 |
unset( $actions[ 'edit' ] );
|
311 |
unset( $actions[ 'view' ] );
|
312 |
//unset( $actions[ 'trash' ] );
|
313 |
unset( $actions[ 'inline hide-if-no-js' ] );
|
314 |
}
|
315 |
+
elseif ( get_post_type($post) === 'wprss_feed' ) {
|
316 |
unset( $actions[ 'view'] );
|
317 |
unset( $actions[ 'inline hide-if-no-js'] );
|
318 |
+
if ( get_post_status( $post->ID ) !== 'trash' ) {
|
319 |
$trash = $actions['trash'];
|
320 |
unset( $actions['trash'] );
|
321 |
|
322 |
$view_items_link = apply_filters(
|
323 |
'wprss_view_feed_items_row_action_link',
|
324 |
+
admin_url( 'edit.php?post_type=wprss_feed_item&wprss_feed=' . $post->ID ),
|
325 |
+
$post->ID
|
326 |
);
|
327 |
$view_items_text = apply_filters( 'wprss_view_feed_items_row_action_text', 'View items' );
|
328 |
$actions['view-items'] = '<a href="' . $view_items_link . '">' . __( $view_items_text, 'wprss' ) . '</a>';
|
329 |
|
330 |
$fetch_items_row_action_text = apply_filters( 'wprss_fetch_items_row_action_text', 'Fetch items' );
|
331 |
+
$actions[ 'fetch' ] = '<a href="javascript:;" class="wprss_ajax_action" pid="'. $post->ID .'" purl="'.home_url().'/wp-admin/admin-ajax.php">' . __( $fetch_items_row_action_text, 'wprss' ) . '</a>';
|
332 |
|
333 |
$purge_feeds_row_action_text = apply_filters( 'wprss_purge_feeds_row_action_text', 'Delete items' );
|
334 |
$purge_feeds_row_action_title = apply_filters( 'wprss_purge_feeds_row_action_title', 'Delete feed items imported by this feed source' );
|
335 |
+
$actions['purge-posts'] = "<a href='".admin_url("edit.php?post_type=wprss_feed&purge-feed-items=" . $post->ID . $page ) . "' title='" . __( $purge_feeds_row_action_title, 'wprss' ) . "' >" . __( $purge_feeds_row_action_text, 'wprss' ) . "</a>";
|
336 |
|
337 |
$actions['trash'] = $trash;
|
338 |
}
|
includes/admin-options.php
CHANGED
@@ -54,9 +54,9 @@
|
|
54 |
'wprss_settings_sections_array',
|
55 |
array(
|
56 |
'general' => __( 'General plugin settings', 'wprss' ),
|
57 |
-
'display' => __( '
|
58 |
-
'source' => __( 'Source settings', 'wprss' ),
|
59 |
-
'date' => __( 'Date settings', 'wprss' ),
|
60 |
'styles' => __( 'Styles', 'wprss' ),
|
61 |
)
|
62 |
);
|
@@ -130,6 +130,10 @@
|
|
130 |
'label' => __( 'Feed display limit', 'wprss' ),
|
131 |
'callback' => 'wprss_setting_feed_limit_callback'
|
132 |
),
|
|
|
|
|
|
|
|
|
133 |
'follow-dd' => array(
|
134 |
'label' => __( 'Set links as nofollow', 'wprss' ),
|
135 |
'callback' => 'wprss_setting_follow_dd_callback'
|
@@ -150,10 +154,6 @@
|
|
150 |
'label' => __( 'Link source', 'wprss' ),
|
151 |
'callback' => 'wprss_setting_source_link_callback'
|
152 |
),
|
153 |
-
'open-dd' => array(
|
154 |
-
'label' => __( 'Source link open behaviour', 'wprss' ),
|
155 |
-
'callback' => 'wprss_setting_open_dd_callback'
|
156 |
-
),
|
157 |
),
|
158 |
|
159 |
// Date options
|
@@ -330,7 +330,7 @@
|
|
330 |
* @since 3.5
|
331 |
*/
|
332 |
function wprss_settings_display_callback() {
|
333 |
-
echo '<p>' . __( 'In this section you can find
|
334 |
}
|
335 |
|
336 |
|
@@ -340,7 +340,7 @@
|
|
340 |
* @since 4.2.4
|
341 |
*/
|
342 |
function wprss_settings_source_callback() {
|
343 |
-
echo '<p>' . __( '
|
344 |
}
|
345 |
|
346 |
/**
|
@@ -349,7 +349,7 @@
|
|
349 |
* @since 4.2.4
|
350 |
*/
|
351 |
function wprss_settings_date_callback() {
|
352 |
-
echo '<p>' . __( '
|
353 |
}
|
354 |
|
355 |
|
@@ -436,7 +436,12 @@
|
|
436 |
$selected = ( $open_dd == $item ) ? 'selected="selected"' : '';
|
437 |
echo "<option value='$item' $selected>$item</option>";
|
438 |
}
|
439 |
-
echo "</select>";
|
|
|
|
|
|
|
|
|
|
|
440 |
}
|
441 |
|
442 |
|
@@ -619,8 +624,14 @@
|
|
619 |
*/
|
620 |
function wprss_setting_limit_feed_items_imported_callback() {
|
621 |
$limit_feed_items_imported = wprss_get_general_setting( 'limit_feed_items_imported' );
|
622 |
-
echo "<input id='limit-feed-items-imported' name='wprss_settings_general[limit_feed_items_imported]' type='text' value='$limit_feed_items_imported' />";
|
623 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
}
|
625 |
|
626 |
|
54 |
'wprss_settings_sections_array',
|
55 |
array(
|
56 |
'general' => __( 'General plugin settings', 'wprss' ),
|
57 |
+
'display' => __( 'General display settings', 'wprss' ),
|
58 |
+
'source' => __( 'Source display settings', 'wprss' ),
|
59 |
+
'date' => __( 'Date display settings', 'wprss' ),
|
60 |
'styles' => __( 'Styles', 'wprss' ),
|
61 |
)
|
62 |
);
|
130 |
'label' => __( 'Feed display limit', 'wprss' ),
|
131 |
'callback' => 'wprss_setting_feed_limit_callback'
|
132 |
),
|
133 |
+
'open-dd' => array(
|
134 |
+
'label' => __( 'Open links behaviour', 'wprss' ),
|
135 |
+
'callback' => 'wprss_setting_open_dd_callback'
|
136 |
+
),
|
137 |
'follow-dd' => array(
|
138 |
'label' => __( 'Set links as nofollow', 'wprss' ),
|
139 |
'callback' => 'wprss_setting_follow_dd_callback'
|
154 |
'label' => __( 'Link source', 'wprss' ),
|
155 |
'callback' => 'wprss_setting_source_link_callback'
|
156 |
),
|
|
|
|
|
|
|
|
|
157 |
),
|
158 |
|
159 |
// Date options
|
330 |
* @since 3.5
|
331 |
*/
|
332 |
function wprss_settings_display_callback() {
|
333 |
+
echo '<p>' . __( 'In this section you can find some general options that control how the feed items are displayed.', 'wprss' ) . '</p>';
|
334 |
}
|
335 |
|
336 |
|
340 |
* @since 4.2.4
|
341 |
*/
|
342 |
function wprss_settings_source_callback() {
|
343 |
+
echo '<p>' . __( 'Options that control how the feed item\'s source is displayed.', 'wprss' ) . '</p>';
|
344 |
}
|
345 |
|
346 |
/**
|
349 |
* @since 4.2.4
|
350 |
*/
|
351 |
function wprss_settings_date_callback() {
|
352 |
+
echo '<p>' . __( 'Options that control how the feed item\'s date is displayed.', 'wprss' ) . '</p>';
|
353 |
}
|
354 |
|
355 |
|
436 |
$selected = ( $open_dd == $item ) ? 'selected="selected"' : '';
|
437 |
echo "<option value='$item' $selected>$item</option>";
|
438 |
}
|
439 |
+
echo "</select>";
|
440 |
+
?>
|
441 |
+
<label for="open-dd" class="description">
|
442 |
+
Choose how to open links for your feed items.
|
443 |
+
</label>
|
444 |
+
<?php
|
445 |
}
|
446 |
|
447 |
|
624 |
*/
|
625 |
function wprss_setting_limit_feed_items_imported_callback() {
|
626 |
$limit_feed_items_imported = wprss_get_general_setting( 'limit_feed_items_imported' );
|
627 |
+
echo "<input id='limit-feed-items-imported' name='wprss_settings_general[limit_feed_items_imported]' type='text' value='$limit_feed_items_imported' placeholder='No Limit' />";
|
628 |
+
?>
|
629 |
+
<label class='description' for='limit-feed-items-imported'>
|
630 |
+
Enter the maximum number of feed items to import, for each feed source that does not have its own limit.
|
631 |
+
<br/>
|
632 |
+
<small>Use 0 or leave empty to use no limit.</small>
|
633 |
+
</label>
|
634 |
+
<?php
|
635 |
}
|
636 |
|
637 |
|
includes/admin-welcome.php
CHANGED
@@ -118,12 +118,9 @@
|
|
118 |
|
119 |
<h3>Changelog for v<?php echo WPRSS_VERSION; ?></h3>
|
120 |
<ul>
|
121 |
-
<li><strong>
|
122 |
-
<li><strong>
|
123 |
-
<li><strong>
|
124 |
-
<li><strong>Fixed bug:</strong> Custom feed was not working in Firefox.</li>
|
125 |
-
<li><strong>Fixed bug:</strong> Some feed items were showing items from another feed source.</li>
|
126 |
-
<li><strong>Fixed bug:</strong> The feed limit in the global settings was not working.</li>
|
127 |
</ul>
|
128 |
|
129 |
<p>Need functionality not already available in core or the add-ons? You can <a href="http://www.wprssaggregator.com/feature-requests/">suggest new features</a>!</p>
|
118 |
|
119 |
<h3>Changelog for v<?php echo WPRSS_VERSION; ?></h3>
|
120 |
<ul>
|
121 |
+
<li><strong>Enhanced:</strong> Better wording on settings page.</li>
|
122 |
+
<li><strong>Fixed bug:</strong> The <strong>Links Behaviour</strong> option in the settings was not working.</li>
|
123 |
+
<li><strong>Fixed bug:</strong> The wrong feed items were being shown for some sources when using the "View Items" row action.</li>
|
|
|
|
|
|
|
124 |
</ul>
|
125 |
|
126 |
<p>Need functionality not already available in core or the add-ons? You can <a href="http://www.wprssaggregator.com/feature-requests/">suggest new features</a>!</p>
|
includes/feed-display.php
CHANGED
@@ -25,10 +25,10 @@
|
|
25 |
$open = '';
|
26 |
switch ( $args['open_dd'] ) {
|
27 |
case 'Lightbox' :
|
28 |
-
$
|
29 |
break;
|
30 |
case 'New window' :
|
31 |
-
$
|
32 |
break;
|
33 |
}
|
34 |
|
25 |
$open = '';
|
26 |
switch ( $args['open_dd'] ) {
|
27 |
case 'Lightbox' :
|
28 |
+
$open = 'class="colorbox"';
|
29 |
break;
|
30 |
case 'New window' :
|
31 |
+
$open = 'target="_blank"';
|
32 |
break;
|
33 |
}
|
34 |
|
includes/system-info.php
CHANGED
@@ -25,7 +25,11 @@
|
|
25 |
$browser = new Browser();
|
26 |
?>
|
27 |
<h3><?php _e( 'System Information', 'wprss' ) ?></h3>
|
28 |
-
|
|
|
|
|
|
|
|
|
29 |
<textarea readonly="readonly" onclick="this.focus();this.select()" id="system-info-textarea" name="wprss-sysinfo" title="<?php _e( 'To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'wprss' ); ?>">
|
30 |
### Begin System Info ###
|
31 |
|
@@ -158,6 +162,8 @@ if ( get_bloginfo( 'version' ) < '3.4' ) {
|
|
158 |
function wprss_generate_sysinfo_download() {
|
159 |
nocache_headers();
|
160 |
|
|
|
|
|
161 |
header( "Content-type: text/plain" );
|
162 |
header( 'Content-Disposition: attachment; filename="wprss-system-info.txt"' );
|
163 |
|
25 |
$browser = new Browser();
|
26 |
?>
|
27 |
<h3><?php _e( 'System Information', 'wprss' ) ?></h3>
|
28 |
+
<?php
|
29 |
+
$form_url = admin_url( 'edit.php?post_type=wprss_feed&page=wprss-debugging' );
|
30 |
+
$nonce_url = wp_nonce_url( $formurl, 'wprss-sysinfo' );
|
31 |
+
?>
|
32 |
+
<form action="<?php echo esc_url( $nonce_url ); ?>" method="post">
|
33 |
<textarea readonly="readonly" onclick="this.focus();this.select()" id="system-info-textarea" name="wprss-sysinfo" title="<?php _e( 'To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'wprss' ); ?>">
|
34 |
### Begin System Info ###
|
35 |
|
162 |
function wprss_generate_sysinfo_download() {
|
163 |
nocache_headers();
|
164 |
|
165 |
+
check_admin_referer('wprss-sysinfo');
|
166 |
+
|
167 |
header( "Content-type: text/plain" );
|
168 |
header( 'Content-Disposition: attachment; filename="wprss-system-info.txt"' );
|
169 |
|
log-1.txt
ADDED
@@ -0,0 +1,400 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[17-07-2014 13:32:41] WPRSS > image_obeys_minimum_size:
|
2 |
+
Failed to get image dimensions. Image may not exist at http://www.fitforblogging.com/wp-content/uploads/fcc0c0b273d95abff3d48ba2_1280_rich-e1405526541809.jpg. Got:
|
3 |
+
[17-07-2014 13:32:41] WPRSS > image_obeys_minimum_size:
|
4 |
+
Failed to get image dimensions. Image may not exist at http://www.fitforblogging.com/wp-content/uploads/how-to-easily-delete-your-online-accounts-accountkiller.com_-750x389.png. Got:
|
5 |
+
[17-07-2014 13:32:42] WPRSS > image_obeys_minimum_size:
|
6 |
+
Failed to get image dimensions. Image may not exist at http://www.fitforblogging.com/wp-content/uploads/paypal_logo-e1401795047844.jpg. Got:
|
7 |
+
[17-07-2014 13:32:42] WPRSS > image_obeys_minimum_size:
|
8 |
+
Failed to get image dimensions. Image may not exist at http://www.fitforblogging.com/wp-content/uploads/Tax-rates-online-KPMG-GLOBAL.png. Got:
|
9 |
+
[17-07-2014 13:32:43] WPRSS > image_obeys_minimum_size:
|
10 |
+
Failed to get image dimensions. Image may not exist at http://www.fitforblogging.com/wp-content/uploads/1password-750x442.png. Got:
|
11 |
+
|
12 |
+
[17-07-2014 13:50:51] WPRSS > image_obeys_minimum_size:
|
13 |
+
Failed to get image dimensions. Image may not exist at image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==. Got:
|
14 |
+
[17-07-2014 13:50:51] WPRSS > image_obeys_minimum_size:
|
15 |
+
Failed to get image dimensions. Image may not exist at image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==. Got:
|
16 |
+
[17-07-2014 13:50:51] WPRSS > image_obeys_minimum_size:
|
17 |
+
Failed to get image dimensions. Image may not exist at image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==. Got:
|
18 |
+
[17-07-2014 13:50:54] WPRSS > image_obeys_minimum_size:
|
19 |
+
Failed to get image dimensions. Image may not exist at image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==. Got:
|
20 |
+
|
21 |
+
[19-07-2014 16:57:32] WPRSS:
|
22 |
+
Full text service responded with:: A valid key must be supplied
|
23 |
+
[19-07-2014 16:57:34] WPRSS:
|
24 |
+
Full text service responded with:: A valid key must be supplied
|
25 |
+
[19-07-2014 16:57:35] WPRSS:
|
26 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
27 |
+
No server is available to handle this request.
|
28 |
+
</body></html>
|
29 |
+
|
30 |
+
[19-07-2014 16:57:35] WPRSS > check_force_full_content:
|
31 |
+
Failed to find a working full text rss service.
|
32 |
+
[19-07-2014 16:57:39] WPRSS:
|
33 |
+
Full text service responded with:: A valid key must be supplied
|
34 |
+
[19-07-2014 16:57:40] WPRSS:
|
35 |
+
Full text service responded with:: A valid key must be supplied
|
36 |
+
[19-07-2014 16:57:40] WPRSS:
|
37 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
38 |
+
No server is available to handle this request.
|
39 |
+
</body></html>
|
40 |
+
|
41 |
+
[19-07-2014 16:57:40] WPRSS > check_force_full_content:
|
42 |
+
Failed to find a working full text rss service.
|
43 |
+
[19-07-2014 16:57:56] WPRSS:
|
44 |
+
Full text service responded with:: A valid key must be supplied
|
45 |
+
[19-07-2014 16:57:57] WPRSS:
|
46 |
+
Full text service responded with:: A valid key must be supplied
|
47 |
+
[19-07-2014 16:57:57] WPRSS:
|
48 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
49 |
+
No server is available to handle this request.
|
50 |
+
</body></html>
|
51 |
+
|
52 |
+
[19-07-2014 16:57:57] WPRSS > check_force_full_content:
|
53 |
+
Failed to find a working full text rss service.
|
54 |
+
[19-07-2014 16:58:19] WPRSS:
|
55 |
+
Full text service responded with:: A valid key must be supplied
|
56 |
+
[19-07-2014 16:58:20] WPRSS:
|
57 |
+
Full text service responded with:: A valid key must be supplied
|
58 |
+
[19-07-2014 16:58:21] WPRSS:
|
59 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
60 |
+
No server is available to handle this request.
|
61 |
+
</body></html>
|
62 |
+
|
63 |
+
[19-07-2014 16:58:21] WPRSS > check_force_full_content:
|
64 |
+
Failed to find a working full text rss service.
|
65 |
+
|
66 |
+
[19-07-2014 17:51:54] WPRSS:
|
67 |
+
Full text service responded with:: A valid key must be supplied
|
68 |
+
[19-07-2014 17:51:55] WPRSS:
|
69 |
+
Full text service responded with:: A valid key must be supplied
|
70 |
+
|
71 |
+
[19-07-2014 17:53:54] WPRSS:
|
72 |
+
Full text service responded with:: A valid key must be supplied
|
73 |
+
[19-07-2014 17:53:54] WPRSS:
|
74 |
+
Full text service responded with:: A valid key must be supplied
|
75 |
+
[19-07-2014 17:54:25] WPRSS:
|
76 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
77 |
+
No server is available to handle this request.
|
78 |
+
</body></html>
|
79 |
+
|
80 |
+
[19-07-2014 17:54:25] WPRSS > check_force_full_content:
|
81 |
+
Failed to find a working full text rss service.
|
82 |
+
[19-07-2014 17:54:41] WPRSS:
|
83 |
+
Full text service responded with:: A valid key must be supplied
|
84 |
+
[19-07-2014 17:54:41] WPRSS:
|
85 |
+
Full text service responded with:: A valid key must be supplied
|
86 |
+
[19-07-2014 17:54:42] WPRSS:
|
87 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
88 |
+
No server is available to handle this request.
|
89 |
+
</body></html>
|
90 |
+
|
91 |
+
[19-07-2014 17:54:42] WPRSS > check_force_full_content:
|
92 |
+
Failed to find a working full text rss service.
|
93 |
+
[19-07-2014 17:54:47] WPRSS:
|
94 |
+
Full text service responded with:: A valid key must be supplied
|
95 |
+
[19-07-2014 17:54:48] WPRSS:
|
96 |
+
Full text service responded with:: A valid key must be supplied
|
97 |
+
[19-07-2014 17:54:48] WPRSS:
|
98 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
99 |
+
No server is available to handle this request.
|
100 |
+
</body></html>
|
101 |
+
|
102 |
+
[19-07-2014 17:54:48] WPRSS > check_force_full_content:
|
103 |
+
Failed to find a working full text rss service.
|
104 |
+
|
105 |
+
[19-07-2014 20:24:53] WPRSS:
|
106 |
+
Full text service responded with:: A valid key must be supplied
|
107 |
+
[19-07-2014 20:24:54] WPRSS:
|
108 |
+
Full text service responded with:: A valid key must be supplied
|
109 |
+
|
110 |
+
[19-07-2014 20:25:53] WPRSS:
|
111 |
+
Full text service responded with:: A valid key must be supplied
|
112 |
+
[19-07-2014 20:25:54] WPRSS:
|
113 |
+
Full text service responded with:: A valid key must be supplied
|
114 |
+
|
115 |
+
[19-07-2014 20:27:53] WPRSS:
|
116 |
+
Full text service responded with:: A valid key must be supplied
|
117 |
+
[19-07-2014 20:27:54] WPRSS:
|
118 |
+
Full text service responded with:: A valid key must be supplied
|
119 |
+
[19-07-2014 20:27:55] WPRSS:
|
120 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
121 |
+
No server is available to handle this request.
|
122 |
+
</body></html>
|
123 |
+
|
124 |
+
[19-07-2014 20:27:55] WPRSS > check_force_full_content:
|
125 |
+
Failed to find a working full text rss service.
|
126 |
+
[19-07-2014 20:27:59] WPRSS:
|
127 |
+
Full text service responded with:: A valid key must be supplied
|
128 |
+
[19-07-2014 20:28:00] WPRSS:
|
129 |
+
Full text service responded with:: A valid key must be supplied
|
130 |
+
[19-07-2014 20:28:00] WPRSS:
|
131 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
132 |
+
No server is available to handle this request.
|
133 |
+
</body></html>
|
134 |
+
|
135 |
+
[19-07-2014 20:28:00] WPRSS > check_force_full_content:
|
136 |
+
Failed to find a working full text rss service.
|
137 |
+
|
138 |
+
[19-07-2014 21:55:16] WPRSS:
|
139 |
+
Full text service responded with:: A valid key must be supplied
|
140 |
+
[19-07-2014 21:55:17] WPRSS:
|
141 |
+
Full text service responded with:: A valid key must be supplied
|
142 |
+
|
143 |
+
[19-07-2014 21:57:16] WPRSS:
|
144 |
+
Full text service responded with:: A valid key must be supplied
|
145 |
+
[19-07-2014 21:57:19] WPRSS:
|
146 |
+
Full text service responded with:: A valid key must be supplied
|
147 |
+
|
148 |
+
[19-07-2014 21:59:16] WPRSS:
|
149 |
+
Full text service responded with:: A valid key must be supplied
|
150 |
+
[19-07-2014 21:59:17] WPRSS:
|
151 |
+
Full text service responded with:: A valid key must be supplied
|
152 |
+
[19-07-2014 21:59:47] WPRSS:
|
153 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
154 |
+
No server is available to handle this request.
|
155 |
+
</body></html>
|
156 |
+
|
157 |
+
[19-07-2014 21:59:47] WPRSS > check_force_full_content:
|
158 |
+
Failed to find a working full text rss service.
|
159 |
+
[19-07-2014 21:59:53] WPRSS:
|
160 |
+
Full text service responded with:: A valid key must be supplied
|
161 |
+
[19-07-2014 21:59:54] WPRSS:
|
162 |
+
Full text service responded with:: A valid key must be supplied
|
163 |
+
[19-07-2014 21:59:54] WPRSS:
|
164 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
165 |
+
No server is available to handle this request.
|
166 |
+
</body></html>
|
167 |
+
|
168 |
+
[19-07-2014 21:59:54] WPRSS > check_force_full_content:
|
169 |
+
Failed to find a working full text rss service.
|
170 |
+
|
171 |
+
[19-07-2014 22:53:10] WPRSS:
|
172 |
+
Full text service responded with:: A valid key must be supplied
|
173 |
+
[19-07-2014 22:53:11] WPRSS:
|
174 |
+
Full text service responded with:: A valid key must be supplied
|
175 |
+
|
176 |
+
[19-07-2014 22:54:11] WPRSS:
|
177 |
+
Full text service responded with:: A valid key must be supplied
|
178 |
+
[19-07-2014 22:54:12] WPRSS:
|
179 |
+
Full text service responded with:: A valid key must be supplied
|
180 |
+
[19-07-2014 22:54:13] WPRSS:
|
181 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
182 |
+
No server is available to handle this request.
|
183 |
+
</body></html>
|
184 |
+
|
185 |
+
[19-07-2014 22:54:13] WPRSS > check_force_full_content:
|
186 |
+
Failed to find a working full text rss service.
|
187 |
+
[19-07-2014 22:54:35] WPRSS:
|
188 |
+
Full text service responded with:: A valid key must be supplied
|
189 |
+
[19-07-2014 22:54:36] WPRSS:
|
190 |
+
Full text service responded with:: A valid key must be supplied
|
191 |
+
[19-07-2014 22:54:37] WPRSS:
|
192 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
193 |
+
No server is available to handle this request.
|
194 |
+
</body></html>
|
195 |
+
|
196 |
+
[19-07-2014 22:54:37] WPRSS > check_force_full_content:
|
197 |
+
Failed to find a working full text rss service.
|
198 |
+
[19-07-2014 22:54:43] WPRSS:
|
199 |
+
Full text service responded with:: A valid key must be supplied
|
200 |
+
[19-07-2014 22:54:44] WPRSS:
|
201 |
+
Full text service responded with:: A valid key must be supplied
|
202 |
+
[19-07-2014 22:54:44] WPRSS:
|
203 |
+
Full text service responded with:: <html><body><h1>503 Service Unavailable</h1>
|
204 |
+
No server is available to handle this request.
|
205 |
+
</body></html>
|
206 |
+
|
207 |
+
[19-07-2014 22:54:44] WPRSS > check_force_full_content:
|
208 |
+
Failed to find a working full text rss service.
|
209 |
+
|
210 |
+
[22-07-2014 13:11:01] WPRSS > check_force_full_content:
|
211 |
+
Failed to find a working full text rss service.
|
212 |
+
|
213 |
+
[22-07-2014 13:12:33] WPRSS > image_obeys_minimum_size:
|
214 |
+
Failed to get image dimensions. Image may not exist at http://dhvcform.getextension.net/wp-content/uploads/2014/07/drag-drop.png. Got:
|
215 |
+
[22-07-2014 13:12:35] WPRSS > image_obeys_minimum_size:
|
216 |
+
Failed to get image dimensions. Image may not exist at http://dhvcform.getextension.net/wp-content/uploads/2014/07/Screen-Shot-2014-07-17-at-9.13.09-PM.png. Got:
|
217 |
+
[22-07-2014 13:12:35] WPRSS > image_obeys_minimum_size:
|
218 |
+
Failed to get image dimensions. Image may not exist at http://dhvcform.getextension.net/wp-content/uploads/2014/07/any-theme_small.png. Got:
|
219 |
+
|
220 |
+
[22-07-2014 13:14:31] WPRSS > image_obeys_minimum_size:
|
221 |
+
Failed to get image dimensions. Image may not exist at http://dhvcform.getextension.net/wp-content/uploads/2014/07/drag-drop.png. Got:
|
222 |
+
[22-07-2014 13:14:31] WPRSS > image_obeys_minimum_size:
|
223 |
+
Failed to get image dimensions. Image may not exist at http://dhvcform.getextension.net/wp-content/uploads/2014/07/Screen-Shot-2014-07-17-at-9.13.09-PM.png. Got:
|
224 |
+
[22-07-2014 13:14:33] WPRSS > image_obeys_minimum_size:
|
225 |
+
Failed to get image dimensions. Image may not exist at http://dhvcform.getextension.net/wp-content/uploads/2014/07/any-theme_small.png. Got:
|
226 |
+
|
227 |
+
[22-07-2014 16:42:51] WPRSS > check_force_full_content:
|
228 |
+
Failed to find a working full text rss service.
|
229 |
+
[22-07-2014 16:42:51] WPRSS > wprss_get_feed_items:
|
230 |
+
Failed to fetch feed "http://codecanyon.net/feeds/new-wordpress-slash-add-ons-items.atom". cURL error 6: Couldn't resolve host 'codecanyon.net'
|
231 |
+
|
232 |
+
[22-07-2014 20:44:32] WPRSS > check_force_full_content:
|
233 |
+
Failed to find a working full text rss service.
|
234 |
+
[22-07-2014 20:44:33] WPRSS > wprss_get_feed_items:
|
235 |
+
Failed to fetch feed "http://codecanyon.net/feeds/new-wordpress-slash-add-ons-items.atom". cURL error 6: Couldn't resolve host 'codecanyon.net'
|
236 |
+
|
237 |
+
[23-07-2014 07:35:07] WPRSS > check_force_full_content:
|
238 |
+
Failed to find a working full text rss service.
|
239 |
+
[23-07-2014 07:35:08] WPRSS > wprss_get_feed_items:
|
240 |
+
Failed to fetch feed "http://codecanyon.net/feeds/new-wordpress-slash-add-ons-items.atom". cURL error 6: Couldn't resolve host 'codecanyon.net'
|
241 |
+
|
242 |
+
[23-07-2014 10:46:41] WPRSS > check_force_full_content:
|
243 |
+
Failed to find a working full text rss service.
|
244 |
+
[23-07-2014 10:46:41] WPRSS > wprss_get_feed_items:
|
245 |
+
Failed to fetch feed "http://codecanyon.net/feeds/new-wordpress-slash-add-ons-items.atom". cURL error 6: Couldn't resolve host 'codecanyon.net'
|
246 |
+
|
247 |
+
[23-07-2014 20:21:02] WPRSS > check_force_full_content:
|
248 |
+
Failed to find a working full text rss service.
|
249 |
+
[23-07-2014 20:21:02] WPRSS > wprss_get_feed_items:
|
250 |
+
Failed to fetch feed "http://codecanyon.net/feeds/new-wordpress-slash-add-ons-items.atom". cURL error 6: Couldn't resolve host 'codecanyon.net'
|
251 |
+
|
252 |
+
[24-07-2014 07:32:38] WPRSS > check_force_full_content:
|
253 |
+
Failed to find a working full text rss service.
|
254 |
+
[24-07-2014 07:32:38] WPRSS > wprss_get_feed_items:
|
255 |
+
Failed to fetch feed "http://codecanyon.net/feeds/new-wordpress-slash-add-ons-items.atom". cURL error 6: Couldn't resolve host 'codecanyon.net'
|
256 |
+
|
257 |
+
[24-07-2014 07:32:43] WPRSS > check_force_full_content:
|
258 |
+
Failed to find a working full text rss service.
|
259 |
+
[24-07-2014 07:32:43] WPRSS > wprss_get_feed_items:
|
260 |
+
Failed to fetch feed "http://codecanyon.net/feeds/new-wordpress-slash-add-ons-items.atom". cURL error 6: Couldn't resolve host 'codecanyon.net'
|
261 |
+
|
262 |
+
[05-08-2014 21:43:03] WPRSS > wprss_ftp_media_sideload_image:
|
263 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcSm0ksxyjnsGAJuJBCvvfbfWuOdqfBejsMbGqbiLOhDUTU5onaMkAkAukejSVgb-9wWu5MG-xY" for post #2959: Sorry, this file type is not permitted for security reasons.
|
264 |
+
[05-08-2014 21:43:04] WPRSS > wprss_ftp_media_sideload_image:
|
265 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcSm0ksxyjnsGAJuJBCvvfbfWuOdqfBejsMbGqbiLOhDUTU5onaMkAkAukejSVgb-9wWu5MG-xY" for post #2959: Sorry, this file type is not permitted for security reasons.
|
266 |
+
[05-08-2014 21:43:05] WPRSS > wprss_ftp_media_sideload_image:
|
267 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcTWKDMMnYbcKNOdK0stkbX3hU_cHlQ7Ucvj5x9oPxqHeP-LWLkrOfFZv1dFe9KmJMzBGFfpjFI" for post #2962: Sorry, this file type is not permitted for security reasons.
|
268 |
+
[05-08-2014 21:43:05] WPRSS > wprss_ftp_media_sideload_image:
|
269 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcTWKDMMnYbcKNOdK0stkbX3hU_cHlQ7Ucvj5x9oPxqHeP-LWLkrOfFZv1dFe9KmJMzBGFfpjFI" for post #2962: Sorry, this file type is not permitted for security reasons.
|
270 |
+
[05-08-2014 21:43:07] WPRSS > wprss_ftp_media_sideload_image:
|
271 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTC7Esyefovax3GpuboL3uzFqDheizyYdF5FK0S2Sy2IAgfCEi31Rb3sVGsBDbfWswZyrhnjo8" for post #2965: Sorry, this file type is not permitted for security reasons.
|
272 |
+
[05-08-2014 21:43:07] WPRSS > wprss_ftp_media_sideload_image:
|
273 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTC7Esyefovax3GpuboL3uzFqDheizyYdF5FK0S2Sy2IAgfCEi31Rb3sVGsBDbfWswZyrhnjo8" for post #2965: Sorry, this file type is not permitted for security reasons.
|
274 |
+
[05-08-2014 21:43:08] WPRSS > wprss_ftp_media_sideload_image:
|
275 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcT0-NcIdTsJl9XqobjjZnLxIekdo-tT3-0gvvUFZxDBztdg1b5bURp0LNm8mLimsMONcRyTCBxP" for post #2968: Sorry, this file type is not permitted for security reasons.
|
276 |
+
[05-08-2014 21:43:08] WPRSS > wprss_ftp_media_sideload_image:
|
277 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcT0-NcIdTsJl9XqobjjZnLxIekdo-tT3-0gvvUFZxDBztdg1b5bURp0LNm8mLimsMONcRyTCBxP" for post #2968: Sorry, this file type is not permitted for security reasons.
|
278 |
+
[05-08-2014 21:43:09] WPRSS > wprss_ftp_media_sideload_image:
|
279 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSD3uNnu6hgx732lS8FZbYkRUPsVNAMmix1BnWOtMKvTkNP8aNUnuVGzTmLJv6ky7r_FV0sQ4Q0" for post #2971: Sorry, this file type is not permitted for security reasons.
|
280 |
+
[05-08-2014 21:43:09] WPRSS > wprss_ftp_media_sideload_image:
|
281 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSD3uNnu6hgx732lS8FZbYkRUPsVNAMmix1BnWOtMKvTkNP8aNUnuVGzTmLJv6ky7r_FV0sQ4Q0" for post #2971: Sorry, this file type is not permitted for security reasons.
|
282 |
+
[05-08-2014 21:43:10] WPRSS > wprss_ftp_media_sideload_image:
|
283 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTcH22t6akVFeXYcFVu8yh9Su2TR6wWcxKOgp-8APiaBdCsFts0NDCVJzDc80L40CyBJ1HgN4Y" for post #2974: Sorry, this file type is not permitted for security reasons.
|
284 |
+
[05-08-2014 21:43:10] WPRSS > wprss_ftp_media_sideload_image:
|
285 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTcH22t6akVFeXYcFVu8yh9Su2TR6wWcxKOgp-8APiaBdCsFts0NDCVJzDc80L40CyBJ1HgN4Y" for post #2974: Sorry, this file type is not permitted for security reasons.
|
286 |
+
[05-08-2014 21:43:11] WPRSS > wprss_ftp_media_sideload_image:
|
287 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcR5ura2eenBxvijGpDzmXIts01K_twkovV3JaSF0R7IuzoxTa8FYpGRILMUhaITGAe8IE0N3yo" for post #2977: Sorry, this file type is not permitted for security reasons.
|
288 |
+
[05-08-2014 21:43:12] WPRSS > wprss_ftp_media_sideload_image:
|
289 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcR5ura2eenBxvijGpDzmXIts01K_twkovV3JaSF0R7IuzoxTa8FYpGRILMUhaITGAe8IE0N3yo" for post #2977: Sorry, this file type is not permitted for security reasons.
|
290 |
+
[05-08-2014 21:43:12] WPRSS > wprss_ftp_media_sideload_image:
|
291 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcTu8vX9ZyhDVO0AF7_aaDNvT_vBTyi_bATw1EvEuYrOxVEAsZF3AcFl4WxbdLoFK0SwtX4tB2LZ" for post #2980: Sorry, this file type is not permitted for security reasons.
|
292 |
+
[05-08-2014 21:43:13] WPRSS > wprss_ftp_media_sideload_image:
|
293 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcTu8vX9ZyhDVO0AF7_aaDNvT_vBTyi_bATw1EvEuYrOxVEAsZF3AcFl4WxbdLoFK0SwtX4tB2LZ" for post #2980: Sorry, this file type is not permitted for security reasons.
|
294 |
+
[05-08-2014 21:43:13] WPRSS > wprss_ftp_media_sideload_image:
|
295 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSxz38xIdolSruOFaphSWZJjcgFvwSwmqsFEgKd1pUoHAGccsFVN5Hfg6ucSkzFAHpAfGqeOkk" for post #2983: Sorry, this file type is not permitted for security reasons.
|
296 |
+
[05-08-2014 21:43:14] WPRSS > wprss_ftp_media_sideload_image:
|
297 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSxz38xIdolSruOFaphSWZJjcgFvwSwmqsFEgKd1pUoHAGccsFVN5Hfg6ucSkzFAHpAfGqeOkk" for post #2983: Sorry, this file type is not permitted for security reasons.
|
298 |
+
[05-08-2014 21:43:14] WPRSS > wprss_ftp_media_sideload_image:
|
299 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcRD5lSdioWmXnAjRhv4TFdqx1e8LI8vlFhyeWXac6o6rTNBF77hBEr1kEEDqPzOXkFU6G7fWVnY" for post #2986: Sorry, this file type is not permitted for security reasons.
|
300 |
+
[05-08-2014 21:43:15] WPRSS > wprss_ftp_media_sideload_image:
|
301 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcRD5lSdioWmXnAjRhv4TFdqx1e8LI8vlFhyeWXac6o6rTNBF77hBEr1kEEDqPzOXkFU6G7fWVnY" for post #2986: Sorry, this file type is not permitted for security reasons.
|
302 |
+
|
303 |
+
[05-08-2014 21:50:19] WPRSS > wprss_ftp_media_sideload_image:
|
304 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTTzH7UD3tlk-r9maYzmCq-DsxKOl2Grn1CEp2_C2eCsQS_-wNUmZoDrvU1cR2Lsbx-aZRt6rQi" for post #2989: Sorry, this file type is not permitted for security reasons.
|
305 |
+
[05-08-2014 21:50:20] WPRSS > wprss_ftp_media_sideload_image:
|
306 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTTzH7UD3tlk-r9maYzmCq-DsxKOl2Grn1CEp2_C2eCsQS_-wNUmZoDrvU1cR2Lsbx-aZRt6rQi" for post #2989: Sorry, this file type is not permitted for security reasons.
|
307 |
+
|
308 |
+
[05-08-2014 22:53:46] WPRSS > wprss_ftp_media_sideload_image:
|
309 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcScYCppbiCgr3gBqm1amCu0YZLbEq8AzeARDhqVDbVfYaFvhHq1b6qN0o5bYaH-UvsUV9SX_WxV" for post #3020: Sorry, this file type is not permitted for security reasons.
|
310 |
+
[05-08-2014 22:53:47] WPRSS > wprss_ftp_media_sideload_image:
|
311 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcScYCppbiCgr3gBqm1amCu0YZLbEq8AzeARDhqVDbVfYaFvhHq1b6qN0o5bYaH-UvsUV9SX_WxV" for post #3020: Sorry, this file type is not permitted for security reasons.
|
312 |
+
[05-08-2014 22:53:47] WPRSS > wprss_ftp_media_sideload_image:
|
313 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcTZcTDPjF3MlNHkmmXnRXtXocPPOBhH7T9GquruOUL7rNoQr-P1v-Of6ALG4RIl7MNT5Me-_qY" for post #3023: Sorry, this file type is not permitted for security reasons.
|
314 |
+
[05-08-2014 22:53:47] WPRSS > wprss_ftp_media_sideload_image:
|
315 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcTZcTDPjF3MlNHkmmXnRXtXocPPOBhH7T9GquruOUL7rNoQr-P1v-Of6ALG4RIl7MNT5Me-_qY" for post #3023: Sorry, this file type is not permitted for security reasons.
|
316 |
+
[05-08-2014 22:53:48] WPRSS > wprss_ftp_media_sideload_image:
|
317 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcQh_LbYSAXKmI1J0iyNzjJE1Lk3ECCTywjEoNpAFVJx1MtKHo4kyk6vc4CAiuHjHFjKuH_maPk" for post #3026: Sorry, this file type is not permitted for security reasons.
|
318 |
+
[05-08-2014 22:53:49] WPRSS > wprss_ftp_media_sideload_image:
|
319 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcQh_LbYSAXKmI1J0iyNzjJE1Lk3ECCTywjEoNpAFVJx1MtKHo4kyk6vc4CAiuHjHFjKuH_maPk" for post #3026: Sorry, this file type is not permitted for security reasons.
|
320 |
+
[05-08-2014 22:53:49] WPRSS > wprss_ftp_media_sideload_image:
|
321 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcReM1d5kDZxngJNhlqbTKokWuIRmYPlOEV8AqNo4reuVet7z_EqYS24YuNY5kI2PEBLMV26FAVy" for post #3029: Sorry, this file type is not permitted for security reasons.
|
322 |
+
[05-08-2014 22:53:50] WPRSS > wprss_ftp_media_sideload_image:
|
323 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcReM1d5kDZxngJNhlqbTKokWuIRmYPlOEV8AqNo4reuVet7z_EqYS24YuNY5kI2PEBLMV26FAVy" for post #3029: Sorry, this file type is not permitted for security reasons.
|
324 |
+
[05-08-2014 22:53:51] WPRSS > wprss_ftp_media_sideload_image:
|
325 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcTFjV1ZiayUMaeZm_imqj8ItO9Wn-xsUy34yxBo7f_M45hg-7tQb1cdL3gib4fmjZQWy1AJJGs" for post #3032: Sorry, this file type is not permitted for security reasons.
|
326 |
+
[05-08-2014 22:53:51] WPRSS > wprss_ftp_media_sideload_image:
|
327 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcTFjV1ZiayUMaeZm_imqj8ItO9Wn-xsUy34yxBo7f_M45hg-7tQb1cdL3gib4fmjZQWy1AJJGs" for post #3032: Sorry, this file type is not permitted for security reasons.
|
328 |
+
|
329 |
+
[06-08-2014 09:25:27] WPRSS > wprss_ftp_media_sideload_image:
|
330 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTTzH7UD3tlk-r9maYzmCq-DsxKOl2Grn1CEp2_C2eCsQS_-wNUmZoDrvU1cR2Lsbx-aZRt6rQi" for post #3035: Sorry, this file type is not permitted for security reasons.
|
331 |
+
[06-08-2014 09:25:28] WPRSS > wprss_ftp_media_sideload_image:
|
332 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTTzH7UD3tlk-r9maYzmCq-DsxKOl2Grn1CEp2_C2eCsQS_-wNUmZoDrvU1cR2Lsbx-aZRt6rQi" for post #3035: Sorry, this file type is not permitted for security reasons.
|
333 |
+
[06-08-2014 09:25:29] WPRSS > wprss_ftp_media_sideload_image:
|
334 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcSil1_PXK23gbeaqnhItNILeCSq4R_zw_2Mch-tE7QkwJu_JOxikYMk8T2kd3neWHXxGlWZxHpT" for post #3038: Sorry, this file type is not permitted for security reasons.
|
335 |
+
[06-08-2014 09:25:29] WPRSS > wprss_ftp_media_sideload_image:
|
336 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcSil1_PXK23gbeaqnhItNILeCSq4R_zw_2Mch-tE7QkwJu_JOxikYMk8T2kd3neWHXxGlWZxHpT" for post #3038: Sorry, this file type is not permitted for security reasons.
|
337 |
+
[06-08-2014 09:25:30] WPRSS > wprss_ftp_media_sideload_image:
|
338 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcQdw7EgWrz1-k1MrCaic5X1-ccfhMIfS-gNocpXAHauYe37JR3WpuDzXIooyIp3HBA2jOQlvLL0" for post #3041: Sorry, this file type is not permitted for security reasons.
|
339 |
+
[06-08-2014 09:25:30] WPRSS > wprss_ftp_media_sideload_image:
|
340 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcQdw7EgWrz1-k1MrCaic5X1-ccfhMIfS-gNocpXAHauYe37JR3WpuDzXIooyIp3HBA2jOQlvLL0" for post #3041: Sorry, this file type is not permitted for security reasons.
|
341 |
+
[06-08-2014 09:25:31] WPRSS > wprss_ftp_media_sideload_image:
|
342 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcQ97YxGPmF640MU9m051V7FQXwVdph9rFIK4HbM_ddgnieZdc5IzQFVA7Tr9EBHfk_SvVnuSTw" for post #3044: Sorry, this file type is not permitted for security reasons.
|
343 |
+
[06-08-2014 09:25:31] WPRSS > wprss_ftp_media_sideload_image:
|
344 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcQ97YxGPmF640MU9m051V7FQXwVdph9rFIK4HbM_ddgnieZdc5IzQFVA7Tr9EBHfk_SvVnuSTw" for post #3044: Sorry, this file type is not permitted for security reasons.
|
345 |
+
[06-08-2014 09:25:32] WPRSS > wprss_ftp_media_sideload_image:
|
346 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcS1OrS1KO5sRrJd287ZnkUUHWCqfDVw4ogj3GMLvAwLGR8JUBcHXVaSdyVsJZftr5cXpYcN50Zj" for post #3047: Sorry, this file type is not permitted for security reasons.
|
347 |
+
[06-08-2014 09:25:32] WPRSS > wprss_ftp_media_sideload_image:
|
348 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcS1OrS1KO5sRrJd287ZnkUUHWCqfDVw4ogj3GMLvAwLGR8JUBcHXVaSdyVsJZftr5cXpYcN50Zj" for post #3047: Sorry, this file type is not permitted for security reasons.
|
349 |
+
[06-08-2014 09:25:32] WPRSS > wprss_ftp_media_sideload_image:
|
350 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcTUvNB-MmZjBiYfJ8H7n7XDn5Y76Btm14ZVxlk1JHag0PNHBUXZMfEfVfw_rJnwDIe2IsSmCW6w" for post #3050: Sorry, this file type is not permitted for security reasons.
|
351 |
+
[06-08-2014 09:25:33] WPRSS > wprss_ftp_media_sideload_image:
|
352 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcTUvNB-MmZjBiYfJ8H7n7XDn5Y76Btm14ZVxlk1JHag0PNHBUXZMfEfVfw_rJnwDIe2IsSmCW6w" for post #3050: Sorry, this file type is not permitted for security reasons.
|
353 |
+
[06-08-2014 09:25:33] WPRSS > wprss_ftp_media_sideload_image:
|
354 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSleYXItGaz480G1qS6Fcfc_4Iwt9ep5ceOjpokx930sZ8znJlIdKLU9u2wYzrm8K11RDfdQi_g" for post #3053: Sorry, this file type is not permitted for security reasons.
|
355 |
+
[06-08-2014 09:25:34] WPRSS > wprss_ftp_media_sideload_image:
|
356 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSleYXItGaz480G1qS6Fcfc_4Iwt9ep5ceOjpokx930sZ8znJlIdKLU9u2wYzrm8K11RDfdQi_g" for post #3053: Sorry, this file type is not permitted for security reasons.
|
357 |
+
[06-08-2014 09:25:34] WPRSS > wprss_ftp_media_sideload_image:
|
358 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcQz3dUAe6mN5NF35T4Ku0-opVEoOq7r4wms-JVDauf9NECfjXOFPwcP8pjfcjpMtCcX8pI62O5J" for post #3056: Sorry, this file type is not permitted for security reasons.
|
359 |
+
[06-08-2014 09:25:34] WPRSS > wprss_ftp_media_sideload_image:
|
360 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcQz3dUAe6mN5NF35T4Ku0-opVEoOq7r4wms-JVDauf9NECfjXOFPwcP8pjfcjpMtCcX8pI62O5J" for post #3056: Sorry, this file type is not permitted for security reasons.
|
361 |
+
|
362 |
+
[06-08-2014 09:53:29] WPRSS > wprss_ftp_media_sideload_image:
|
363 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcSil1_PXK23gbeaqnhItNILeCSq4R_zw_2Mch-tE7QkwJu_JOxikYMk8T2kd3neWHXxGlWZxHpT" for post #3059: Sorry, this file type is not permitted for security reasons.
|
364 |
+
[06-08-2014 09:53:29] WPRSS > wprss_ftp_media_sideload_image:
|
365 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcSil1_PXK23gbeaqnhItNILeCSq4R_zw_2Mch-tE7QkwJu_JOxikYMk8T2kd3neWHXxGlWZxHpT" for post #3059: Sorry, this file type is not permitted for security reasons.
|
366 |
+
[06-08-2014 09:53:30] WPRSS > wprss_ftp_media_sideload_image:
|
367 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcQYMGBmWItwX0l6qINpufZOMDBCFyTAt3BHHaxTHh4uH8FBJxFGSAkm-kfF7a5OQqu4e1wC_Ss" for post #3062: Sorry, this file type is not permitted for security reasons.
|
368 |
+
[06-08-2014 09:53:31] WPRSS > wprss_ftp_media_sideload_image:
|
369 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcQYMGBmWItwX0l6qINpufZOMDBCFyTAt3BHHaxTHh4uH8FBJxFGSAkm-kfF7a5OQqu4e1wC_Ss" for post #3062: Sorry, this file type is not permitted for security reasons.
|
370 |
+
[06-08-2014 09:53:32] WPRSS > wprss_ftp_media_sideload_image:
|
371 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTM-2izIrJ8yHBNRWdQxCXS7nFFMgwDas2TJ9i6KY7r3BUNKzUdoTL_S9Vhf5fBa8Dm-sz8VtqB" for post #3068: Sorry, this file type is not permitted for security reasons.
|
372 |
+
[06-08-2014 09:53:33] WPRSS > wprss_ftp_media_sideload_image:
|
373 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTM-2izIrJ8yHBNRWdQxCXS7nFFMgwDas2TJ9i6KY7r3BUNKzUdoTL_S9Vhf5fBa8Dm-sz8VtqB" for post #3068: Sorry, this file type is not permitted for security reasons.
|
374 |
+
|
375 |
+
[06-08-2014 10:53:05] WPRSS > wprss_ftp_media_sideload_image:
|
376 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcS6eTW2SKwYHOEySVysobJhFFVL2rPMR5hkTsnaC7yl8zgvATYwkb3s0QoK0l2SzEgCZ0X173M" for post #3071: Sorry, this file type is not permitted for security reasons.
|
377 |
+
[06-08-2014 10:53:05] WPRSS > wprss_ftp_media_sideload_image:
|
378 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcS6eTW2SKwYHOEySVysobJhFFVL2rPMR5hkTsnaC7yl8zgvATYwkb3s0QoK0l2SzEgCZ0X173M" for post #3071: Sorry, this file type is not permitted for security reasons.
|
379 |
+
[06-08-2014 10:53:07] WPRSS > wprss_ftp_media_sideload_image:
|
380 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcRn1WEIEWFlHsAav0ZQKlX9vx4Kui0Mej87BJSjL-6LADtNqHlhOrK0sLhMdo_MNqJoB-Xx-Wv-" for post #3074: Sorry, this file type is not permitted for security reasons.
|
381 |
+
[06-08-2014 10:53:07] WPRSS > wprss_ftp_media_sideload_image:
|
382 |
+
Error downloading image "http://t3.gstatic.com/images?q=tbn:ANd9GcRn1WEIEWFlHsAav0ZQKlX9vx4Kui0Mej87BJSjL-6LADtNqHlhOrK0sLhMdo_MNqJoB-Xx-Wv-" for post #3074: Sorry, this file type is not permitted for security reasons.
|
383 |
+
[06-08-2014 10:53:08] WPRSS > wprss_ftp_media_sideload_image:
|
384 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcS8j8yHAbh9d9pe9tGouTejFqkM7a470Xq84rLVQIQC7dNSMZLF8SsT2P1NSNxjX0vc92lGrOxK" for post #3077: Sorry, this file type is not permitted for security reasons.
|
385 |
+
[06-08-2014 10:53:09] WPRSS > wprss_ftp_media_sideload_image:
|
386 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcS8j8yHAbh9d9pe9tGouTejFqkM7a470Xq84rLVQIQC7dNSMZLF8SsT2P1NSNxjX0vc92lGrOxK" for post #3077: Sorry, this file type is not permitted for security reasons.
|
387 |
+
[06-08-2014 10:53:10] WPRSS > wprss_ftp_media_sideload_image:
|
388 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcTu8vX9ZyhDVO0AF7_aaDNvT_vBTyi_bATw1EvEuYrOxVEAsZF3AcFl4WxbdLoFK0SwtX4tB2LZ" for post #3080: Sorry, this file type is not permitted for security reasons.
|
389 |
+
[06-08-2014 10:53:11] WPRSS > wprss_ftp_media_sideload_image:
|
390 |
+
Error downloading image "http://t1.gstatic.com/images?q=tbn:ANd9GcTu8vX9ZyhDVO0AF7_aaDNvT_vBTyi_bATw1EvEuYrOxVEAsZF3AcFl4WxbdLoFK0SwtX4tB2LZ" for post #3080: Sorry, this file type is not permitted for security reasons.
|
391 |
+
|
392 |
+
[06-08-2014 11:51:18] WPRSS > wprss_ftp_media_sideload_image:
|
393 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTUUl22oIrVOLi5x71lHblovCmePnBYEhXc2YZfL1y7GSy6G6Sb0rD-gN0ebuJySMsVmWwUjP2v" for post #3107: Sorry, this file type is not permitted for security reasons.
|
394 |
+
[06-08-2014 11:51:19] WPRSS > wprss_ftp_media_sideload_image:
|
395 |
+
Error downloading image "http://t0.gstatic.com/images?q=tbn:ANd9GcTUUl22oIrVOLi5x71lHblovCmePnBYEhXc2YZfL1y7GSy6G6Sb0rD-gN0ebuJySMsVmWwUjP2v" for post #3107: Sorry, this file type is not permitted for security reasons.
|
396 |
+
[06-08-2014 11:51:19] WPRSS > wprss_ftp_media_sideload_image:
|
397 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSD3uNnu6hgx732lS8FZbYkRUPsVNAMmix1BnWOtMKvTkNP8aNUnuVGzTmLJv6ky7r_FV0sQ4Q0" for post #3110: Sorry, this file type is not permitted for security reasons.
|
398 |
+
[06-08-2014 11:51:20] WPRSS > wprss_ftp_media_sideload_image:
|
399 |
+
Error downloading image "http://t2.gstatic.com/images?q=tbn:ANd9GcSD3uNnu6hgx732lS8FZbYkRUPsVNAMmix1BnWOtMKvTkNP8aNUnuVGzTmLJv6ky7r_FV0sQ4Q0" for post #3110: Sorry, this file type is not permitted for security reasons.
|
400 |
+
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== WP RSS Aggregator ===
|
2 |
-
Contributors: jeangalea
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=X9GP6BL4BLXBJ
|
4 |
Plugin URI: http://www.wprssaggregator.com
|
5 |
Tags: rss, feeds, aggregation, rss to post, autoblog aggregator, rss import, feed aggregator, rss aggregator, multiple rss feeds, multi rss feeds, rss multi importer, feed import, feed import, multiple feed import, feed aggregation, rss feader, feed reader, feed to post, multiple feeds, multi feed importer, multi feed import, multi import, autoblogging, autoblogger
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 3.9.1
|
8 |
-
Stable tag: 4.3
|
9 |
License: GPLv2 or later
|
10 |
Imports and aggregates multiple RSS Feeds using SimplePie. Outputs feeds sorted by date (latest first).
|
11 |
|
@@ -45,15 +45,16 @@ To [display your imported feed items](http://wordpress.org/plugins/wp-rss-aggreg
|
|
45 |
* Integrated with the Simplepie library that come with WordPress. This includes RSS 0.91 and RSS 1.0 formats, the popular RSS 2.0 format, Atom etc.
|
46 |
|
47 |
= Premium Add-Ons =
|
48 |
-
Add-Ons that add more functionality to the core plugin are
|
49 |
|
50 |
-
* [Feed to Post](http://www.wprssaggregator.com/extensions/feed-to-post) - an advanced importer that lets you import RSS feeds into posts or custom post types. Populate a website in minutes (autoblog).
|
51 |
* [Keyword Filtering](http://www.wprssaggregator.com/extensions/keyword-filtering) - filter imported feeds based on keywords, so you only get items you're interested in.
|
52 |
* [Excerpts & Thumbnails](http://www.wprssaggregator.com/extensions/excerpts-thumbnails) - display excerpts and thumbnails together with the title, date and source.
|
53 |
* [Categories](http://www.wprssaggregator.com/extensions/categories) - categorise your feed sources and display items from a particular category at will within your site.
|
|
|
54 |
|
55 |
= Demo =
|
56 |
-
The plugin can be seen in use on the [demo page](http://www.wprssaggregator.com/demo/).
|
57 |
|
58 |
= Video Walkthrough =
|
59 |
[youtube http://www.youtube.com/watch?v=5J-S2vXtQ5w]
|
@@ -61,16 +62,6 @@ The plugin can be seen in use on the [demo page](http://www.wprssaggregator.com/
|
|
61 |
= Documentation =
|
62 |
Instructions for plugin usage are available on the plugin's [documentation page](http://www.wprssaggregator.com/documentation/).
|
63 |
|
64 |
-
= Credit =
|
65 |
-
Created by Jean Galea from [WP Mayor](http://www.wpmayor.com)
|
66 |
-
|
67 |
-
= Technical Stuff =
|
68 |
-
WP RSS Aggregator uses the SimplePie class to import and handle feeds, and stores all feed sources and feed items as custom post types in the WordPress default table structure, thus no custom tables are added.
|
69 |
-
|
70 |
-
= Translations =
|
71 |
-
* Italian - Davide De Maestri
|
72 |
-
* Spanish - Andrew Kurtis
|
73 |
-
|
74 |
= As featured on =
|
75 |
* [WP Beginner](http://www.wpbeginner.com/plugins/how-to-fetch-feeds-in-wordpress-using-wp-rss-aggregator/)
|
76 |
* [WPEXplorer](http://www.wpexplorer.com/custom-rss-aggregator-plugin/)
|
@@ -85,6 +76,10 @@ WP RSS Aggregator uses the SimplePie class to import and handle feeds, and store
|
|
85 |
* [WPulsar](http://www.wpulsar.com/wp-rss-aggregator-plugin-feed-to-posts-keyword-filtering-review/)
|
86 |
* [Kevin Muldoon](http://www.kevinmuldoon.com/wp-rss-aggregator-wordpress-plugin/)
|
87 |
|
|
|
|
|
|
|
|
|
88 |
== Installation ==
|
89 |
|
90 |
1. Upload the `wp-rss-aggregator` folder to the `/wp-content/plugins/` directory
|
@@ -100,11 +95,15 @@ The parameters accepted are:
|
|
100 |
* link_after
|
101 |
* limit
|
102 |
* source
|
|
|
|
|
103 |
|
104 |
An example of a shortcode with parameters:
|
105 |
`[wp_rss_aggregator link_before='<li class="feed-link">' link_after='</li>']`
|
106 |
It is advisable to use the 'HTML' view of the editor when inserting the shortcode with paramters.
|
107 |
|
|
|
|
|
108 |
__Usage within theme files__
|
109 |
|
110 |
An example of a function call from within the theme's files:
|
@@ -163,6 +162,11 @@ The full documentation section can be found on the [WP RSS Aggregator website](w
|
|
163 |
|
164 |
== Changelog ==
|
165 |
|
|
|
|
|
|
|
|
|
|
|
166 |
= 4.3 (2014-08-04) =
|
167 |
* New Feature: Feed items now also import authors.
|
168 |
* Enhanced: Custom feed is now in RSS 2.0 format.
|
1 |
=== WP RSS Aggregator ===
|
2 |
+
Contributors: jeangalea, wprssaggregator, mekku, xedin.unknown
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=X9GP6BL4BLXBJ
|
4 |
Plugin URI: http://www.wprssaggregator.com
|
5 |
Tags: rss, feeds, aggregation, rss to post, autoblog aggregator, rss import, feed aggregator, rss aggregator, multiple rss feeds, multi rss feeds, rss multi importer, feed import, feed import, multiple feed import, feed aggregation, rss feader, feed reader, feed to post, multiple feeds, multi feed importer, multi feed import, multi import, autoblogging, autoblogger
|
6 |
Requires at least: 3.3
|
7 |
Tested up to: 3.9.1
|
8 |
+
Stable tag: 4.3.1
|
9 |
License: GPLv2 or later
|
10 |
Imports and aggregates multiple RSS Feeds using SimplePie. Outputs feeds sorted by date (latest first).
|
11 |
|
45 |
* Integrated with the Simplepie library that come with WordPress. This includes RSS 0.91 and RSS 1.0 formats, the popular RSS 2.0 format, Atom etc.
|
46 |
|
47 |
= Premium Add-Ons =
|
48 |
+
Add-Ons that add more functionality to the core plugin are [available for purchase](http://www.wprssaggregator.com/extensions/).
|
49 |
|
50 |
+
* [Feed to Post](http://www.wprssaggregator.com/extensions/feed-to-post) - an advanced importer that lets you import RSS feeds into posts or custom post types. Populate a website in minutes (autoblog). This is the most popular extension.
|
51 |
* [Keyword Filtering](http://www.wprssaggregator.com/extensions/keyword-filtering) - filter imported feeds based on keywords, so you only get items you're interested in.
|
52 |
* [Excerpts & Thumbnails](http://www.wprssaggregator.com/extensions/excerpts-thumbnails) - display excerpts and thumbnails together with the title, date and source.
|
53 |
* [Categories](http://www.wprssaggregator.com/extensions/categories) - categorise your feed sources and display items from a particular category at will within your site.
|
54 |
+
* [WordAi](http://www.wprssaggregator.com/extension/wordai/) - WordAi allows users to take an RSS feed and turn it into new content that is both completely unique and completely readable..
|
55 |
|
56 |
= Demo =
|
57 |
+
The core plugin can be seen in use on the [demo page](http://www.wprssaggregator.com/demo/).
|
58 |
|
59 |
= Video Walkthrough =
|
60 |
[youtube http://www.youtube.com/watch?v=5J-S2vXtQ5w]
|
62 |
= Documentation =
|
63 |
Instructions for plugin usage are available on the plugin's [documentation page](http://www.wprssaggregator.com/documentation/).
|
64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
= As featured on =
|
66 |
* [WP Beginner](http://www.wpbeginner.com/plugins/how-to-fetch-feeds-in-wordpress-using-wp-rss-aggregator/)
|
67 |
* [WPEXplorer](http://www.wpexplorer.com/custom-rss-aggregator-plugin/)
|
76 |
* [WPulsar](http://www.wpulsar.com/wp-rss-aggregator-plugin-feed-to-posts-keyword-filtering-review/)
|
77 |
* [Kevin Muldoon](http://www.kevinmuldoon.com/wp-rss-aggregator-wordpress-plugin/)
|
78 |
|
79 |
+
= Translations =
|
80 |
+
* Italian - Davide De Maestri
|
81 |
+
* Spanish - Andrew Kurtis
|
82 |
+
|
83 |
== Installation ==
|
84 |
|
85 |
1. Upload the `wp-rss-aggregator` folder to the `/wp-content/plugins/` directory
|
95 |
* link_after
|
96 |
* limit
|
97 |
* source
|
98 |
+
* exclude
|
99 |
+
* pagination
|
100 |
|
101 |
An example of a shortcode with parameters:
|
102 |
`[wp_rss_aggregator link_before='<li class="feed-link">' link_after='</li>']`
|
103 |
It is advisable to use the 'HTML' view of the editor when inserting the shortcode with paramters.
|
104 |
|
105 |
+
For a full list of shortcode parameters and usage guide please refer to the [documentation](http://www.wprssaggregator.com/docs/shortcodes/).
|
106 |
+
|
107 |
__Usage within theme files__
|
108 |
|
109 |
An example of a function call from within the theme's files:
|
162 |
|
163 |
== Changelog ==
|
164 |
|
165 |
+
= 4.3.1 (2014-08-08) =
|
166 |
+
* Enhanced: Better wording on settings page.
|
167 |
+
* Fixed bug: The Links Behaviour option in the settings was not working.
|
168 |
+
* Fixed bug: The wrong feed items were being shown for some sources when using the "View Items" row action.
|
169 |
+
|
170 |
= 4.3 (2014-08-04) =
|
171 |
* New Feature: Feed items now also import authors.
|
172 |
* Enhanced: Custom feed is now in RSS 2.0 format.
|
wp-rss-aggregator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP RSS Aggregator
|
4 |
Plugin URI: http://www.wprssaggregator.com
|
5 |
Description: Imports and aggregates multiple RSS Feeds using SimplePie
|
6 |
-
Version: 4.3
|
7 |
Author: Jean Galea
|
8 |
Author URI: http://www.wprssaggregator.com
|
9 |
License: GPLv2
|
@@ -29,7 +29,7 @@
|
|
29 |
|
30 |
/**
|
31 |
* @package WPRSSAggregator
|
32 |
-
* @version 4.3
|
33 |
* @since 1.0
|
34 |
* @author Jean Galea <info@jeangalea.com>
|
35 |
* @copyright Copyright (c) 2012-2014, Jean Galea
|
@@ -43,7 +43,7 @@
|
|
43 |
|
44 |
// Set the version number of the plugin.
|
45 |
if( !defined( 'WPRSS_VERSION' ) )
|
46 |
-
define( 'WPRSS_VERSION', '4.3', true );
|
47 |
|
48 |
// Set the database version number of the plugin.
|
49 |
if( !defined( 'WPRSS_DB_VERSION' ) )
|
3 |
Plugin Name: WP RSS Aggregator
|
4 |
Plugin URI: http://www.wprssaggregator.com
|
5 |
Description: Imports and aggregates multiple RSS Feeds using SimplePie
|
6 |
+
Version: 4.3.1
|
7 |
Author: Jean Galea
|
8 |
Author URI: http://www.wprssaggregator.com
|
9 |
License: GPLv2
|
29 |
|
30 |
/**
|
31 |
* @package WPRSSAggregator
|
32 |
+
* @version 4.3.1
|
33 |
* @since 1.0
|
34 |
* @author Jean Galea <info@jeangalea.com>
|
35 |
* @copyright Copyright (c) 2012-2014, Jean Galea
|
43 |
|
44 |
// Set the version number of the plugin.
|
45 |
if( !defined( 'WPRSS_VERSION' ) )
|
46 |
+
define( 'WPRSS_VERSION', '4.3.1', true );
|
47 |
|
48 |
// Set the database version number of the plugin.
|
49 |
if( !defined( 'WPRSS_DB_VERSION' ) )
|