Showing posts with label (Debian. Show all posts
Showing posts with label (Debian. Show all posts

Sunday, July 31, 2011

How To Run Your Own DNS Servers (Primary And Secondary) With ISPConfig 3 (Debian Squeeze)

'1.2.3.5' IDENTIFIED BY 'yourrootsqlpassword' WITH GRANT OPTION MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;

CREATE USER 'root'

View the Original article

Sunday, May 29, 2011

Setting Up A Spam-Proof Home Email Server (The Somewhat Alternate Way) (Debian Squeeze)

(some poorly designed websites do not recognizes the www. as valid email address, for those I just leave it away).

For people I use a format like that: "email.john.doe

View the Original article

Monday, March 28, 2011

Setting up an Android app build environment with Eclipse, Android SDK, PhoneGap (Debian squeeze)

 

This tutorial describes how you can set up a development environment for building Android applications on a Debian squeeze desktop with Eclipse, Android SDK, and PhoneGap. Device tested describe how to build Android apps from the command line with the PhoneGap and the GUI with Eclipse and PhoneGap and how in an Android emulator and a real Android. PhoneGap, you can use your Android applications with Web technologies such as HTML, to develop CSS and JavaScript (e.g. with JavaScript libraries such as jQuery/Keds) and it is these Web apps in native Android apps (in fact, PhoneGap supports multiple platforms such as such as AndroidiPhone), Palm, Windows Mobile, Symbian, so that you can use the same sources to create apps for multiple platforms).

 

 

Read more on HowtoForge set as a favorite of this email-ThisComments (0)

View the Original article

Tuesday, January 25, 2011

Enabling SquirrelMail For Your Web Sites On An ISPConfig 3 Server (Debian Lenny)

Lots of people have reported problems (such as getting 404 Not Found errors) using the SquirrelMail webmail package in their web sites created through ISPConfig 3. If you have followed the "Perfect Server" guides for ISPConfig 3, you have SquirrelMail already installed, but if you are still having the same problems, then this guide is for you. This guide explains how to configure SquirrelMail on a Debian Lenny server so that you can use it from within your web sites (created through ISPConfig).

I do not issue any guarantee that this will work for you!

 

Configuring SquirrelMail

SquirrelMail's Apache configuration is in the file /etc/squirrelmail/apache.conf, but this file isn't loaded by Apache because it is not in the /etc/apache2/conf.d/ directory. Therefore we create a symlink called squirrelmail.conf in the /etc/apache2/conf.d/ directory that points to /etc/squirrelmail/apache.conf and reload Apache afterwards:

cd /etc/apache2/conf.d/
ln -s ../../squirrelmail/apache.conf squirrelmail.conf
/etc/init.d/apache2 reload

That's it already - /etc/apache2/conf.d/squirrelmail.conf defines an alias called /squirrelmail that points to SquirrelMail's installation directory /usr/share/squirrelmail.

Now go to the PHP open_basedir field on the Options tab of your web site in ISPConfig and add the directories /usr/share/squirrelmail and /etc/squirrelmail (that's the directory where SquirrelMail's configuration is stored) to the line, e.g. as follows:



View the Original article