Re: KILLALL, Kill processes containing text
kill -9 `ps -ef | grep TEXT | grep -v grep | awk '{print $2}'`
Re: KILLALL, Kill processes containing text
kill -9 `ps -ef | grep TEXT | grep -v grep | awk '{print $2}'`
Re: Plesk default page, remove default index page
By default, before you upload any files, you will see the Plesk Default Page. When you create your website be sure to delete this page (or overwrite it).
You must ensure that your home page is named index.html, index.htm or index.php. The default sample index page in your web space is named index.htmlso do ensure you delete / overwrite this sample file.
Re: Your PHP MySQL library version, This may cause unpredictable behavior message
This warning message is given by phpMyAdmin because the PHP libraries are newer than the phpMyAdmin was expecting. Don’t worry, this message can be very safely ignored.
Re: Changing max_execution_time and max_input_time in .htaccess for a single domain
Sometimes you need more time for your script or upload to complete however you want to avoid changing these setting for the entire server, so the option to change for a single domain is there when running PHP as Apache.
To change max_execution_time and max_input_time from the 60 second default add the following lines to the top of your .htaccess:
php_value max_execution_time 600 php_value max_input_time 600
The change is instantly active and affects only the virtual host in question.
Re: Problems sending attachments, attachments wont attach
Usually this problem is browser related and can be traced to an over-protective security setting, try the following in Internet Explorer:
Now try to attach again.