Adult Script Pro Community Forums

The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!

You are not logged in.

#326 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-04-14 16:09:01

I'n version 3.x the tag system is different compared to 2.x. So the feature you want can be implemented easily.

#327 Re: Feature Requests » Mobile template » 2017-04-14 16:07:59

1. In 3.x the mobile part will be more complex, it will have the exact features of desktop but with separate template.
2. In 3.x already there.
3. I could implement this in 3.x (the main problem is that the script allows users to upload their own thumbs, if the thumb does not have the correct size it can break the design).

#329 Re: Bug Reports » Version 2.2.5 Bugs » 2017-04-10 07:56:10

I'm sorry, but i was not able to reproduce this bug. There is however a possible reason for this: are you using the same url to access the website you have in config.php. If for example in config.php you have http://www.domain.com and you are using http://domain.com to access the site, then the js wont work. You have to redirect www to non-www or vice versa.

#330 Re: Bug Reports » Embed error » 2017-04-10 07:54:28

Hmm...please email me access anbd i will check.

#332 Re: Bug Reports » Embed error » 2017-04-08 14:37:28

you get this error with debug set to no?

#333 Re: Troubleshooting » orphans videos recategorize issue » 2017-04-06 19:49:50

Do the videos you recategorize change the categories? (the categorization works based on auto terms set for each category, do you have this set?)

#334 Re: Troubleshooting » Tmp folder » 2017-04-06 19:49:00

tmp/downloads/*, tmp/uploads/*, tmp/tumbs/*

#335 Re: Feature Requests » Gif animated thumbs » 2017-04-06 19:48:28

Yep its already done. It uses html5 video player...it supports both mp4 and webm.

#336 Re: Troubleshooting » Google search console errors » 2017-04-03 10:29:04

Disable it on the server (in nginx configuration, and then restart nginx), not in the admin panel of the script.

#337 Re: Feature Requests » video report » 2017-04-03 10:28:23

Add a text below the textarea in the report template that asks for email, browser, operating system...

#338 Re: Feature Requests » HD videos category » 2017-03-31 11:31:35

You will have option hd/not hd in the next version of the script.

#339 Re: Troubleshooting » Google search console errors » 2017-03-31 11:31:14

Disable pseudostreaming secure link protection.

#340 Re: Troubleshooting » Put all js at the bottom of the page on mobile template » 2017-03-31 11:30:53

No. No big site does this (you can check pornhub, redtube, not even wordpress does this...). It is not as important as it says on the speed test. I have good ranking sites without this. In the next version it will be like this.

#341 Re: Troubleshooting » Urgent: Server Problem » 2017-03-31 11:29:40

You can backup the files with rsync. You either backup on a second hard drive or on another server. The hosting company can do this for you. I can also do the backup, i dont know the price as it depends on a lot of factors. Email me the details and i will check.

#343 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-03-25 19:24:28

Nope. I've been working the entire past week on the profile only. I cant give a exact date, but once ready i will setup a demo for us all to test/fix/come with ideas!

#345 Re: Feature Requests » HLS transmuxing » 2017-03-19 07:49:06

Yes, i plan on adding HLS support, but i dont think i will be able to do it in the initial version. This also requires nginx and configuring nginx to work with the rtmp module (which is not included by default in nginx, so you always have to compile nginx from sources...).

#346 Re: Troubleshooting » Balance load equally » 2017-03-19 07:42:56

Hmmm...what you need in this case is DNS load balancing. Basically your requests to the 2 servers are distributed at DNS level. This way you will use bandwidth only from the server to which the request is done (not both the server and proxy). I have never configured a setup like this, but here are a few examples i found:
https://blog.l0cal.com/2015/04/30/using … -balancer/
https://en.wikipedia.org/wiki/Round-robin_DNS

#347 Re: Troubleshooting » Reconvert all videos » 2017-03-19 07:28:23

Email me access and i will fix. It seems like the user_downloads table is already present on your installation.

#348 Re: Troubleshooting » admin page not found » 2017-03-19 07:27:22

Do you have the correct domain set in config.php?

#349 Re: Troubleshooting » Reconvert all videos » 2017-03-17 08:39:26

From admin you can select 200 at a time and delete them. If you do this, let me know before and send me access to apply the fix to delete the graber imported entry also, so you wont get video is already added.

You can also pay me to write a simple script to delete them all directly from the console.

#350 Re: Troubleshooting » Balance load equally » 2017-03-17 08:37:54

You can just use the main example from the above nginx documentation. Here is a more detailed documentation of nginx load balancing: https://www.nginx.com/resources/admin-g … -balancer/

Basically on one of your servers you will have something like:

http {
    upstream myapp1 {
        server srv1.example.com;
        server srv2.example.com;
    }

    server {
        listen ipyouwanttouseforallrequests:80;

        location / {
            proxy_pass http://myapp1;
        }
    }

    server {
       listen separateipforvideoserving:80;
       server_name srv1.example.com;

       here you have the root, the stuff for mp4 streaming
    }
}

on the other server you only have the second server block from the above example (the one for serving the videos).

Board footer

Powered by FluxBB