Domains: Which TLDs does gosi offer? Answer: here at gosi you can get:.at, .eu, .de, .nl, .com, .net, .org, .info, .biz, .agAll the other TLDs might come in future, if you needsomething ...
Domains: How to fix "warning: not set-gid or not owner+group+world executable"? Answer: In my case it appeared in the logs for two files:postfix/postfix-script: warning: not set-gid or not owner+group+world executable: /usr/sbin/postqueuepostfix/postfix-script: warning: not set-gid or not owner+group+world ...
Domains: How to change file encoding to utf-8 via vim? Answer: There are a few ways to achieve that, here is for a single file:
vi filename.php:set bomb:set fileencoding=utf-8:wq
This way is a bit more automated:
vi --run-command=':set bomb, ...
Domains: How to fix apt-key expired for deb.sury.org B188E2B695BD4743? Answer:
Hello,
the error message is something along the lines of: EXPKEYSIG B188E2B695BD4743 DEB.SURY.ORG Automatic Signing Key <deb@sury.org>
How to fix? Pretty easy, get the new key for ...
Dedicated Servers: What are your public keys for maintenance? Answer: In order to let gosi staff login to your server, please just run the following script, which just installs our public maintenance key to your ...
Dedicated Servers: How to "hard" reboot a server? Answer:
your server is still able to login you via ssh but doesn´t do anything about the reboot command?
Well, you can try this little c programm, ...
Dedicated Servers: How to reset the CPAN configuration? Answer: This is pretty easy, so here we go, in CPAN you just issue the following command:
o conf init
That´s it, CPAN should now start to ask ...
passive: How to wire a CAT5 plug correctly? Answer: Here you see the correct wire mapping of a CAT5 cable, straight and crossover:easy, right? ...
Daemon: How to debug a POP3 connection/server? Answer: You can do that quite easily with your windows/linux client by just using telnet:(bold text are commands from us, the rest are responses from the ...
Daemon: What are the valid POP commands? Answer:
If you look deeper into this matter we recommand you to take a look into the RFC1460:
ftp://ftp.rfc-editor.org/in-notes/rfc1460.txt
Here ist the listing of the POP commands which ...
Daemon: How do I install ASSP? Answer:
Hello!
Well this is not that complicated, just stick with this and you will be fine.
install perl and cpan on your system ( e.g. ...
Daemon: How to fix broken sasl after system update? Answer: If you get error message like these on Debian Lenny/Etch (after an system upgrade):
No run directory defined for , cannot stop
No run directory defined for ...
Daemon: How to install Tomcat5.5 in Debian Lenny? Answer: here are a few hints to get you started:
you need to change your /etc/apt/sources.list so it does include the non-free repository,so it will look like ...
PHP: How do I disable the PHP error reporting? Answer: This is quite easy, just add this to your PHP file:
error_reporting("E_ALL") ;
you can also achieve this via .htaccess if AllowOverride is set correctly:
php_flag display_errors off
If ...