Posted on 26 January 2010. Tags: antivirus, messages do not open, thunderbird
The fact that Antivirus Norton is not compatible with Thunderbird,you must configure it manually, perform as explained below:
- Open Norton Antivirus
- Select Configure > File Systems>Auto-Protect
- Cross check the box [Exclude files/folders selected]
- Click [exclusions] and [Files/Folders]
- Select the folder [Inbox] (without extension) under:
Posted in Windows
Posted on 26 January 2010. Tags: After Effects
Right click on the footage in the Project Window. Click Interpret Footage. At the bottom, under Other Options, it’ll say “Loop _ Times.” By default it’s set to 1. But just increase that number however many times you want it to loop.
Posted in After Effects
Posted on 25 January 2010. Tags: .htaccess, development, PHP, scripting
I m PHP 5.2.0 / Apache
and I can’t access php.ini
I try to update .htaccess
and added
php_value upload_max_filesize “25M”
php_value post_max_size “25M”
However it will give me “Internal Server Error” Continue Reading
Posted in .htaccess, PHP, Programming
Posted on 23 January 2010.
In case you need to allow access with PHP scripts of a certain virtual host to additional folder(s), you should set up option ‘open_basedir’ for the virtual host with the new path value, splitting the folder names with colons. This action can only be made by a user with root privileges on domains’ vhost.conf or vhost_ssl.conf files (for SSL virtual host). For more information, read the article ‘Including Directives into Configuration File of Web Serve’ in the Parallels Plesk Panel documentation.
Once applied these changes, you should recreate Apache’s configuration files and restart Apache service using the following command in the shell. If the vhost(_ssl).conf file is found, then it will be automatically added to the httpd.include file of the domain:
~# /usr/local/psa/admin/sbin/websrvmng -a -v
/plesk_installation_directory/admin/sbin/websrvmng –reconfigure-vhost –vhost-name=<domain_name>
Posted in Plesk
Posted on 20 January 2010.
B KB MB GB TB Converter
Have you ever been confused about the number of kilobytes in a megabyte, or in a gigabyte or vice-versa? Now you can convert among bytes and kilobytes and megabytes and gigabytes and terabytes with ease.
http://egret.net/kb__mb.htm
Posted in Network
Posted on 20 January 2010.
Do you notice if it happens at a particular time everyday?
Cause we’ve discovered that it can be a cron problem. Try disabling all cron jobs and see if it still happens.
Also, be sure to do this:
Go into plesk:
1) Mail server settings
* At Relay Options:
2) Uncheck the authentication required: “POP3 lock time”
* Disable greylisting:
3) /usr/local/psa/bin/grey_listing –update-server -status off
http://forum.parallels.com/showthread.php?t=90550
Posted in Plesk
Posted on 15 January 2010.
How To scp, ssh and rsync without prompting for password
Whenever you need to use scp to copy files, it asks for passwords. Same with rsync as it (by default) uses ssh as well. Usually scp and rsync commands are used to transfer or backup files between known hosts or by the same user on both the hosts. It can get really annoying the password is asked every time. I even had the idea of writing an expect script to provide the password. Of course, I didn’t. Instead I browsed for a solution and found it after quite some time. There are already a couple of links out there which talk about it. I am adding to it… Continue Reading
Posted in Linux
Posted on 15 January 2010.
Use a javascript confirm box to ask the user if they want to delete
Continue Reading
Posted in JavaScript - Ajax
Posted on 15 January 2010.
http://www.mikerubel.org/computers/rsync_snapshots/
https://calomel.org/rsync_tips.html
http://rootprompt.org/article.php3?article=8976
http://www.comentum.com/rsync.html
Posted in Linux
Posted on 14 January 2010.
SELECT
clients.id,
(SELECT Count(clients_job.id)
FROM
clients_job
WHERE
clients_job.client_id = clients.id ) AS JobCounter
FROM
clients
ORDER
BY EPONIMIA ASC
Posted in MySQL, Programming