Comunidad de diseño web y desarrollo en internet online

Error en el plugin Flickr comment Importer: Invalid argument

Citar            
MensajeEscrito el 18 Mar 2010 10:30 pm
Hola,

Tengo instalado el plugin "Flickr comment Importer" y alguna vez que he entrado en el panel de Wordpress me sale arriba el siguiente error:

Wordpress escribió:

Warning: Invalid argument supplied for foreach() in /homepages/33/d282044401/htdocs/wp-content/plugins/flickr-comment-importer/flickr-comment-importer.php on line 19


Dejo por aqui el codigo del plugin:

Código PHP :

< ?php
/*
Plugin Name: Flickr comment Importer
Plugin URI: <a href="http://inphotos.org/" rel="nofollow">http://inphotos.org/</a>
Description: Add Flickr comments to your blog posts. <a href='options-general.php?page=flickr-comment-importer.php'>Configuration Page</a>
Author: Donncha O Caoimh
Version: 0.1
Author URI: <a href="http://inphotos.org/" rel="nofollow">http://inphotos.org/</a>
*/

require_once (ABSPATH . WPINC . '/rss.php');

function flickr_comment_importer() {
    global $wpdb;
    $url = get_option( 'flickrcommenturl' );
    if( !$url )
        return;
    $rss = @fetch_rss( $url );
    foreach( $rss- >items as $item ) {
        $post_name        = str_replace( "comment-about-", "", sanitize_title( $item['title'] ) );
        $comment_author        = addslashes( wp_specialchars( "Flickr: " . substr( str_replace( "[email protected] (", "", wp_specialchars( $item[ 'author' ] ) ), 0, -1 ) ) );
        $comment_author_email    = '[email protected]';
        $comment_author_url    = wp_specialchars( $item[ 'link' ] );
        $comment_content    = addslashes( strip_tags( $item[ 'description' ] ) );
        $comment_content    = substr( $comment_content, strpos( $comment_content, 'comment:' ) + 9 );
        $comment_type        = '';
        $user_ID        = '';

        $comment_date = date("Y-m-d h:i:s", strtotime( $item[ 'pubdate' ] ) );
        $comment_date_gmt = date("Y-m-d h:i:s", strtotime( $item[ 'pubdate' ] ) + 28800 );
        if( isset( $cached_details[ $post_name ] ) == false ) {
            $cached_details[ $post_name ] = $wpdb- >get_var( "SELECT ID FROM {$wpdb- >posts} WHERE post_name = '$post_name'" );
        }
        if( $cached_details[ $post_name ] != null &amp;&amp; null == $wpdb- >get_var( "SELECT comment_ID FROM {$wpdb- >comments} WHERE comment_author_url='{$comment_author_url}'" ) ) {
            $comment_post_ID = $cached_details[ $post_name ];
            $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID');
            $commentdata['comment_post_ID'] = (int) $commentdata['comment_post_ID'];
            $commentdata['user_ID']         = (int) $commentdata['user_ID'];
            $commentdata['comment_date']     = $comment_date;
            $commentdata['comment_date_gmt'] = $comment_date_gmt;

            $commentdata['comment_author_IP'] = '127.0.0.1';
            $commentdata['comment_agent']     = "Flickr Add Comment Agent";
            $commentdata['comment_approved'] = 0;
            $comment_ID = wp_insert_comment($commentdata);
        }
    }
}

if ( ! function_exists('wp_nonce_field') ) {
    function fci_nonce_field($action = -1) {
        return;
    }
    $fci_nonce = -1;
} else {
    function fci_nonce_field($action = -1) {
        return wp_nonce_field($action);
    }
    $fci_nonce = 'fci-update-key';
}

function fci_config_page() {
    global $wpdb;
    if ( function_exists('add_submenu_page') )
        add_submenu_page('options-general.php', __('Flickr Comments'), __('Flickr Comments'), 'manage_options', __FILE__, 'fci_conf');
}

function fci_conf() {
    global $fci_nonce;
    if ( isset($_POST['submit']) ) {
        if ( function_exists('current_user_can') &amp;&amp; !current_user_can('manage_options') )
            die(__('Cheatin’ uh?'));

        check_admin_referer($fci_nonce);
        $rss = @fetch_rss( $_POST[ 'flickrcommenturl' ] );
        if( is_object( $rss ) == false || empty( $rss- >items ) ) {
            $invalid_url = true;
        } else {
            update_option( 'flickrcommenturl', $_POST[ 'flickrcommenturl' ] );
        }
    }
? >

< div class="wrap" >
< h2 >< ?php _e('Flickr Comment Importer'); ? >< /h2 >
    < p >< ?php _e( "If you use Flickr to host your photos this plugin will import the comments from your Flickr stream into your blog. Enter the RSS feed on Flickr's <a href='http://www.flickr.com/recent_activity.gne'>recent activity page</a> in the box below." );? >< /p >
    < p >< ?php _e( "<strong>Usage and Restrictions</strong>
<ul>
<li> Your posts must have the same name as the Flickr photo. For example, <a href='http://inphotos.org/the-thieving-duck/'>The Thieving Duck</a> blog post matches <a href='http://www.flickr.com/photos/donncha/222686138/'>The Thieving Duck</a> on Flickr. It's ok to have multiple Flickr photos with the same name as one blog post.</li>
<li> You can't import all your old comments. It will only work with whatever Flickr puts in it's comment feed which is the last ten comments.</li>
<li> Your comments are imported when you're doing stuff in your WordPress backend and placed into the moderation queue. Make sure you login to WordPress often if you have a busy Flickr stream!</li>
</ul>
" );? >< /p >

< form action="" method="post" id="fci-conf" style="margin: auto; " >
< ?php fci_nonce_field($fci_nonce) ? >
< h3 >< label for="key" >< ?php _e('Flickr Recent Activity RSS Feed'); ? >< /label >< /h3 >
< p >< input id="url" name="flickrcommenturl" type="text" size="85" maxlength="200" value="< ?php echo get_option('flickrcommenturl'); ? >" style="font-family: 'Courier New', Courier, mono; font-size: 1.5em;" / >< /p >
< ?php if ( $invalid_url ) { ? >
    < p style="padding: .5em; background-color: #f33; color: #fff; font-weight: bold; width: 30em" >< ?php _e('That URL is not a RSS feed. Double-check it.'); ? >< /p >
< ?php } ? >
    < p class="submit" >< input type="submit" name="submit" value="< ?php _e('Update RSS Feed &raquo;'); ? >" / >< /p >
< /form >
< p >< ?php _e( "Don't forget to visit <a href='http://inphotos.org/'>In Photos</a>!" ); ? >
< /div >
< ?php
}

add_action('admin_head', 'flickr_comment_importer');
add_action('admin_menu', 'fci_config_page');

? >


¿Alguien sabe por que puede ser?

Un saludo y gracias.

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 19 Mar 2010 02:34 am
intenta cambiar esta linea:

Código :

foreach( $rss- >items as $item ) {


por esta:

Código :

foreach( $rss->items as $item ) {

(si, sin el espacio de ->)

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 19 Mar 2010 03:07 pm
Que raro, lo he comprobado en el editor de mi WP y ese espacio no esta. Copio de nuevo el codigo:

Código PHP :

<?php
/*
Plugin Name: Flickr comment Importer
Plugin URI: http://inphotos.org/
Description: Add Flickr comments to your blog posts. <a href='options-general.php?page=flickr-comment-importer.php'>Configuration Page</a>
Author: Donncha O Caoimh
Version: 0.1
Author URI: http://inphotos.org/
*/ 

require_once (ABSPATH . WPINC . '/rss.php');

function flickr_comment_importer() {
   global $wpdb;
   $url = get_option( 'flickrcommenturl' );
   if( !$url )
      return;
   $rss = @fetch_rss( $url );
   foreach( $rss->items as $item ) {
      $post_name      = str_replace( "comment-about-", "", sanitize_title( $item['title'] ) );
      $comment_author      = addslashes( wp_specialchars( "Flickr: " . substr( str_replace( "[email protected] (", "", wp_specialchars( $item[ 'author' ] ) ), 0, -1 ) ) );
      $comment_author_email   = '[email protected]';
      $comment_author_url   = wp_specialchars( $item[ 'link' ] );
      $comment_content   = addslashes( strip_tags( $item[ 'description' ] ) );
      $comment_content   = substr( $comment_content, strpos( $comment_content, 'comment:' ) + 9 );
      $comment_type      = '';
      $user_ID      = '';

      $comment_date = date("Y-m-d h:i:s", strtotime( $item[ 'pubdate' ] ) );
      $comment_date_gmt = date("Y-m-d h:i:s", strtotime( $item[ 'pubdate' ] ) + 28800 );
      if( isset( $cached_details[ $post_name ] ) == false ) {
         $cached_details[ $post_name ] = $wpdb->get_var( "SELECT ID FROM {$wpdb->posts} WHERE post_name = '$post_name'" );
      }
      if( $cached_details[ $post_name ] != null && null == $wpdb->get_var( "SELECT comment_ID FROM {$wpdb->comments} WHERE comment_author_url='{$comment_author_url}'" ) ) {
         $comment_post_ID = $cached_details[ $post_name ];
         $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID');
         $commentdata['comment_post_ID'] = (int) $commentdata['comment_post_ID'];
         $commentdata['user_ID']         = (int) $commentdata['user_ID'];
         $commentdata['comment_date']     = $comment_date;
         $commentdata['comment_date_gmt'] = $comment_date_gmt;

         $commentdata['comment_author_IP'] = '127.0.0.1';
         $commentdata['comment_agent']     = "Flickr Add Comment Agent";
         $commentdata['comment_approved'] = 0;
         $comment_ID = wp_insert_comment($commentdata);
      }
   }
}

if ( ! function_exists('wp_nonce_field') ) {
   function fci_nonce_field($action = -1) {
      return;   
   }
   $fci_nonce = -1;
} else {
   function fci_nonce_field($action = -1) {
      return wp_nonce_field($action);
   }
   $fci_nonce = 'fci-update-key';
}

function fci_config_page() {
   global $wpdb;
   if ( function_exists('add_submenu_page') )
      add_submenu_page('options-general.php', __('Flickr Comments'), __('Flickr Comments'), 'manage_options', __FILE__, 'fci_conf');
}

function fci_conf() {
   global $fci_nonce;
   if ( isset($_POST['submit']) ) {
      if ( function_exists('current_user_can') && !current_user_can('manage_options') )
         die(__('Cheatin’ uh?'));

      check_admin_referer($fci_nonce);
      $rss = @fetch_rss( $_POST[ 'flickrcommenturl' ] );
      if( is_object( $rss ) == false || empty( $rss->items ) ) {
         $invalid_url = true;
      } else {
         update_option( 'flickrcommenturl', $_POST[ 'flickrcommenturl' ] );
      }
   }
?>

<div class="wrap">
<h2><?php _e('Flickr Comment Importer'); ?></h2>
   <p><?php _e( "If you use Flickr to host your photos this plugin will import the comments from your Flickr stream into your blog. Enter the RSS feed on Flickr's <a href='http://www.flickr.com/recent_activity.gne'>recent activity page</a> in the box below." );?></p>
   <p><?php _e( "<strong>Usage and Restrictions</strong><br /><ul><li> Your posts must have the same name as the Flickr photo. For example, <a href='http://inphotos.org/the-thieving-duck/'>The Thieving Duck</a> blog post matches <a href='http://www.flickr.com/photos/donncha/222686138/'>The Thieving Duck</a> on Flickr. It's ok to have multiple Flickr photos with the same name as one blog post.</li><li> You can't import all your old comments. It will only work with whatever Flickr puts in it's comment feed which is the last ten comments.</li><li> Your comments are imported when you're doing stuff in your WordPress backend and placed into the moderation queue. Make sure you login to WordPress often if you have a busy Flickr stream!</li></ul>" );?></p>

<form action="" method="post" id="fci-conf" style="margin: auto; ">
<?php fci_nonce_field($fci_nonce) ?>
<h3><label for="key"><?php _e('Flickr Recent Activity RSS Feed'); ?></label></h3>
<p><input id="url" name="flickrcommenturl" type="text" size="85" maxlength="200" value="<?php echo get_option('flickrcommenturl'); ?>" style="font-family: 'Courier New', Courier, mono; font-size: 1.5em;" /></p>
<?php if ( $invalid_url ) { ?>
   <p style="padding: .5em; background-color: #f33; color: #fff; font-weight: bold; width: 30em"><?php _e('That URL is not a RSS feed. Double-check it.'); ?></p>
<?php } ?>
   <p class="submit"><input type="submit" name="submit" value="<?php _e('Update RSS Feed &raquo;'); ?>" /></p>
</form>
<p><?php _e( "Don't forget to visit <a href='http://inphotos.org/'>In Photos</a>!" ); ?>
</div>
<?php
}

add_action('admin_head', 'flickr_comment_importer');
add_action('admin_menu', 'fci_config_page');

?>


Gracias de todos modos por contestar, y lo siento.

Un saludo.

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 19 Mar 2010 04:15 pm

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 19 Mar 2010 04:22 pm

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 19 Mar 2010 07:23 pm
intenta copiar y pegar el siguiente (previo backup)

Código :

<?php 
/* 
Plugin Name: Flickr comment Importer 
Plugin URI: <a href="http://inphotos.org/" rel="nofollow">http://inphotos.org/</a> 
Description: Add Flickr comments to your blog posts. <a href='options-general.php?page=flickr-comment-importer.php'>Configuration Page</a> 
Author: Donncha O Caoimh 
Version: 0.1 
Author URI: <a href="http://inphotos.org/" rel="nofollow">http://inphotos.org/</a> 
*/ 
 
require_once (ABSPATH . WPINC . '/rss.php'); 
 
function flickr_comment_importer() { 
    global $wpdb; 
    $url = get_option( 'flickrcommenturl' ); 
    if( !$url ) 
        return; 
    $rss = fetch_rss( $url ); 
    foreach( $rss->items as $item ) { 
        $post_name        = str_replace( "comment-about-", "", sanitize_title( $item['title'] ) ); 
        $comment_author        = addslashes( wp_specialchars( "Flickr: " . substr( str_replace( "[email protected] (", "", wp_specialchars( $item[ 'author' ] ) ), 0, -1 ) ) ); 
        $comment_author_email    = '[email protected]'; 
        $comment_author_url    = wp_specialchars( $item[ 'link' ] ); 
        $comment_content    = addslashes( strip_tags( $item[ 'description' ] ) ); 
        $comment_content    = substr( $comment_content, strpos( $comment_content, 'comment:' ) + 9 ); 
        $comment_type        = ''; 
        $user_ID        = ''; 
 
        $comment_date = date("Y-m-d h:i:s", strtotime( $item[ 'pubdate' ] ) ); 
        $comment_date_gmt = date("Y-m-d h:i:s", strtotime( $item[ 'pubdate' ] ) + 28800 ); 
        if( isset( $cached_details[ $post_name ] ) == false ) { 
            $cached_details[ $post_name ] = $wpdb->get_var( "SELECT ID FROM {$wpdb->posts} WHERE post_name = '$post_name'" ); 
        } 
        if( $cached_details[ $post_name ] != null &amp;&amp; null == $wpdb->get_var( "SELECT comment_ID FROM {$wpdb->comments} WHERE comment_author_url='{$comment_author_url}'" ) ) { 
            $comment_post_ID = $cached_details[ $post_name ]; 
            $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID'); 
            $commentdata['comment_post_ID'] = (int) $commentdata['comment_post_ID']; 
            $commentdata['user_ID']         = (int) $commentdata['user_ID']; 
            $commentdata['comment_date']     = $comment_date; 
            $commentdata['comment_date_gmt'] = $comment_date_gmt; 
 
            $commentdata['comment_author_IP'] = '127.0.0.1'; 
            $commentdata['comment_agent']     = "Flickr Add Comment Agent"; 
            $commentdata['comment_approved'] = 0; 
            $comment_ID = wp_insert_comment($commentdata); 
        } 
    } 
} 
 
if ( ! function_exists('wp_nonce_field') ) { 
    function fci_nonce_field($action = -1) { 
        return; 
    } 
    $fci_nonce = -1; 
} else { 
    function fci_nonce_field($action = -1) { 
        return wp_nonce_field($action); 
    } 
    $fci_nonce = 'fci-update-key'; 
} 
 
function fci_config_page() { 
    global $wpdb; 
    if ( function_exists('add_submenu_page') ) 
        add_submenu_page('options-general.php', __('Flickr Comments'), __('Flickr Comments'), 'manage_options', __FILE__, 'fci_conf'); 
} 
 
function fci_conf() { 
    global $fci_nonce; 
    if ( isset($_POST['submit']) ) { 
        if ( function_exists('current_user_can') &amp;&amp; !current_user_can('manage_options') ) 
            die(__('Cheatin’ uh?')); 
 
        check_admin_referer($fci_nonce); 
        $rss = fetch_rss( $_POST[ 'flickrcommenturl' ] ); 
        if( is_object( $rss ) == false || empty( $rss->items ) ) { 
            $invalid_url = true; 
        } else { 
            update_option( 'flickrcommenturl', $_POST[ 'flickrcommenturl' ] ); 
        } 
    } 
? > 
 
< div class="wrap" > 
< h2 >< ?php _e('Flickr Comment Importer'); ? >< /h2 > 
    < p >< ?php _e( "If you use Flickr to host your photos this plugin will import the comments from your Flickr stream into your blog. Enter the RSS feed on Flickr's <a href='http://www.flickr.com/recent_activity.gne'>recent activity page</a> in the box below." );? >< /p > 
    < p >< ?php _e( "<strong>Usage and Restrictions</strong> 
<ul> 
<li> Your posts must have the same name as the Flickr photo. For example, <a href='http://inphotos.org/the-thieving-duck/'>The Thieving Duck</a> blog post matches <a href='http://www.flickr.com/photos/donncha/222686138/'>The Thieving Duck</a> on Flickr. It's ok to have multiple Flickr photos with the same name as one blog post.</li> 
<li> You can't import all your old comments. It will only work with whatever Flickr puts in it's comment feed which is the last ten comments.</li> 
<li> Your comments are imported when you're doing stuff in your WordPress backend and placed into the moderation queue. Make sure you login to WordPress often if you have a busy Flickr stream!</li> 
</ul> 
" );? >< /p > 
 
< form action="" method="post" id="fci-conf" style="margin: auto; " > 
< ?php fci_nonce_field($fci_nonce) ? > 
< h3 >< label for="key" >< ?php _e('Flickr Recent Activity RSS Feed'); ? >< /label >< /h3 > 
< p >< input id="url" name="flickrcommenturl" type="text" size="85" maxlength="200" value="< ?php echo get_option('flickrcommenturl'); ? >" style="font-family: 'Courier New', Courier, mono; font-size: 1.5em;" / >< /p > 
< ?php if ( $invalid_url ) { ? > 
    < p style="padding: .5em; background-color: #f33; color: #fff; font-weight: bold; width: 30em" >< ?php _e('That URL is not a RSS feed. Double-check it.'); ? >< /p > 
< ?php } ? > 
    < p class="submit" >< input type="submit" name="submit" value="< ?php _e('Update RSS Feed &raquo;'); ? >" / >< /p > 
< /form > 
< p >< ?php _e( "Don't forget to visit <a href='http://inphotos.org/'>In Photos</a>!" ); ? > 
< /div > 
< ?php 
} 
 
add_action('admin_head', 'flickr_comment_importer'); 
add_action('admin_menu', 'fci_config_page'); 
 
?>

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 19 Mar 2010 08:54 pm
He hecho un backup del plugin y lo he sustituido por el tuyo, pero me ha dado el siguiente error:

WP escribió:

El plugin ha sido desactivado porque tus cambios han provocado un error fatal.

Parse error: syntax error, unexpected ';' in /homepages/33/d282044401/htdocs/wp-content/plugins/flickr-comment-importer/flickr-comment-importer.php on line 34


:cry:

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 20 Mar 2010 12:54 am
por alguna razon se cambio el & por su codigo representativo &amp;
busca esta linea:

Código :

        if( $cached_details[ $post_name ] != null &amp;&amp; null == $wpdb->get_var( "SELECT comment_ID FROM {$wpdb->comments} WHERE comment_author_url='{$comment_author_url}'" ) ) { 

y cambiala por esta otra

Código :

 if( $cached_details[ $post_name ] != null && null == $wpdb->get_var( "SELECT comment_ID FROM {$wpdb->comments} WHERE comment_author_url='{$comment_author_url}'" ) ) {

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 20 Mar 2010 10:06 am
Nada, ahora el mismo error pero en la linea 71:

WP escribió:

El plugin ha sido desactivado porque tus cambios han provocado un error fatal.

Parse error: syntax error, unexpected ';' in /homepages/33/d282044401/htdocs/wp-content/plugins/flickr-comment-importer/flickr-comment-importer.php on line 71

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 20 Mar 2010 05:06 pm
lo mismo, son los &amp;
cambialos

Código :

if ( function_exists('current_user_can') && !current_user_can('manage_options') )

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 20 Mar 2010 05:29 pm
Siento dar tanto la lata, pero he cambiado todos los &amp; por & y me da nuevamente un error en la linea 82 :(

Un saludo.

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 20 Mar 2010 06:46 pm
y si actualizas a la version 0.2?
http://downloads.wordpress.org/plugin/flickr-comment-importer.0.2.zip

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 20 Mar 2010 06:59 pm
No sabia que habia otra version, como no me llego la actualizacion automatica. ¿En que enlace has visto que haya la version 0.2? porque cuando me meto en la web de los plugins solo encuentro la 0.1

Un saludo.

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 20 Mar 2010 08:00 pm
en wordpress pone como ultima la 0.1 pero te deja descargar la 0.2, supongo al developer no le va tanto el andar editando cosas despues de actualizar el plugin
http://wordpress.org/extend/plugins/flickr-comment-importer/

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 23 Mar 2010 04:16 pm
No veas con el desarrollador del plugin, porque en la web no viene que existe la version 0.2, y despues cuando te descargas el archivo y abres el .php pone que es la 0.1, pero si ves el readme.txt pone que es la 0.2, bueno, he sustituido el archivo y a ver si ya no me da fallos.

Un saludo.

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 24 Mar 2010 12:00 am
divertido el developer, suerte.

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox
Citar            
MensajeEscrito el 16 Sep 2010 08:46 am
Hola de nuevo,

Ahora, sin haber tocado nada, a parte del error, no me importa al fotoblog ningun comentario de Flickr, ¿alguien sabe que puedo hacer?

Un saludo.

Por ACALU

8 de clabLevel



 

Malaga

firefox
Citar            
MensajeEscrito el 17 Sep 2010 07:36 am
Harta de este plugin he encontrado otro que hace la misma funcion (y encima importa tambien los comentarios que hago yo misma), se llama "Live Flickr comment importer" (creo que para este asunto solo existen estos 2).

Un saludo.

Por ACALU

8 de clabLevel



 

Malaga

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.