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 | |
if [ -z "$1" ]; then | |
echo -e "Usage: $(basename $0) FILE\n" | |
exit 1 | |
fi | |
if [ ! -e "$1" ]; then | |
echo -e "$1: File doesn't exist.\n" | |
exit 1 |
[php] | |
comment = the php interpreter and libraries | |
executables = /usr/bin/php,/usr/bin/php5.6,/usr/bin/php7.0,/usr/bin/php7.1 | |
directories = /usr/lib/php, /usr/share/php, /usr/share/php5, /etc/php, /usr/share/php-geshi, /usr/share/zoneinfo, /etc/snmp, /usr/share/snmp | |
includesections = env | |
[env] | |
comment = environment variables | |
executables = /usr/bin/env |
#!/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