CyberSEO

Status
Not open for further replies.

bvb

Regular Member
Joined
Aug 23, 2007
Messages
245
Reaction score
11
Hello,

I am looking to get this awesome plugin up and running. Anyone else using it?
 
If you have any questions, problems, suggestions, please post them here. I'll do my best to get all issues resolved.
 
Thanks cyber. My main issue is getting it to post.. It says content has been posted but nothing posts to the blog. Can you please take a look?

Thanks
 
  • If the post was pulled from the feed, it should appear at your blog immediately in case if:
  • you didn't set the "Posts Status" option to "Hold for review", "Save as draft", "Save as private";
  • you didn't assign some publication time delay the "Post Date Adjustment Range" fields.
I suggest you to look at your "All Posts" and see if there are any posts with "Scheduled" status.
 
Hey wassup ?

Question :

I have some posts/feeds that have already been published using CyberSEO. I would like to do a batch update is it possible to make an updates? Such as tags,post footer info.,etc.
 
Hi,
I have dilemma. I'm currently fetching content from 6 feeds.The content is coming in fine, however my posts come in totally out of numerically sequential order.

For instance the order is like so:
My Post 198

My Post 155
My Post 199

My Post 243

How do i fix this?

In other words i like for posts to read like so:

My Post 400
My Post 399
My Post 398
My Post 397
My Post 396

Thanks!
 
Hey wassup ?

Question :

I have some posts/feeds that have already been published using CyberSEO. I would like to do a batch update is it possible to make an updates? Such as tags,post footer info.,etc.

Yes, you can do it with "Global Posts Modification Tools" (CyberSEO -> Tools). There you can use the "PHP Code <?php .. ?>" field to make the CyberSEO plugin to modify all existing posts. All the post fields (title, content etc) are available via the array $post, described here.

For example if you want to add some footer text (say "Copyright (c) 2011") to every existing post, you need to execute the following code:

Code:
$post ['post_content'] = $post ['post_content'] . "<br />Copyright (c) 2011";
In case if you want to change the post titles (say put the "MY POST: " phrase before each one), you can do it as easy as this:

Code:
$post ['post_title'] = "MY POST: " . $post ['post_title'];
As you can see everything is very easy, but it requires some basic PHP knowledge because the code will be different in every specific case. So tell me what exactly you want changes you wanna apply to your existing posts.
 
Cyber- looks like the videos are posting now from youtube. How can I make it so it just posts the video and nothing else from youtube?

Also, can you help me create a nice image feed? I want it to save the images on my site and use alt and title tags if possible.

Thanks
 
Cyber- looks like the videos are posting now from youtube. How can I make it so it just posts the video and nothing else from youtube?

1) Syndicate the YouTube feed (e.g. http://gdata.youtube.com/feeds/base/videos?q=Funny).

2) Put the following code into the ?PHP Code <?php .. ?>? box:

Code:
// assign preferred width and height of youtube video
$width = 425;
$height = 355;
// make sure the feed has the <content> tag. If not, use <description>
if ($post ['post_content'] == '') {
    $post ['post_content'] = $post ['post_excerpt'];
}
// extract youtube clip id
preg_match ( "/www.youtube.com\/watch\?v=(.*?)[&|\"]/s", $post ['post_content'], $matches );
$clip_id = $matches [1];
// create youtube player code and insert the extracted clip id there
$video = '<p><object width="' . $width . '" height="' . $height . '"><param name="movie" value="http://www.youtube.com/v/' . $clip_id . '">
</param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' . $clip_id . 
'"type="application/x-shockwave-flash" wmode="transparent" width="' . $width . '" height="' . $height . '"></embed></object></p>';
// extract the clip description
preg_match ( "/<span>(.*?)<\/span>/s", $post ['post_content'], $matches );
$post ['post_content'] = "<p>" . $video . $matches [1] . "</p>\n";

3) Save the settings and pull the feed.

If you don't want to pull video descriptions, simple alter the last line as following:

Code:
$post ['post_content'] = "<p>" . $video . "</p>\n";

It looks like the OP has been banned. Did he break any of BHW rules?
 
CyberSEO 5.15 has been released today.

Changes:

Added possibility to display custom fields as XML tags in the blog?s RSS feed. To enable this function, simple add the following variable to your feed?s URL:
custom_tags=custom_field_name1[,custom_field_name1,...]

For example, if your WordPress posts have views and thumb custom fields, you can display them as tags in the RSS feed using this URL:
yourblog.com/feed/?custom_tags=views,thumb

Make sure to update your copy!
 
CyberSEO 5.15 has been released today.

Changes:

Added possibility to display custom fields as XML tags in the blog's RSS feed. To enable this function, simple add the following variable to your feed's URL:
custom_tags=custom_field_name1[,custom_field_name1,...]

For example, if your WordPress posts have views and thumb custom fields, you can display them as tags in the RSS feed using this URL:
yourblog.com/feed/?custom_tags=views,thumb

Make sure to update your copy!

I am using the remove links in images only option
But for some reason its removing all links.
My site is applefanboynews.com
 
It's look like there is a bug in the new "Remove links from images only" option. Gonna fix it within a few days.
 
i have cyberseo and it's a great product. I defintely recommend it to everyone.
 
What problem did the last code you give me fix?

The images or edit problem?

No that was just a error in your custom PHP code.

The problem with the "Remove links from images only" option was caused by bug in the "Post links handling" routine, which was fixed in the new CyberSEO ver. 5.16. Thus please make sure to update your copy plugin.
 
what does Cyberseo actually do? is it anyway simular to wprobot? does it only post rss feeds?
 
what does Cyberseo actually do? is it anyway simular to wprobot? does it only post rss feeds?

I'd say that WPRobot is similar to CyberSEO but not vice verse because my plugin is at least older :)

The CyberSEO plugin is an universal RSS/XML syndicator which can parse any existing XML feeds (not just simple RSS ones), so it does everything that other premium autoblogging plugins do + it has many other unique features. I don't know such a task that can be done with other autoblogging scripts (Wp-o-Matic, FeedWordPress, WPRobot, Caffeinated Content etc) but can't with CyberSEO. If anybody knows - please let me know ;)

On the other hand, there are many things that can be done with CyberSEO only. For example, with CyberSEO plugin you can import ALL publiched posts from any WP blog, and it doesn't matter how many posts are available in the RSS feed. There is no other plugin which can do that. Also, the CyberSEO plugin has a built-in synonymizer which makes it the one and only autoblogging plugin on the market after Panda launch.

Hope my short explanation above answers to your questions.
 
Hi,

Interested....and your answers to the following would be helpful:

1. what's the difference between Unlimited edition and the Suite?
2. are you offering any discount for members here say for the suite?
3. I am interested to use your product to create a news site with images and videos that came with the news from various feeds/sources. -- Is cyberseo suite able to do this?
4. Is cyberseo created based on simplepie?

Thanks in advance
 
Status
Not open for further replies.
Back
Top