Archive

Posts Tagged ‘Windows’

Удалить вложенные папки .SVN

January 26th, 2011 No comments

Создайте новый .bat файл в корневом каталоге. Назовите remove_svn_sub_folders.bat,
вставьте следующий текст.

for /f “tokens=* delims=” %%i in (‘dir /s /b /a:d *svn’) do (
rd /s /q “%%i”
)

Затем выполните. Это удалит все вложенные папки с .SVN.

Categories: PHP, SVN, Windows Tags: ,

Google (and Yahoo!) Sitemap Generator for Windows

July 11th, 2010 No comments

Google Sitemaps allows the webmaster to help Google index their pages optimally. The GSiteCrawler will help you generate the best Google Sitemap file for your website. The GSiteCrawler uses different ways to find all the pages in your website and can generate all sorts of files, statistics and more. The sitemaps file format has lately been also adapted by Yahoo! – even MSN/Live.com is pledging it’s support.

GSiteCrawler will help you generate the best Google Sitemap file for your website

http://gsitecrawler.com

Categories: Webmaster Tags: , , ,

How to do a MX lookup on windows

May 19th, 2010 No comments

Here’s a little trick you can use to lookup an MX record for a domain. MX records are the Mail Exchanger records in DNS – they specify what IP address email should be directed to for the domain. So open up the command prompt (Start – Run – cmd)

nslookup
> set type=mx
> example.com

Categories: Online Tools, Windows Tags: , , ,

PHP mail под Windows. Отправка почты из PHP скриптов

February 3rd, 2010 No comments

В этой статье я хочу рассказать об отправке почты из php скриптов под Windows.

С точки зрения php программиста отправка почты выполняется с помощью стандартной функции mail().

И вот тут у многих начинающих разработчиков возникает проблема. Скрипт, прекрасно работающий на сервере хостера, выдает ошибки на локальном компьютере.

Read more…

Categories: PHP, Windows Tags: , , , ,