...im SETUP-Feld des TS-Extension-Template gibst deine "Kommandos" ein.
LieGrü
Josef Florian
PS: Anbei nochmal das ganze aus einer Doku
Zitat:
Syntax:
[IP = ipaddress1, ipaddress2, ...]
[end]
Comparison:
The values are compared with the getenv(“REMOTE_ADDR”) from PHP.
You may include "*" instead of one of the parts in values. You may also list the first one, two or three parts and only they will be tested.
Examples:
These examples will match any IP-address starting with "123":
[IP = 123.*.*.*]
or
[IP = 123]
This examples will match any IP-address ending with "123" or being "192.168.1.34":
[IP = *.*.*.123][IP = 192.168.1.34]
hostname
Syntax:
[hostname = hostname1, hostname2, ...]
Comparison:
The values are compared with the fully qualiteid hostname of getenv(“REMOTE_ADDR”) retrieved by PHP.
Value is comma-list of domain names to match with. *-wildcard allowed but cannot be part of a string, so it must match the full host name (eg. myhost.*.com => correct, myhost.*domain.com => wrong)
|