27
2009
Enable mod_rewrite in Ubuntu
Mod_rewrite is an apache module which enables rewriting of urls requested by client before the pages are fetched by apache. For example www.site.com/products.php?code=459 can be written as www.site.com/products/459 or www.site.com/products/459.html . The second url is re-written into the first one by mod_rewrite using rewrite rules specified in the .htaccess file. To enable the mod_rewrite : To disable this module : Next edit the file : Look for the section : Replace the AllowOverride None with [...]
23
2009
Change column / field order in OpenOffice Base ( HSQL )
Altering the sequence of fields of a table was a feature I was looking for in OpenOffice Base. It is not directly possible to drag the columns or fields and alter their sequence. A SQL workaround can do the same thing. If the sequence of fields is : name , email , address , phone and phone is to be brought before address like this : name , email , phone , address then the [...]
12
2009
Apache for Multiple Users Linux – Ubuntu
When Apache is installed all web files go in he directory /var/www. If there are multiple users on a system then every user can have his own web directory to store web files. On Linux the following commands does that : userdir is the Apache module which enables each user to use his own web directory. This directory shall be public_html in the home folder. So create this folder and place an html file in [...]
Subscribe
Recent Posts
- Compile wxwebconnect on Ubuntu 11.04 64 bit
- Disqus Comments Importer Script in PHP
- Beginners’ guide to socket programming with winsock
- Handle multiple socket connections with fd_set and select on Linux
- Beginners guide to socket programming in C on Linux
- Gui whois client in python with wxpython
- Whois client code in C with Linux sockets
- str_replace for C
- Easy to use C/C++ IDE for Ubuntu Linux
- Get local ip in C on linux
An article by Binary Tides