Recent content by OswellESpencer

  1. OswellESpencer

    Push Notifications self hosted

    https://gopusher.rapidcodelab.com/
  2. OswellESpencer

    Push Monetization

    look out my offer https://gopusher.rapidcodelab.com/ :cool:
  3. OswellESpencer

    Need Fast Proxy

    When i worked arround data scrapping on industrial scale, i was buy here buy . fineproxy . org/eng/ thousands of proxies in package and all of them was be fast:cool:
  4. OswellESpencer

    HTTP POST request experienced developer help?

    PM me the site and what you try exactly to do, i will try repeat and find what's trouble
  5. OswellESpencer

    HTTP POST request experienced developer help?

    i don't think that cloudflare checks google's cookie, the reason of that: not all sites use google analitycs;)
  6. OswellESpencer

    HTTP POST request experienced developer help?

    utm* cookies is for google analytics, yeah you should set cookie headers for post request with __cfduid data
  7. OswellESpencer

    HTTP POST request experienced developer help?

    The site behind cloudflare, seems like you did'nt use cookies, so cloudflare reject your post request Before make POST reqest you should make GET request and store cookies info for the foolowing POST request cookie: __cfduid=d8a6d2f361751d4f70da5048801f44c661561580731
  8. OswellESpencer

    Problem with a Contact Form

    It looks like your server does not serve php files. Make a simple test.php file containing the following code '<?php phpinfo(); ?>' and query this by browser http://yourdomain/folder/test.php . You should see the php info page, otherwise can be sure your server do not serving php files...
  9. OswellESpencer

    How to lock video player and show banner after 10 seconds of watch for non-members?

    Sorry, but i not familiar with this video player, i think you can adapt my code to wps api youself or hire freelancer with javascript skills)
  10. OswellESpencer

    How to lock video player and show banner after 10 seconds of watch for non-members?

    What is mean what a video player u are use on site? my sample code is for videojs. Yes, you can put banner and show this only for non-logged users
  11. OswellESpencer

    How to lock video player and show banner after 10 seconds of watch for non-members?

    https://jsfiddle.net/umbrellacoders/px1kr6hy/ another one sample
  12. OswellESpencer

    How to lock video player and show banner after 10 seconds of watch for non-members?

    https://jsfiddle.net/umbrellacoders/px1kr6hy/ simple example based on videojs, video will paused each 5 sec.
  13. OswellESpencer

    My first Proxy script

    for the next step, try to get a proxy periodically by timeout and save to a file without duplicates ;)
  14. OswellESpencer

    How to lock video player and show banner after 10 seconds of watch for non-members?

    You should use javascript, set timer that fire pause after n seconds on needed video player, and run this code depense on user logged or not
  15. OswellESpencer

    [Help] ISO code list generator?

    Take my golang code, you can easily convert it to any language //Country struct type Country struct { Code string Name string } //GetCountries list func GetCountries() []Country { return []Country{ Country{Code: "DR", Name: "Default Rate"}, Country{Code: "AD"...
Back
Top