Архив

Архив Ноябрь 2008

How to disable "Enter Key" to submit?

26 Ноябрь 2008 admin Нет комментариев

<form action=»foo»>
<input type=»text» onkeypress=»return bar(event)»>
<input type=»submit»>
</form>

<script type=»text/javascript»>
function bar(evt){
var k=evt.keyCode||evt.which;
return k!=13;
}
</script>

Note however that this «enter» key behavior isn’t standard (and actually behaves differently across user agents); moreover this won’t prevent you from full server-side checking, as a client can have javascript deactivated (or even trick your javascript at runtime).

Categories: Новости Tags: ,

Godaddy BONUS SAVINGS 10%

26 Ноябрь 2008 admin Нет комментариев

gd50bbd30 – take 10%* off everything else in your order.

Google Apps Setup with Plesk

25 Ноябрь 2008 admin Нет комментариев

Many administrators hit trouble while setting up Google Apps for domains with DNS in Plesk. Here are some vital tips for setting up with Plesk

If you are hitting the wall using Plesk, just making changes to Plesk will not be enough. You have to change the DNS setting in control panel of your Name Server provider.

  • You have to log in to your Server Command Control panel – which will be with your hosting provider and is is separate and distinct from PLESK. So you have to go to this panel and there you manage the DNS settings for your domain.
  • Add the MX records as provided in the generic instructions for Google Apps. Make sure that you set the MX pointers to .yourdomain.com. and not to mail.yourdomain.com. The mail.yourdomain.com. record will not work correctly. Here is an example:

Читать далее…

Categories: Новости Tags: , , ,

PHP function for make JSON

PHP function for make JSON from array

Читать далее…