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.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 11-03-2022, 05:02 PM   #1
emmasexytime
Confirmed User
 
emmasexytime's Avatar
 
Industry Role:
Join Date: Jan 2015
Posts: 3,866
anyone using nomoneyinporn chaturbate ?

we have been testing this
https://jizzings.com/

Anyone know how to sent number of cams per page?

How to add pagination?

How to speed up the site?

We can share the plugin and theme if anyone would like to test it.

Currently it's too slow but ranks much better than other CB plugins
__________________
live camss > How to make a live cam site hardlinks > hardlinks.org List Your Site Here > nichepornsites.com
Sextoys > thediscountadultshop.com XXX Rated Chicks > xxxratedchicks.com
emmasexytime is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-03-2022, 08:08 PM   #2
sarettah
l8r
 
Industry Role:
Join Date: Oct 2002
Posts: 13,560
Sounds like you are using the WP plugin version. I can't offer much help with that.

There is a stand alone version of the same script. I have copies of both versions up on one of my servers. I also think someone here was updating them and had a git for them.

In this thread: https://gfy.com/fucking-around-and-b...ml-script.html

You can find links to the scripts and discussions regarding them. I am not sure if pagination is addressed in the discussions. Speeding it up is definitely discussed.

Have fun.

.
sarettah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-03-2022, 08:39 PM   #3
emmasexytime
Confirmed User
 
emmasexytime's Avatar
 
Industry Role:
Join Date: Jan 2015
Posts: 3,866
Quote:
Originally Posted by sarettah View Post
Sounds like you are using the WP plugin version. I can't offer much help with that.

There is a stand alone version of the same script. I have copies of both versions up on one of my servers. I also think someone here was updating them and had a git for them.

In this thread: https://gfy.com/fucking-around-and-b...ml-script.html

You can find links to the scripts and discussions regarding them. I am not sure if pagination is addressed in the discussions. Speeding it up is definitely discussed.

Have fun.

.

Thank you
__________________
live camss > How to make a live cam site hardlinks > hardlinks.org List Your Site Here > nichepornsites.com
Sextoys > thediscountadultshop.com XXX Rated Chicks > xxxratedchicks.com
emmasexytime is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2022, 02:42 AM   #4
Denny
Too lazy to set a custom title
 
Denny's Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 17,077
------------------------------
__________________
Denny is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2022, 03:29 AM   #5
DVTimes
Holedex.com
 
DVTimes's Avatar
 
Industry Role:
Join Date: Jun 2003
Location: UK
Posts: 31,539
Quote:
Originally Posted by emmasexytime View Post
we have been testing this
https://jizzings.com/

Anyone know how to sent number of cams per page?

How to add pagination?

How to speed up the site?

We can share the plugin and theme if anyone would like to test it.

Currently it's too slow but ranks much better than other CB plugins
I had a look at your site.

It seems to load very slow.
__________________
My old and new pics I have shot
DVTimes is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2022, 03:31 AM   #6
DVTimes
Holedex.com
 
DVTimes's Avatar
 
Industry Role:
Join Date: Jun 2003
Location: UK
Posts: 31,539
Someone posted a few lines of code a year or so ago.

I use it on a few sites, and it works great.

I can post the code if you cannot find it on this forum.
__________________
My old and new pics I have shot
DVTimes is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2022, 05:08 AM   #7
zijlstravideo
Confirmed User
 
zijlstravideo's Avatar
 
Industry Role:
Join Date: Sep 2013
Location: The Netherlands
Posts: 805
Quote:
Originally Posted by emmasexytime View Post
How to speed up the site?
I would start by not fetching the API upon every single page visit...

The code obviously isn't production ready, you would still need to code all sorts of necessary features yourself, such as cache, pagination etc.
__________________
Contact: email
zijlstravideo is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2022, 07:27 AM   #8
sarettah
l8r
 
Industry Role:
Join Date: Oct 2002
Posts: 13,560
Emma, I got your email and have answered just a few minutes ago.

I have a meeting in a little bit. Once I am out of that I will post more detail about what you were asking about.

