Hi
When I use cyberduck. Can I get a direct link to download a file?
Now I get a demo version copy link in form
https://fhscript.com/app/index.php/Caribbean%20Dreams%201.jpg
how can I get in the form?
https://fhscript.com/11bv/Caribbean_Dreams_1.jpg
Hi
Change in /core/includes/master.inc.php on all servers
// set timezone if not set, change to whatever timezone you want
if (!ini_get('date.timezone'))
{
date_default_timezone_set('GMT');
}
GMT channge to your timezone http://php.net/manual/en/timezones.php
example
"// set timezone if...
edit file
admin/tasks/auto_prune.cron.php
change to
// delete old sessions
$db->query('DELETE FROM `sessions` WHERE `updated_on` < :updated_on', array('updated_on' => time() - (2 * 24 * 60 * 60)));
and run cron
Hello
I have a problem with pending on nginx
I use NGINX Complete Download Log
my test rules nginx
server {
listen 80;
server_name localhost; # change this for your server
root /var/www/vhosts/public/;
index index.php;
client_max_body_size 5G;
# pass the PHP...