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.

#301 Re: Bug Reports » Menu » 2017-05-16 14:57:45

Its only used if you have a custom theme that displays the icon...

#302 Re: Bug Reports » [SECURITY] Privately marked photo album, photos can still be viewed » 2017-05-16 14:57:08

The video files can be protected with a secure access configuration in the web server. The modification could be done (and its a good idea), but it would take me a lot of time. Once i finish 3.x, then while we are fixing bugs, i try to add this feature.

#303 Re: Bug Reports » Menu » 2017-05-15 14:47:03

from phpmyadmin use the following code to fix:

alter table menulinks add icon varchar(50) not null default '';

#304 Re: Bug Reports » [SECURITY] Privately marked photo album, photos can still be viewed » 2017-05-15 14:45:55

Yeah, this could be possible, but you can protect the files from the web server configuration. I cold however modify this for 3.x, although the photo stuff is already coded, i will try to modify it to use a hash for the photos.

#305 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-05-15 14:44:10

Almost everything else finished (for a demo it would be good), but i didnt get a fresh install working yet. Once installed, i discovered several small modifications that need to be done. Once i finish i will setup a demo. Sorry again for the delay.

#306 Re: Feature Requests » Xhamster like messenger » 2017-05-13 10:20:54

Once i finish 3.x i can start working on a messenger like feature...

#310 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-05-07 07:44:37

No ETA yet sad Once i've added the demo i will post on the forum.

#311 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-05-03 05:04:22

Once i have setup a demo, we will test and then fix bugs.

#312 Re: Troubleshooting » Put link in nofollow in main menu » 2017-05-03 05:03:06

Edit templates/defboot/extend/plugins/menu_main.plugin.php and after:

$target = ($link['target'] != 'none') ? ' target="_'.$link['target'].'"' : '';

add:

$target = ($link['link'] == 'the-url-here') ? $target.' rel="nofollow"' : $target;

If you want to use the link id instead of the-url-here, you can use:

$target = ($link['link_id'] == '64') ? $target.' rel="nofollow"' : $target;

but you also have to edit the mysql query from that file and change:

$db->query("SELECT l.name, l.title, l.link, l.type, l.target, l.lang, l.current

to:

$db->query("SELECT l.link_id, l.name, l.title, l.link, l.type, l.target, l.lang, l.current

#313 Re: Troubleshooting » Put link in nofollow in main menu » 2017-05-02 13:49:13

Only if you modify the code in templates/defboot/extend/plugins/menu_main.plugin.php

#314 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-04-30 13:06:12

Unfortunately i cannot setup a demo yet, a fresh install does not work correctly yet. Once i will fix all bugs i will install the demo and post on the forum. Sorry for the delay.

#315 Re: Troubleshooting » Synonyms list Error Message: Cannot add or update a child row: a forei » 2017-04-30 07:53:29

Hmm...i just tested on my box and it works. Email me FTP (and phpmyadmin/cpanel access) and i will check.

#316 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-04-28 20:01:07

No firm/exact date yet. I'm getting closer to the finish, but i'm not quite there yet. I will try to setup a demo tomorrow and go from there, depending on the bugs we find.

#318 Re: Bug Reports » Users bugs » 2017-04-25 12:48:36

1) This is related to a default configuration in mysql, edit libraries/framework/database/mysql.php and libraries/framework/database/mysqli.php and add:

$this->query('SET SQL_MODE=""');

after:

$this->query('SET CHARACTER SET utf8');

2. Hmm...this should go to domain.com/user/confirm/ for email confirmation and domain.com/user/lost/ for password recovery. I will test this.

3. Hmm...it works for me. Just tested!

#319 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-04-24 13:15:35

Well i'm adding two types of captcha to the forum....so that will help prevent spam. Creating a bridge does not directly integrate in the script...

#320 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-04-24 07:22:29

Having a widget with the last post titles is the easy part. The problem with the 1.x forum was spam. So thats the most important problem to fix.

#321 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-04-23 09:57:45

Replied. Sorry again for the delay. I know everyone is waiting for the new version (including me). I'm trying to work as fast as possible.

#322 Re: Development » Adult Script Pro 3.0 Branch Development » 2017-04-22 08:36:56

I wont be able to finish this month sad So i'm trying to trim down the stuff still left to do as much as possible to release asap. Sorry for the delay!

#323 Re: Troubleshooting » Limit download speed » 2017-04-19 07:30:38

Yes, it will limit the download speed for the files that are being downloaded on your server (by the graber). Edit libraries/framework/curl.php and add:

curl_setopt($ch, CURLOPT_MAX_RECV_SPEED_LARGE, 10240);

after

        $ch = curl_init();
        $fh = fopen($file, 'w');
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_FILE, $fh);
        curl_setopt($ch, CURLOPT_HEADER, FALSE);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, CURL_TIMEOUT);
        curl_setopt($ch, CURLOPT_VERBOSE, CURL_VERBOSE);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
        curl_setopt($ch, CURLOPT_NOPROGRESS, CURL_PROGRESS);
        curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11');

Please note that you need a recent version of curl and php. Also i never tested this on freebsd.

#324 Re: Troubleshooting » Tmp folder » 2017-04-19 07:28:11

Are you using file cache? If yes, delete tmp/cache/ - only the files in this folder, not in subfolders. I will remove file caching from 3.x.

#325 Re: Troubleshooting » Limit download speed » 2017-04-17 19:17:08

You could do this by modifying the libraries/framework/curl.php file and add use:

curl_setopt($ch, CURLOPT_MAX_RECV_SPEED_LARGE, 10240);

to limit the download speed...

Board footer

Powered by FluxBB