GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   CyberSEO Suite: Tips and Tricks (https://gfy.com/showthread.php?t=962586)

kjpp 03-17-2011 05:28 AM

I sent You login details to email.

puZcash 03-17-2011 10:43 AM

i was wondering if it's possible with CyberSeo to extract thumb from a video feed, store the thumb locally and add it as custom field to wp

just a punk 03-17-2011 10:54 AM

Easily :)

Description: http://www.cyberseo.net/wordpress-tube/

Examples:
http://www.planet-pussy.com/
http://www.coedsx.com/

just a punk 03-18-2011 03:32 AM

Quote:

Originally Posted by kjpp (Post 17985533)
I sent You login details to email.

When WordPress is trying to add post after pulling pictures to your server (this operation takes some time), it fails with "MySQL server has gone away" error message. This means that the operation took to long for your MySQL server.

To fixe this problem, try to increase the values of wait_timeout and interactive_timeout options in the "my.ini/mysqld" config.

kjpp 03-18-2011 04:05 AM

Quote:

Originally Posted by cyberxxx (Post 17987770)
To fixe this problem, try to increase the values of wait_timeout and interactive_timeout options in the "my.ini/mysqld" config.

I incresed this values and now everything work perfect. Thank You very much.
Great support to script.

Jdoughs 03-18-2011 04:09 AM

Great support man, impressive!

just a punk 03-18-2011 05:00 AM

You are welcome!

tonyparra 04-02-2011 10:41 PM

Help with the Plugin
 
Hi, nice plugin. Im playing around with it and i understand how to add data using the custom fields. What im confused with is the php because im no expert at php. Im using the freewptube theme, and using flowplayer for video playback. I typically use themes just for the design, and mod them to fit my needs. Im trying to use the dogfart xml flv feed for the website WatchingyourMomgoBlack.com:

Code:

<videos>
<updated>2010-12-27T00:00:00Z</updated><video><id>4287</id><title>Christina Skye</title>
<description>Like my homey Ice Cube said,...</description>
<paysite>Watching My Mom Go Black</paysite><tags/>
<clip_url>http://flash.dogfart.com/watchingmymomgoblack/</clip_url><screen_url>http://flash.dogfart.com/watchingmymomgoblack/</screen_url><clips><clip><flv>christina_skye-trailer1.flv</flv>
<duration>151</duration><screens><screen>christina_skye.jpg</screen></screens></clip>
</clips></video>

My custom fields are:
duration
hostedflv
paysite_title
paysite_url
star
thumb
join_now
sponsor
sponsorlink
time

Duration- I was able to pull using the feed. However, the duration came out like 151, when i need it to format like 1:51 or 2:30.

hostedflv- I see the flv file but its not hosted. Can i somehow use php to combine the <clip_url> and <flv> to make it a hostedflv that will fit into my theme? Or do i need to recode the theme to have 2 custom fields for that one call in flowplayer?

paysite_title- I am able to grab this with <paysite> so no issues.

paysite_url- I think in your documentation you show how to add this
//$post ['custom_fields'] ['paysite_url'] = 'HTTP://WWW.SITE.COM/';

Star- I am able to grab this with <title> so no issues. However i wish they actually gave their episodes a title instead of the stars name.

thumb- i have same issue with this as i have with the hostedflv field. The images are not linked but if i can combine <screen> and <screen_url> problem solved. So for hostedflv and thumb i need to create a url from it's path and file name.

join_now- Call to action link, below video usually straight to a join page similar to paysite url can i use this twice: //$post ['custom_fields'] ['paysite_url'] = 'HTTP://WWW.SITE.COM/'; ??

sponsor- i use this to talk about the sponsor using a small description of the program or their main site. Can this be inserted into the php code?

sponsorlink- just like with join_now and paysite_url, Im not sure if i can add this code multiple times //$post ['custom_fields'] ['paysite_url'] = 'HTTP://WWW.SITE.COM/';

time- This i would like to be a random number over 20:00. Since most sponsors dont tell the surfers how long the videos are that they are watching, i like to take a guess at it, so they know for sure there is more to the clip. If cyberseo can automate this for me that would be awesome.

Bonus: Post Tags- most xml feeds contain none. is there a way to insert tags that rotate on each post so that every single post doesnt have the exact same tags? If i could create a general list of tags for each feed that doesnt have them and have them rotated on a post by post basis that would also be awesome :).

So i kind of understand how to use your ultra flexible plugin but im not good with php, if you could help me tie this together it would be greatly appreciated :thumbsup

facialfreak 04-03-2011 01:15 AM

Great thread!!

just a punk 04-03-2011 01:41 AM

Go to your XML feed options page and do the following:

1) Insert this into the "Custom Fields" box:
Code:

screen_url::screen_url
screen::screen
clip_url::clip_url
flv::flv
duration::duration
paysite::paysite_title

2) Insert this into the "PHP Code <?php .. ?>" box:
Code:

// put the site link to paysite into the 'paysite_url' custom field according to Free WordPress Tube doc
$post ['custom_fields'] ['sponsorlink'] = $post ['custom_fields'] ['join_now'] = $post ['custom_fields'] ['paysite_url'] = 'HTTP://WWW.SITE.COM/';
// "sponsor" field
$post ['custom_fields'] ['sponsor'] = 'Use this to talk about the sponsor using a small description of the program or their main site.';
// format clip's duration as mm:ss
$post ['custom_fields'] ['duration'] = date ( 'i:s', $post ['custom_fields'] ['duration'] );
// fake random time from 0:20:00 to 2:00:00
$post ['custom_fields'] ['time'] = date ( 'i:s', rand ( 1200, 72000 ) );
// generate random tags. Don't forget to replace tag1, tag2 etc with the prefered tag names. Also don't forget to enable "Create tags from category names" option on the feed settings page
$post ['categories'] [] = array_rand ( array ("tag1", "tag2", "tag3", "tag4" ) );
// create an URL of thumb from it's path and file name
$screen = $post ['custom_fields'] ['screen'];
if (is_array ( $screen )) {
        $post ['custom_fields'] ['thumb'] = $post ['custom_fields'] ['screen_url'] . $screen [rand ( 0, count ( $screen ) - 1 )];
} else {
        $post ['custom_fields'] ['thumb'] = $post ['custom_fields'] ['screen_url'] . $screen;
}
// uncomment the line below to store thumbnails on your server
// cseo_store_image ('thumb', $post ['post_title']);
// since FLV videos have no unique GUID's let's use their URL's as post GUID's 
$post ['custom_fields'] ['hostedflv'] = $post ['guid'] = $post ['custom_fields'] ['clip_url'] . $post ['custom_fields'] ['flv'];
// now let's delete all useless custom fields
unset ( $post ['custom_fields'] ['screen_url'] );
unset ( $post ['custom_fields'] ['screen'] );
unset ( $post ['custom_fields'] ['clip_url'] );
unset ( $post ['custom_fields'] ['flv'] );

Don't forget to replace HTTP://WWW.SITE.COM/ with your own affiliate link. Also replace tag1, tag2 etc with the prefered tag names in
$post ['categories'] [] = array_rand ( array ("tag1", "tag2", "tag3", "tag4" ) );

3) Enable "Create tags from category names" option.

4) Click "Update Feed Settings".

That's all :)

tonyparra 04-04-2011 12:58 AM

Quote:

Originally Posted by cyberxxx (Post 18027643)
Go to your XML feed options page and do the following:

That's all :)

:banana:bowdown YOU DA MAN! Worked perfect, only thing though the random tags seem to pull one random tag from all tags on the whole site not just the list i wrote, and the post was syndicated into all categories i ( i want only interracial and it went to interracial and teens i only have those two categories for now )
Here is what i put for tags:
Code:

// generate random tags. Don't forget to replace tag1, tag2 etc with the prefered tag names. Also don't forget to enable "Create tags from category names" option on the feed settings page
$post ['categories'] [] = array_rand ( array ("big dick", "monster cock", "white pussy", "black men", "tight", "creampie", "MILF", "mom", "doggystyle", "blowjob", "older women", "cougars", "dick riding", "cum", "shorty mac") );

Also dogfart has pretty long wordy descriptions, what it the best way to limit them? Too like under 100 characters? I would keep but the really long desc messes with this theme...

Thanks a million :pimp

Catalyst 04-04-2011 01:55 AM

I need to read this all the way in the morning.. been looking for software like this..

just a punk 04-04-2011 01:59 AM

Quote:

Originally Posted by tonyparra (Post 18029484)
only thing though the random tags seem to pull one random tag from all tags on the whole site not just the list i wrote

I'm not sure I got your question right. Do you want to add your whole list of shuffled tags to every syndicated posts? If so, simple do it like this:

Code:

