Let's say you want to host domains first.com and second.com.
Create folders for their files:
| #!/bin/sh | |
| # jfindfiles -- Find used and unused content files in your Joomla website | |
| # | |
| # This scripts supports Joomla versions 2.5 - 3.x | |
| # | |
| # Copyright 2014 Rene Kreijveld - [email protected] | |
| # | |
| # This program is free software; you may redistribute it and/or modify it. | |
| # |
| #!/bin/bash | |
| ## Install ISPConfig 3.x on Debian 8/9 64Bits | |
| ## ISPConfig3 3.x + Apache2 + Debian 8/9 64Bits | |
| ## VM HD 50GB, swap 2GB, / 20GB, /var/www all | |
| ## Filesystem ext4 | |
| ## Run as root | |
| ## Link: https://www.howtoforge.com/tutorial/perfect-server-debian-8-4-jessie-apache-bind-dovecot-ispconfig-3-1/ | |
| # Check if user has root privileges |
| # Delete all logs | |
| TRUNCATE ps_log; | |
| # Delete old connection data (only used for stats) | |
| # change 2016-02-01 00:00:00 according to you needs | |
| DELETE c, cs | |
| FROM ps_connections c | |
| LEFT JOIN ps_connections_source cs ON (c.id_connections = cs.id_connections) | |
| WHERE c.date_add < '2016-02-01 00:00:00'; |
Let's say you want to access the application shared preferences in /data/data/com.mypackage.
You could try to run adb shell and then run-as com.mypackage
( or adb shell run-as com.mypackge ls /data/data/com.mypackage/shared_prefs),
but on a production release app downloaded from an app store you're most likely to see:
run-as: Package 'com.mypackage' is not debuggable