Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
09-30-2017, 12:20 AM | #1 |
Registered User
Industry Role:
Join Date: Oct 2015
Posts: 18
|
Tube SEO optimization automation
I've tried a couple of tube scripts. They work fine for publishing large numbers of videos. What they don't do is give a way to automate handling the video post's on-page SEO. That still has to be done by hand for each video.
I'm currently using WP-Script for WordPress. Is there a way to automate at least some of the SEO for WordPress posts, or another tube script that does this? Thanks! B
__________________
Free Nasty Porn Videos at SleazeTubes.com Explosive Hardcore Bondage Porn at StripnStrangle.com |
09-30-2017, 05:22 AM | #2 |
God Bless You
Industry Role:
Join Date: Aug 2014
Location: Glasgow, $cotland
Posts: 1,467
|
cyberseo + yoast + custom fields.
__________________
magneto664 📧 gmail.com Adult Backlinks 💘Best Website Stats 💘 Best CDN for Adult Content My Fav: 👍Chaturbate 👍 Stripchat 👍 Dateprofits 👍 AdultFriendFinder |
10-25-2017, 02:16 PM | #3 |
So Fucking Banned
Industry Role:
Join Date: Nov 2008
Location: with your dream girl
Posts: 4,941
|
What do you mean by "has to be done by hand for each video"?
The on-page SEO is dependent on the theme you are using. |
10-26-2017, 03:07 AM | #4 |
It's 42
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
|
mysql -u********** -p********** -e "SELECT tags FROM xvideos WHERE MATCH (tags) against ('+Big +(Penis dick cock)' in boolean mode);" > /path/big-penis-tags-less~gay.csv
mysql -u********** -p********** -e "SELECT tags FROM seo.xvideos WHERE MATCH (tags) against (' +Cougar +MILF' in boolean mode);" >/path/tag-study/cougar-tags.csv SELECT tags FROM seo.xvideos WHERE tags LIKE '%Buttplug%';" >/path/tag-study/buttplug-tags.csv xvideos distributes a database of all their current data (still?) The database is over 4 million rows and doing these or similar queries is rather slow -- sometimes over 15 seconds here depending on the query's complexity. Code:
mysql> SHOW CREATE TABLE xvideos; | xvideos | CREATE TABLE `xvideos` ( `url` char(50) NOT NULL, `performer` char(30) NOT NULL, `runtime` char(12) DEFAULT NULL, `thumb` char(120) DEFAULT NULL, `iframeCode` char(200) DEFAULT NULL, `tags` char(200) DEFAULT NULL, `category` char(60) DEFAULT NULL, KEY `category` (`category`(10)), FULLTEXT KEY `idx_1` (`category`), FULLTEXT KEY `idx_2` (`tags`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 | 1 row in set (0.00 sec) mysql> SELECT COUNT(*) FROM xvideos; +----------+ | COUNT(*) | +----------+ | 4543335 | +----------+ 1 row in set (0.00 sec) mysql> SELECT tags FROM seo.xvideos WHERE tags LIKE '%girl%'; 602301 rows in set (10.98 sec) SELECT tags FROM seo.xvideos WHERE category LIKE '%girl%'; 169530 rows in set (1.68 sec) SELECT tags FROM seo.xvideos WHERE MATCH (tags) against (' +Cougar +MILF' in boolean mode); 62322 rows in set (12.35 sec) |
|
|||||||
Bookmarks |
Tags |
automate, posts, seo, tube, wordpress, automation, optimization |