// generate random tags. Don't forget to replace tag1, tag2 etc with the preferred tag names. Also don't forget to enable "Create tags from category names" option on the feed settings page
$post ['categories'] = array ("big dick", "monster cock", "white pussy", "black men", "tight", "creampie", "MILF", "mom", "doggystyle", "blowjob", "older women", "cougars", "dick riding", "cum", "shorty mac" );
shuffle ( $post ['categories'] );

Quote:

Originally Posted by tonyparra (Post 18029484)
and the post was syndicated into all categories i ( i want only interracial and it went to interracial and teens i only have those two categories for now )

If you want to syndicate all posts from some XML/RSS feed into the particular categories. You need to set "Undefined categories" as "Post to default WordPress category" and select the desired categories manually in the "Syndicate this feed to the following categories" box above.

Quote:

Originally Posted by tonyparra (Post 18029484)
Also dogfart has pretty long wordy descriptions, what it the best way to limit them? Too like under 100 characters? I would keep but the really long desc messes with this theme...

Simple add the following code to the contents of the "PHP Code <?php .. ?>" box:

Code:

if (strlen ( $post ['post_excerpt'] ) > 100) {
        $post ['post_excerpt'] = substr ( $post ['post_excerpt'], 0, 100 ) . '...';
}

Quote:

Originally Posted by tonyparra (Post 18029484)
Thanks a million :pimp

You are welcome :)

tonyparra 04-05-2011 05:37 AM

I found a theme i really like however, its made a little differently. There is a separate posting section for video, that has its own set of categorys, tags, etc. Is it possible to get cyberseo to recognize categories from that section exclusively or in addition to the regular categories? Take a look at the theme http://templatic.com/freethemes/video

you have to see what i mean because its hard to describe, thanks

HarryMuff 04-05-2011 06:26 AM

Do you think using tricks like synonyms and morphing are really worth wasting time with? Any search engine worth it's salt will be using a wordnet equivalent and detect this stuff - it's very basic tech. Kinda pointless. Links pulled.

djroof 04-05-2011 07:16 AM

congrats!!!!!

tonyparra 04-05-2011 08:23 AM

Quote:

Originally Posted by HarryMuff (Post 18033038)
Do you think using tricks like synonyms and morphing are really worth wasting time with? Any search engine worth it's salt will be using a wordnet equivalent and detect this stuff - it's very basic tech. Kinda pointless. Links pulled.

I dont really care for this function, i like to automate as much as possible and for $20 i can pull video and galleries in wordpress, make a tube, or use my imagination and to be honest 98% program feeds suck and the rss syndicators stink.

just a punk 04-05-2011 09:41 AM

Quote:

Originally Posted by HarryMuff (Post 18033038)
Do you think using tricks like synonyms and morphing are really worth wasting time with? Any search engine worth it's salt will be using a wordnet equivalent and detect this stuff - it's very basic tech. Kinda pointless. Links pulled.

So all tube sites will be also banned, because they share the same content? Why do people still run TGP's and Tubes at all?

What's about news sites? Let's take any piece of text from CNN and search it with Google. And what do we see? There are about 5,860 results and they are all listed. Why Google didn't ban every site besides CNN?

Actually I can show many other examples, but this doesn't really matter. Most of people have no creativity and they don't understand that only "synonyms and morphing" won't make them rich. Synonymizer is just a single method which can (not always) be used in combination with many others. The CyberSEO Suite is not just a synonymizer or a content spinner.

This is not a problem of script (the script is just a tool) but a problem of narrow-minded person who don't understand that even a car can carry him or it can kill him. Everything depends on his skills and discretion. :2 cents:

Links pulled :pimp

just a punk 04-05-2011 09:44 AM

Quote:

Originally Posted by tonyparra (Post 18032975)
I found a theme i really like however, its made a little differently. There is a separate posting section for video, that has its own set of categorys, tags, etc. Is it possible to get cyberseo to recognize categories from that section exclusively or in addition to the regular categories? Take a look at the theme http://templatic.com/freethemes/video

you have to see what i mean because its hard to describe, thanks

Just downloaded and installed it on a test blog. Going to learn it for a while when I post here the appropriate PHP code to use it with CyberSEO Suite.

tonyparra 04-05-2011 09:55 AM

Quote:

Originally Posted by cyberxxx (Post 18033669)
Just downloaded and installed it on a test blog. Going to learn it for a while when I post here the appropriate PHP code to use it with CyberSEO Suite.

If you have wordpress blogs/splogs why are you not using this tool? Awesome tool and amazing support. Thanks in advance :thumbsup

