Andrzej's profileAndrzej SzelagPhotosBlogListsMore Tools Help

Blog


    28 July

    Holidays 2008


    I'm going on holidays with my Emilly, my brother and his wife tomorrow. We must visit following places in Poland:
    * Gdansk.
    * Sopot.
    * Puck.
    * Wladyslawowo.
    * Hel.
    * Leba.





    30 June

    My another book...


    I just finished my another book about the Public Key Infrastructure (PKI) in Windows Server 2008.

    Details:
    * Title: Windows Server 2008. Public Key Infrastructure (PKI).
    * Paperback: 240 pages.
    * Publisher: Helion (December 2008)
    * Language: Polish.









    02 June

    SQL Server 2005 Driver for PHP CTP (May 2008)


    Microsoft has released a new SQL Server 2005 Driver for PHP :-)
    The SQL Server 2005 Driver for PHP is a PHP 5 extension that allows for the reading and writing of SQL Server data from within PHP scripts. The extension provides a procedural interface for accessing data in all editions of SQL Server 2005.

    Links:
    Download the SQL Server 2005 Driver for PHP on this website.
    Download the PHP 5.2.6 zip package on this website.

    Download and install the SQL Server 2005 Driver for PHP CTP (May 2008):
    1. Download SQLServerDriverForPHP.exe.
    2. Run
    SQLServerDriverForPHP.exe and extract to a C:\SQLSrvDrvForPHP directory.
    3. Read the SQLServerDriverForPHP_Readme.htm file.

    Note:
    For the latest SQL Server 2005 Driver for PHP documentation, see this website.



    31 January

    I just finished...


    I just finished my second book about the
    PHP 5, Microsoft IIS 6.0/7.0 and Microsoft SQL Server 2000/2005.

    Details:
    * Title: PHP, Microsoft IIS and SQL Server. Database Design And Programming.
    * Paperback: 368 pages.
    * Publisher: Helion.
    * Language: Polish.







    30 December

    Happy New Year!


    Happy New Year 2008 to You! Wishing You good luck and much happiness in the coming year!





    18 November

    Microsoft Windows Server 2008 Editions


    Use these pages to compare editions, features, roles and specifications for the upcoming release of Microsoft Windows Server 2008.




    28 October

    I am writing my another book

     
    I am writing my another book about the PHP 5, Microsoft Internet Information Services (IIS) and Microsoft SQL Server 2000/2005 on Windows Server 2003 Enterprise Edition with SP2.
     
    Details:
       Title: PHP, Microsoft IIS and SQL Server. Database Design And Programming.
       Publisher: Helion.  
      
    Language: Polish.
     



    11 October

    Some interesting links...


    Links to interesting websites:


    03 October

    How to install and configure PHP 5.2.5 to run with IIS 6.0 on W2K3 SP2


    How to install and configure PHP 5.2.5 to run with Internet Information Services 6.0 on Windows Server 2003 Enterprise Edition SP2

    #1. Install the Application Server role onto your Windows Server 2003 Enterprise Edition operating system (Start -> Manage Your Server -> Add or remove a role).

    NOTE: During the server role installation process, you may be asked to insert your Windows Server 2003 Enterprise Edition Compact Disk.

    #2. Download the latest version of PHP - 5.2.5 (PHP 5.2.5 zip package - php-5.2.5-Win32.zip) from PHP: Downloads website and unzip it somewhere on your hard disk. I generally install PHP 5.2.5 into a folder called PHP5 on C: drive.

    NOTE: Do NOT download the Windows Installer (PHP 5.2.5 installer - php-5.2.5-win32-installer.msi)! It does not contain some key files that you will need during configuration IIS6 and PHP!

    #3. Configure PHP.

    There are a three steps that need to be taken to get PHP working under Windows Server 2003 Enterprise Edition with Internet Information Services 6.0:

    • Copy the configuration file php.ini-recommended from C:\PHP5 folder into C:\WINDOWS folder and rename to php.ini ([Win+R] -> cmd /C rename C:\WINDOWS\php.ini-recommended php.ini).
    • Open up the C:\WINDOWS\php.ini file in a Notepad text editor ([Win+R] -> notepad C:\WINDOWS\php.ini).
    • Search for the line that looks like this... doc_root=  and change this line to... doc_root="C:\Inetpub\wwwroot" .

    #4. Configure Internet Information Services 6.0.

    NOTE: You can run PHP in one of two ways with Internet Information Services 6.0: using ISAPI or CGI extension.

    To get started, you need:

    • to add the PHP5 ISAPI extension to Internet Information Services 6.0 (IIS 6.0) on Windows Server 2003 Enterprise Edition SP2. Open up the IIS 6.0 manager:
    Go to Start -> Administrative Tools -> Internet Information Services (IIS) Manager (alternative method: [Win+R] -> inetmgr).
    Select Server_name -> Web Service Extension.
    From the right pane, click Add a new Web service extension... option.
    In the Extension name field enter PHP5 ISAPI.
    Click the Add button.
    Click the Browse button.
    Browse to the C:\PHP5\php5isapi.dll file.
    Click the Open and OK button.
    Check the Set extension status to Allowed checkbox.
    Click the OK button.
    • to add new extension (.php) to Internet Information Services 6.0 (IIS 6.0) on Windows Server 2003 Enterprise Edition SP2:

    From the left pane, right-click Web Sites and, from the resulting shortcut menu, choose Properties.
    On the Properties page, choose the Home Directory tab.
    Click the Configuration... button.
    Click the Add button.
    On the Add/Edit Application Extension Mapping window, next to the Executable field, click the Browse button.
    Browse to the C:\PHP5\php5isapi.dll file.
    In the Extension field, enter .php.
    Click OK button twice.

    • to set the permissions for your site so that you can execute scripts:

    In the Application settings, change the Execute permissions option Scripts only.
    Click the OK button.
    Click the Select All button.
    Click the OK button.

    • to add a default PHP page, such as index.php:

    From the left pane, right-click Web Sites and, from the resulting shortcut menu, choose Properties.
    On the Properties page, choose the Documents tab.
    Click the Add button.
    On the Add content page window, type index.php.
    Click the OK button.
    Click the Select All button.
    Click the OK button.

    #5. Test PHP.

    In your Internet Information Service 6.0 wwwroot (default C:\Intepub\wwwroot), create a file named test.php. Into this file, paste a three lines of text:

    <?php
       phpinfo();

    ?>

    NOTE: phpinfo() - Outputs lots of PHP information. For more information visit: http://pl2.php.net/manual/pl/function.phpinfo.php.

    Now, you can open the Internet Explorer browser and visit http://localhost/test.php or http://127.0.0.1/test.php.








    23 September

    Polish SQL Server User Group (PLSSUG)


    I'm glad to join the Polish SQL Server User Group (PLSSUG) because I'm interested in SQL Server platform.

    The PLSSUG is a community of Microsoft SQL Server geeks/professionals/users who want to share their experience and knowledge on SQL Server and has been founded by Pawel Potasinski.

    Join the Polish SQL Server User Group! Visit our website http://www.plssug.org.pl.

    06 September

    PHP + MS SQL + IIS


    I was very busy recently. Why? Hmm... I must finish creation a database web application in Hypertext Preprocessor (PHP), Microsoft SQL Server 2000 and Microsoft Internet Information Services (IIS) 5.0 for Windows 2000 Server.

    04 August

    Holidays 2007


    I'm going on holidays with my Emilly tomorrow :-) Hmm... I'm going to visit:
    * Karpacz - the mountain town,
    * Prague - the capital and largest city of the Czech Republic,
    * Castle in Ksiaz (known as The Pearl of Lower Silesia) - the castle in Silesia near town of Walbrzych...


    04 July

    Changes in Functionality from W2K3 to W2K8


    Today I read the document from Microsoft with the title
    Changes in Functionality from Windows Server 2003 with SP1 to Windows Server 2008. Very interesting document...

    01 July

    Just finished...


    I just finished my first book about the computer networks in Microsoft Windows Server 2003 and Windows Vista. It was very hard work...

    Details:

    * Paperback: 312 pages.
    * Publisher: Helion.
    * Language: Polish.



    27 April

    Microsoft Security Summit & Developer Days 2007 - Summary


    Generally, the Microsoft Security Summit & Developer Days 2007 coference in Warsaw was nice :-) Some sessions were very interesting and provided more useful information about the networking technologies in Windows Server Code Name "Longhorn" (now is beta testing) and Windows Vista operating systems. Unfortunately, some of the sessions (two or three) weren't interesting... :| The catering and food were good organized, of course :-) Furthermore, lots of gadgest: t-shirt, pens, two DVD discs (SQL Server 2005 Enterprise Edition and Windows Server Code Name "Longhorn") and other stuff... ;-)

    Yesterday, I can see Steve Ballmer's speech! As you know, Steve Ballmer is the Chief Executive Officer of Microsoft Corporation and he's a very popular man in the world.


    11 April

    Forefront Edge Security and Access Demonstration Toolkit

     
    Today I'm downloading the Forefront Edge Security and Access Demonstration Toolkit (version 3.1a). This demonstration toolkit comprises virtual machine-based demonstrations of Intelligent Application Gateway 2007 (IAG 2007) and Internet Security and Acceleration Server 2006 Standard Edition (ISA Server 2006 SE).
     
    The virtual machines run Windows Server 2003 R2 Enterprise Edition and provides the following four demonstrations:
    1. Secure Remote Access with IAG 2007.
    2. Secure Remote Access with ISA Server 2006.
    3. Branch Office Security with ISA Server 2006.
    4. Internet Access Protection with ISA Server 2006.
     
    Visit the Forefront Edge Security and Acceess Web page at http://www.microsoft.com/forefront/edgesecurity/trial.mspx to download the demonstration toolkit.

    03 April

    I am writing the book


    I am writing my first book about the computer networks in Microsoft Windows Server 2003 and Windows Vista.
    Last weekend, I finished my first chapter, which is about the TCP/IP protocol stack and the OSI reference model.

    The contents of my book:
    1. Basic types and categories of network topologies.
    2. Basic components of computer networks.
    3. Computer networking devices.
    4. Different types of networks (LAN, MAN, WAN).
    5. Communication network architectures and protocols.
    6. The TCP/IP protocol stack and the OSI reference model.
    7. The versions of Internet Protocol (IP version 4 and IP version 6).
    8. IP Addressing Fundamentals.
    9. Network operating systems - Microsoft Windows Server 2003.

    10. Managament computer networks and troubleshoot network problems with Active Directory, DHCP, DNS etc.


    14 March

    Microsoft Security Summit & Developer Days 2007


    I’m going to Warsaw for Microsoft Security Summit & Developer Days 2007 conference!
    Event details:
    Microsoft Security Summit & Developer Days 2007
    April 25-26, 2007
    Warsaw, Poland

    Two days full of new technologies from Microsoft:
    - Windows Server Code Name "Longhorn",
    - Windows Vista,
    - Forefront Client Security,
    - System Center Operations Manager 2007,

    - System Center Essentials 2007 and more…

    Home Page: http://www.microsoft.com/poland/technet/seminar/mss2007.mspx.

    See you there :-)

    22 February

    Microsoft Windows Server Code Name "Longhorn"


    I'm installing the Windows Server Code Name "Longhorn" Beta 2 (build 6001) on my personal computer now. I want to see changes and test its functionality in an areas: security, network, performance... and more :-) I hope that new server operating system from Microsoft Corporation will provide me much impressions and satisfaction. Let's go to test!