.
sarettah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2022, 09:45 AM   #9
sarettah
l8r
 
Industry Role:
Join Date: Oct 2002
Posts: 13,560
Emma,

You asked about what you would do with the code from this thread

https://gfy.com/fucking-around-and-b...-api-help.html

Quote:
$flname="/server file path/filename";
$url="xml url";
$data=file_get_contents($url);
if(!empty($data))
{
file_put_contents($flname,$data);
}
else
{
echo "Did not get a file back<br>\n";
}
That is pseudo code for a caching system for the stand alone version of the nmip chaturbate script.

The WP plugin handles the xml feed differently than that. I took a look at the code in the import.php file from the wp plugin. I am not sure how you could speed that up. The caching scheme I wrote about will not work with the WP plugin without a fair amount of modification of the plugin code. I also don't think you would get any speed improvements from it. According to the setup.txt file in the plugin the import already runs imtermittently so it is not being called on every hit.

With that said. If you are using the stand alone script then the code above goes into a separate program that is called periodoically as a cron job on the server. Then you replace the existing call to the chaturbate api with a call to the local file created by the cron.

A simple version of the cron job would be something like:
<?php

if(data=file_get_contents($chatfeedlink='https://chaturbate.com/affiliates/api/onlinerooms/?format=xml&wm=XXXXX'))
{
file_put_contents('home/website/cache/xmlcache.xml',$data);
}
else
{
// do some sort of error routine here
}

?>

You would replace the path and file name in the file_put_contents() call with the
applicable path and file name for your server.

You would set the cron to pull that periodoically. 5 minutes is what I was using originally and it worked pretty good.

In the stand alone version of the nmip script you would change the call to the xml feed with the call to the local file.

On lines 82 and 330 of the functions.php file you would change the code for the xml pull.

the existing line: $xml = 'http://' . CBWL . '/affiliates/api/onlinerooms/?format=xml&wm='.$affid.'';

would be changed to pull from the file you created with your cron:

$xml='home/website/cache/xmlcache.xml';

That is the simplest version of it that I can come up with.

.
sarettah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2022, 12:41 PM   #10
emmasexytime
Confirmed User
 
emmasexytime's Avatar
 
Industry Role:
Join Date: Jan 2015
Posts: 3,866
Thank you sarettah
__________________
live camss > How to make a live cam site hardlinks > hardlinks.org List Your Site Here > nichepornsites.com
Sextoys > thediscountadultshop.com XXX Rated Chicks > xxxratedchicks.com
emmasexytime is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-05-2022, 10:15 AM   #11
NatalieK
Natalie K
 
NatalieK's Avatar
 
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 18,560
looks great, loads fast, love how the clickable goes straight to the model online and then when closed, more information on the model from your site, love it
__________________
My official site NatalieK.xxx My free porn & affiliate blog Natalie K affiliate programFirst time girls
Skype: gspotproductions - "Converting your traffic into income since 2005"
NatalieK is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-05-2022, 08:20 PM   #12
emmasexytime
Confirmed User
 
emmasexytime's Avatar
 
Industry Role:
Join Date: Jan 2015
Posts: 3,866
Live cam site has been abandoned. We were hoping to be prepared for when robo breaks

Jizzings.com is getting built out a little differently now
__________________
live camss > How to make a live cam site hardlinks > hardlinks.org List Your Site Here > nichepornsites.com
Sextoys > thediscountadultshop.com XXX Rated Chicks > xxxratedchicks.com
emmasexytime is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-06-2022, 04:48 PM   #13
sarettah
l8r
 
Industry Role:
Join Date: Oct 2002
Posts: 13,560
Quote:
Originally Posted by emmasexytime View Post
Live cam site has been abandoned. We were hoping to be prepared for when robo breaks

Jizzings.com is getting built out a little differently now
https://gfy.com/fucking-around-and-b...avascript.html

.
sarettah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
test, theme, slow, plugins, cents, ranks, plugin, share, chaturbate, nomoneyinporn, https://jizzings.com, testing, pimp, cams, site, speed, pagination, page, add



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.