just a punk 04-05-2011 11:00 AM

Quote:

Originally Posted by tonyparra (Post 18033791)
If you have wordpress blogs/splogs why are you not using this tool? Awesome tool and amazing support. Thanks in advance :thumbsup

Do you mean Video Template? Because I was using other templates for WP tube sites and didn't try this one. Howere I can say it looks very slick.

tonyparra 04-05-2011 06:51 PM

Quote:

Originally Posted by cyberxxx (Post 18034287)
Do you mean Video Template? Because I was using other templates for WP tube sites and didn't try this one. Howere I can say it looks very slick.

Oh i was meaning for people reading this thread if they have wordpress they should use your plugin and yes that theme is slick too many tube designs are so cookie cutter i like that one...

just a punk 04-06-2011 07:09 AM

Just learned the Video template. Unfortunately it's impossible to make it working with CyberSEO Suite directly. The mentioned template uses its own format of posts called "videos".

So without changes in the template itself, it won't work with CyberSEO Suite.

tonyparra 05-06-2011 10:03 AM

Hello,

New question, for some reason the images are not being saved to my /uploads or cloaked with the fake images folder. In your last tutorial there was this comment:
Code:

// uncomment the line below to store thumbnails on your server
// cseo_store_image ('thumb', $post ['post_title']);

I actually deleted this line thinking it would allow the image cloaking to work. As of now i have both options enabled, should i only have one? I dont mind storing the images to my server, can you show me what is meant by "uncomment"? Thanks.

d-null 05-06-2011 10:06 AM

Quote:

Originally Posted by tonyparra (Post 18114106)
Hello,

New question, for some reason the images are not being saved to my /uploads or cloaked with the fake images folder. In your last tutorial there was this comment:
Code:

// uncomment the line below to store thumbnails on your server
// cseo_store_image ('thumb', $post ['post_title']);

I actually deleted this line thinking it would allow the image cloaking to work. As of now i have both options enabled, should i only have one? I dont mind storing the images to my server, can you show me what is meant by "uncomment"? Thanks.

see those "//"

those tell the server that everything on that line is a comment and is not executed
when he says 'uncomment' he means you delete the "//" at the beginning of that line

just a punk 05-06-2011 10:26 AM

As d-null said. If you want to store the thumbs on your server, simple remove the comments mark "//". So your code must look like this:
Code:

// uncomment the line below to store thumbnails on your server
cseo_store_image ('thumb', $post ['post_title']);

BTW, there is a support forum launched yesterday at the official site. Feel free to post your questions there.

tonyparra 05-06-2011 10:27 AM

Quote:

Originally Posted by d-null (Post 18114121)
see those "//"

those tell the server that everything on that line is a comment and is not executed
when he says 'uncomment' he means you delete the "//" at the beginning of that line

:thumbsup:thumbsup:thumbsup thanks im still learning all the little nuances of php, first time i did it i got errors

tonyparra 05-06-2011 12:51 PM

Quote:

Originally Posted by cyberxxx (Post 18114208)
As d-null said. If you want to store the thumbs on your server, simple remove the comments mark "//". So your code must look like this:
Code:

// uncomment the line below to store thumbnails on your server
cseo_store_image ('thumb', $post ['post_title']);

BTW, there is a support forum launched yesterday at the official site. Feel free to post your questions there.

cool ill be checking it out :thumbsup this may be a more general question though,its not exactly plugin related with the random time code Im pulling time as low as 02:30- which is shorter than some of the free clip! This would be a simple fix if sponsors simply put as much info as possible in their feeds i.e. full lengths, stars, tags, number of pics etc...but alas all calls that ive seen have fallen on deaf ears.

Anyways here is the php code
Code:

// fake random time from 0:20:00 to 2:00:00
$post ['custom_fields'] ['time'] = date ( 'i:s', rand ( 1200, 72000 ) );

Ive tried making the first set of numbers 72000 and second set 120000 (72000, 120000) but i still get some shorter times like 2,3, or 4 mins. I would like the time range to be at least 20 minutes or higher. Any ideas how to fix that?

just a punk 06-02-2011 02:02 AM

I believe you are doing something wrong. For example, this code will generate random time in range 10..20 minutes:
Code:

$post ['custom_fields'] ['time'] = date ( 'i:s', rand ( 600, 1200 ) );
Here is an example:
Code:

for($i = 0; $i < 10; $i ++) {
        echo date ( 'i:s', rand ( 600, 1200 ) ) . "\n";
}

Its output is the following:
18:43
18:07
10:17
11:04
16:38
11:32
10:55
18:46
17:28
19:25

So everything looks ok to me.

tonyparra 07-09-2011 11:31 AM

Quote:

Originally Posted by cyberxxx (Post 17985329)
This is very easy to do with CyberSEO Suite. Simple place the following code into the "PHP Code <?php .. ?>" box on the feed setting page and apply the changes:

Code:

$post ['guid'] = base64_encode ( $post ['link'] );
$thumb = str_replace ( basename ( $post ['link'] ), "", $post ['link'] ) . "pics/" . rand ( 10, 16 ) . ".jpg";
$post ['post_excerpt'] = "<p align=\"center\"><a href\"" . $post ['link'] . "\"><img style=\"max-width:100%\" src=\"" . $thumb . "\"></a><p>" . $post ['post_excerpt'];

The XML feed you gave above is intended for TGP sites, but not for blogs (it doesn't contain nor picture, nor even GUID which is a must for any RSS feed).

If you open any gallery from that feed (e.g. http://galleries.tease-pics.com/1469....php?id=856489), you will see that each one has exactly 16 pictures which have named as 01.jpg...16.jpg and stored in the "/pics" sub-directory of the gallery path.

Here is an express explanation on what exactly each particular line of the php code above does:
Line 1: Creates GUID of the post depending on the gallery URL.
Line 2: Picks the random image on the given gallery (in range 10.jpg..16.jpg) - hope it will be a bit hotter than first 9 ones :winkwink:
Line 3: Inserts that random picture into your post right above the text description and link it to the actual gallery with your affiliate code. Don't worry about the picture size, because it will be scaled to fit your WordPress theme.

That's it :)

Please let me know if this worked well for you.

P.S. If you want to insert into your post only a small thumbnail instead of a full-sized picture, simple change the second line of code as show below.

$thumb = str_replace ( basename ( $post ['link'] ), "", $post ['link'] ) . "images/" . rand ( 10, 16 ) . ".jpg";

not getting this to work with the pimproll feed, any advice?

just a punk 07-09-2011 02:32 PM

What's the feed URL?

{Psycho} 07-09-2011 03:09 PM

Awesome :)

tonyparra 07-09-2011 08:02 PM

Quote:

Originally Posted by cyberxxx (Post 18271328)
What's the feed URL?

Oh sorry :)
http://rss.pimproll.com/rss.php?id=M...1&j=29&src=rss

just a punk 07-10-2011 03:06 AM

Quote:

Originally Posted by tonyparra (Post 18271686)

Actually this feed contains very different content (videos galleries). So this case requires its own code. For example, you can do it like this:

PHP Code:

$base str_replace basename $post ['link'] ), ""$post ['link'] );
$post ['post_content'] .= strip_tags $post ['post_excerpt'] );
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/001.jpg" "\"></a><a href=\"" $base "/002.mpg" "\"><img src=\"" $base "/002.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/003.jpg" "\"></a><a href=\"" $base "/004.mpg" "\"><img src=\"" $base "/004.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $post ['link'] . "\"><strong>Click Here For More!</strong></a></p>\n"

Or somehow else. If you need a different layout the code will be different too.

tonyparra 07-10-2011 06:28 AM

Quote:

Originally Posted by cyberxxx (Post 18271934)
Actually this feed contains very different content (videos galleries). So this case requires its own code. For example, you can do it like this:

PHP Code:

$base str_replace basename $post ['link'] ), ""$post ['link'] );
$post ['post_content'] .= strip_tags $post ['post_excerpt'] );
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/001.jpg" "\"></a><a href=\"" $base "/002.mpg" "\"><img src=\"" $base "/002.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/003.jpg" "\"></a><a href=\"" $base "/004.mpg" "\"><img src=\"" $base "/004.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $post ['link'] . "\"><strong>Click Here For More!</strong></a></p>\n"

Or somehow else. If you need a different layout the code will be different too.

Cool the layout doesnt matter is there a way to post the preview thumb to a custom field like "thumb"?

just a punk 07-10-2011 06:58 AM

Yes it is. Answered to your another question on the support board.

E.g.:

PHP Code:

$post ['custom_fields'] ['thumb'] = preg_replace '/.*?img src="(.*?)".*?$/s'"\\1"$post ['post_excerpt'] );
$base str_replace basename $post ['link'] ), ""$post ['link'] );
$post ['post_content'] .= strip_tags $post ['post_excerpt'] );
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/001.jpg" "\"></a><a href=\"" $base "/002.mpg" "\"><img src=\"" $base "/002.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/003.jpg" "\"></a><a href=\"" $base "/004.mpg" "\"><img src=\"" $base "/004.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $post ['link'] . "\"><strong>Click Here For More!</strong></a></p>\n"


tonyparra 07-11-2011 12:37 AM

Quote:

Originally Posted by cyberxxx (Post 18272060)
Yes it is. Answered to your another question on the support board.

E.g.:

PHP Code:

$post ['custom_fields'] ['thumb'] = preg_replace '/.*?img src="(.*?)".*?$/s'"\\1"$post ['post_excerpt'] );
$base str_replace basename $post ['link'] ), ""$post ['link'] );
$post ['post_content'] .= strip_tags $post ['post_excerpt'] );
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/001.jpg" "\"></a><a href=\"" $base "/002.mpg" "\"><img src=\"" $base "/002.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/003.jpg" "\"></a><a href=\"" $base "/004.mpg" "\"><img src=\"" $base "/004.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $post ['link'] . "\"><strong>Click Here For More!</strong></a></p>\n"



ok thank you sir, i figuired it may help someone here also :) more awesome support for your awesome tool :thumbsup

tonyparra 07-17-2011 10:29 AM

Quote:

Originally Posted by cyberxxx (Post 18272060)
Yes it is. Answered to your another question on the support board.

E.g.:

PHP Code:

$post ['custom_fields'] ['thumb'] = preg_replace '/.*?img src="(.*?)".*?$/s'"\\1"$post ['post_excerpt'] );
$base str_replace basename $post ['link'] ), ""$post ['link'] );
$post ['post_content'] .= strip_tags $post ['post_excerpt'] );
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/001.jpg" "\"></a><a href=\"" $base "/002.mpg" "\"><img src=\"" $base "/002.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $base "/001.mpg" "\"><img src=\"" $base "/003.jpg" "\"></a><a href=\"" $base "/004.mpg" "\"><img src=\"" $base "/004.jpg" "\"></a><p>\n";
$post ['post_content'] .= "<p align=\"center\"><a href=\"" $post ['link'] . "\"><strong>Click Here For More!</strong></a></p>\n"


I hate to keep asking for things if you charged for extended i would probably pay but actually im doing so much with this plugin, more fun ideas come up. This code works perfectly but a few things i noticed i was wondering if we could change. is it possible to align the first 4 images in a square table?

e.g.
1 2
3 4

Also i pulled 5 post manually from this particular feed from pimproll and i got the same post 5 times with none of the text spun. This strange because all xml feeds syndicate fine and text is being spun. Solutions? Thanks in advance.

*i pulled a 6th post and got a different post so maybe there is a problem with the feed itself http://rss.pimproll.com/rss.php?id=M...1&j=13&src=rss

V_RocKs 07-17-2011 04:34 PM

Perhaps you can make it so we can add a synonym table for categories...

Pretend I have a gay cams blog and it is taking in posts via RSS feed.

If a post has:

Check out Kyle on his free gay cam. This twink loves sticking butt plugs up his tight little ass on web cam! You can tell him to do just about anything and he will do it. Watch him jack his cock and even suck his own huge cock!

Then if I could make a syn table like:

big cocks|big dicks|big dick|huge dick|huge cocks|large dick ...etc...

and this post would end up in the big cocks category because of the match on huge cock.

Or...

Toys|butt plug|butt plugs|dildo|dildos|vibrator|vibrators

And we'd get category of Toys.

d-null 07-17-2011 06:59 PM

Quote:

Originally Posted by V_RocKs (Post 18288415)
Perhaps you can make it so we can add a synonym table for categories...

Pretend I have a gay cams blog and it is taking in posts via RSS feed.

If a post has:

Check out Kyle on his free gay cam. This twink loves sticking butt plugs up his tight little ass on web cam! You can tell him to do just about anything and he will do it. Watch him jack his cock and even suck his own huge cock!

Then if I could make a syn table like:

big cocks|big dicks|big dick|huge dick|huge cocks|large dick ...etc...

and this post would end up in the big cocks category because of the match on huge cock.

Or...

Toys|butt plug|butt plugs|dildo|dildos|vibrator|vibrators

And we'd get category of Toys.

that's actually a nice idea, too many categories is no good, so your idea of grouping a bunch of possible tags into less tags that are more general would be useful


All times are GMT -7. The time now is 03:12 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc