![]() |
Quote:
|
Quote:
. |
Quote:
|
Quote:
|
Quote:
|
how do you embed the chat in this?
|
Quote:
. |
Quote:
|
Quote:
not sure what you are wanting as an example, i use the version 2 api and embeds on https://camgirlbinge.com . |
Hello teacher!
Hello sarettah
If you could please make a mobile responsive code for this wonderful fourth code you made? I have been following you for a long time and for me you are the best teacher. All my respect! Thank you on behalf of all those who learned from you! |
Quote:
Any other beginner html designs you need sarettah to do for you? |
Quote:
. |
Quote:
|
Quote:
|
Quote:
https://nichepornsites.com/how-to-ma...ive-cams-site/ :2 cents: |
Quote:
Code:
<?php |
Quote:
Being a bad man is easy, it's harder to be a good man! And I didn't even ask you anything... I asked Sarettah personally! When I ask you personally, then react. OK? |
Quote:
i will see what i can do. . |
Quote:
All my respect for what you do...:thumbsup |
Quote:
Feel free to dm me if needed |
Quote:
If anything, I am the good one encouraging growth and personal development, and sarretah is the bad one for spoonfeeding newbies and encouraging laziness and dependence :thumbsup |
Quote:
yep, i suck |
the thing about a forum is that anyone can read what's posted. so something posted for one person can benefit a bunch of others who are intent on learning. posting code can help those learning via a concrete example...everyone has a different learning style but I personally find examples super helpful, as a jumping off point beyond the basics of a topic, be it learning code or anything. like with my first uni paper...I had no idea how to format the cover page. a friend showed me one of hers and I was like, awesome, gotcha, gracias
I remember eons ago S you helped me change a page background color on my site that color plugins wouldn't fix. then, next time I updated my old theme your fix disappeared and I could not figure out how to fix it. google was of NO help so my annoying azz hit you up again, you explained exactly what you did and I learned something new, that I had no idea about before I remember it was changing the page background border using a pixel, not a hex code. had you explained that to me without me being able to see what went where based on your work, I would have not had a fucking clue what you were talking about I was so much of a newb I guess I see posting a snippet of code here the same way? anyway, you rock. or no, you suck cuz you don't like dancehall I try to be tolerant though as no one is perfect dUbster is an enabler as well but I'll reserve judgement until I learn more about his tastes in music |
Don't jump in without being asked!
Quote:
From what I can see, it seems that you are the one who, rather than helping, offends the members of this forum. Show how you have helped this forum and I can show the admin of this forum through printscreens that you are not doing anything good other than offending the world! And in terms of basic knowledge, it seems that you are the most novice in this field |
Quote:
This code belongs to Sarettah, whom I want to congratulate once again for the humanity he shows! You can see and download the code from Sarettah's post #45 |
Quote:
far as I'm concerned he's earned the right to be acerbic without being considered an asshole, which he is not either way, this is gfy, not hug therapy. you've been here since 2014 and this offends you? 7 posts so I guess kinda new in that regard. you're in for a fun ride and also I bet you burned a bridge or two with that post. not wise I wish you the best with your project |
Quote:
|
I want help!
Quote:
|
Quote:
Update! I want to say that I solved it myself. You can see the site from my signature "xcamadult" If you want you can explain it to others. Anyway, I still congratulate you for all your explanations...! |
Quote:
j/k. I use a php program in there to do a redirect to the actual cam page. That allows me to capture the hit in a database and also make decisions regarding the hit. In that folder I have an htaccess fiole that redirects everything to the /webcams/index.php file. That file is the program that decides where to redirect to. RewriteEngine On RewriteRule ^(.*)$ index.php For example, this is from the script I have in the webcams folder on milffoxes. <?php // hookitup is a function in my functions library that creates the database connection $db=hookitup(); $tag=""; $redir=""; // pull in the requested address $work=$_SERVER['REQUEST_URI']; // split address at / to get at tag if(substr_count($work,"/")>0) { $tag=strtolower(substr($work,strrpos($work,"/")+1)); $tag=trim(str_replace(".htm","",str_replace(".php" ,"",strtolower($tag)))); } // if tag is webmaster signup redirect to webmaster sign up page if($tag=='webmaster_signup') { $redir="https://chaturbate.com/in/?track=xxxxxx&tour=xxxxx&campaign=xxxxxx"; header('Location: ' . $redir); exit; } // if tag is webcam model signup redirect to webcam model sign up page if($tag=='webcam_model_signup') { $redir="https://chaturbate.com/in/?track=xxxxxx&tour=xxxxx&campaign=xxxxx"; header('Location: ' . $redir); exit; } // do cookie read/set here. $cookiename='unq'; if(!isset($_COOKIE['unq'])) { $isuniq=1; } setcookie('unq',1,time()+2592000,'/'); if(isset($_COOKIE['camviews'])) { $camviews=intval($_COOKIE['camviews']); } $camviews++; setcookie('camviews',$camviews,time()+2592000,'/'); // 11012014 - do not count googlebot as unique $gbot=0; if(substr_count(strtolower($_SERVER['HTTP_USER_AGENT']),'googlebot')>0) { $isuniq=0; $gbot=1; } $redir="https://milffoxes.com"; if(!empty($tag)) { $redir="https://chaturbate.com/in/?tour=xxxxx&campaign=xxxxx&track=xxxxx&disable_sou nd=1&room=" . $tag; } if(!empty($tag)) { $sql_str="insert into mf_hitcount(date, count, uniq, gbot) "; $sql_str .="values('" . date("Y-m-d", time()-7200) . "', 1," . $isuniq . "," . $gbot .") "; $sql_str .="on duplicate key update count=count+1, uniq=uniq+" . $isuniq . ", gbot=gbot+" . $gbot; $db->query($sql_str); } header('Location: ' . $redir); ?> |
I used "wildcard" redirection from the server for that folder, which as you can see in the source of my site from the signature "xcamadult" which I named "models" with reference to my witelabel from chaturbate.
It works perfectly ! Anyway, thank you in my name and in the name of everyone who received teachings from you and did not thank you! |
Quote:
https://i.imgur.com/e3lyPhm.png |
I set one up but I did it differently, I used wordpress with cyberseo.
It just pulls online cams every few minutes and updates the images and the links. All links clicked go to whitelabel. It's not finished as I was just testing with this one and I don't really push anything with this domain. I'm sure it drives googlebot nuts with adding and deleting new blog posts every 5 minutes https://videocamfriends.com I'd love to get sarettah's code working inside wordpress. |
Quote:
|
Sarettah, maybe you should push your code to a cloud function solution like firebase and sell it as a service.
Even if you don’t sell it, at least you’d be able to use your solution in any website without having to worry about your server specs or overloading the client’s browser |
Quote:
|
Quote:
|
Quote:
Just start with a basic plugin template and code out a few functions to ping APIs and interpret the data given back. Easy-peasy |
Quote:
Code:
<iframe src="https://cam.xrateduniversity.com/in/?tour=x1Rd&campaign=6qw7X&track=default&c=15&p=1&gender=x"></iframe> |
Quote:
|
Quote:
|
Quote:
|
All times are GMT -7. The time now is 06:25 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc