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.
Its only used if you have a custom theme that displays the icon...
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.
from phpmyadmin use the following code to fix:
alter table menulinks add icon varchar(50) not null default '';
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.
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.
Once i finish 3.x i can start working on a messenger like feature...
Hmm...email me access and i'll check/fix.
email me access and i'll fix
nope, thats it
No ETA yet Once i've added the demo i will post on the forum.
Once i have setup a demo, we will test and then fix bugs.
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
Only if you modify the code in templates/defboot/extend/plugins/menu_main.plugin.php
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.
Hmm...i just tested on my box and it works. Email me FTP (and phpmyadmin/cpanel access) and i will check.
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.
Hmm...i will have to debug and test, but this used to work.
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!
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...
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.
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.
I wont be able to finish this month So i'm trying to trim down the stuff still left to do as much as possible to release asap. Sorry for the delay!
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.
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.
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...