mkisofs -J -allow-leading-dots -allow-multidot -R -V "Label" -iso-level 4 -o image.iso Folder
where:
- -J: Generate Joliet directory informatio
- -allow-leading-dots: Allow ISO9660 filenames to start with ‘.’
- -allow-multidot: Allow more than one dot in filenames (e.g. .tar.gz)
- -R: Generate Rock Ridge directory information
- -V: Set Volume ID
- -o: Set output file name
- -iso-level: Set ISO9660 conformance level (1..3) or 4 for ISO9660 version 2
If your server setup does not support creating file systems snapshots rsync-ing the message store is not the best solution because you may have to keep Scalix off for a long time. So you will need another way for saving data.
Read the rest of this entry »
Ever wanted to extract text from a Microsoft Word document with PHP and COM? It’s not so hard as it seems. Create a Word document on your computer and use this piece of code:
Read the rest of this entry »
After less than a month since the PC version of GTA4 was released, Rockstar presented at the Spike TV Video Games Awards a trailer with a new episode of GTA4: Lost and Damned.
Read the rest of this entry »
The hottest thing in the digital camera market is undoubtedly the digital SLR, which is better known as a dSLR. While dSLRs are flying off dealer shelves, many new users are confused about the terminology. Most people know that SLR stands for “single lens reflex.” Since nearly all SLRs accept interchangeable lenses, it would appear they should be known as multiple lens reflex (MLR) cameras.
If you want to understand how the SLR received it’s name, you have to dip into the history of the camera. Early cameras were similar to the view cameras used today. The photographer looked through the lens, focused, composed and then inserted a single film plate behind the optics to make an image. While the entire process was crude by modern standards, the photographer enjoyed great control, since he looked directly through the actual imaging lens to compose the shot.
Read the rest of this entry »
Here is a snippet of MS Office source code, leaked some time ago:
Read the rest of this entry »
On Windows, Firefox 3 uses the installed antivirus software to scan the fully downloaded files. This might be a good idea, but it can be the source of some annoying complications: freezes, delays an so on.
Read the rest of this entry »
If you are using Codeigniter for developing PHP applications you noticed the “index.php” part of the URL of your application.
You can remove it by doing two simple things:
1. Edit the config.php from .system/application/config/ and change the $config['index_page'] like this: $config['index_page'] = “”;
2. Create a .htaccess page in the root of the Codeigniter application:
RewriteEngine On
RewriteBase /CIapplication
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Edit line two in order to suit your setup.
Now you will be able to use: http://server.com/CIapplication/controller instead of: http://server.com/CIapplication/index.php/controller
In case this is not working, modify this line in config.php:
$config['uri_protocol'] = "AUTO";
and change it to:
$config['uri_protocol'] = "REQUEST_URI";
By: Amy Nutt
VoIP, or voice over internet protocol, simply put, is a way to make phone calls over the internet with the use of an analog telephone adapter. In making “phone calls” in this manner, the user can often avoid the high charges from the phone company, especially in the case of long distance calls.
How does it Happen?
A VoIP provider converts the audio message (your voice) from analog form into digital form with an ATA (analog telephone adapter) so that the media can be sent over the internet. On the other end, the digital media is then converted back into an analog form as would be heard on a regular phone call.
Read the rest of this entry »
By: Dustin Baker
Small businesses face numerous pressures. The few employees of the business are responsible for trying to get orders, organizing deliveries, billing for the deliveries, paying bills and manage the incidentals involved in these key activities.
Good document management software can take over much of the work and free the small businessperson to focus on the business. We look at this issue in more detail below.
Read the rest of this entry »