Skip to content

Commit fd2c6d3

Browse files
authored
Add missing alt text (MicrosoftDocs#621)
* Add missing alt text * Fixing absolute links * Fixing absolute links * Minor edits * relative links * minor edits * Image corrections
1 parent 2a0c70c commit fd2c6d3

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

iis/application-frameworks/install-and-configure-php-on-iis/install-and-configure-mysql-for-php-applications-on-iis-7-and-above.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ It is recommended that you install MySQL on a dedicated server rather than insta
9191
3. Restart the IIS service by clicking on **Start**, selecting the **Search Field**, typing **iisreset**, and then pressing ENTER.
9292
4. If all went well, you should see the **mysqli** section on the PHP information page created earlier `http://localhost/phpinfo.php`.
9393

94-
[![](install-and-configure-mysql-for-php-applications-on-iis-7-and-above/_static/image2.jpg)](install-and-configure-mysql-for-php-applications-on-iis-7-and-above/_static/image1.jpg)
94+
![Table listing Mysqli version information.](install-and-configure-mysql-for-php-applications-on-iis-7-and-above/_static/image1.jpg)
9595

9696
*Figure 1: The mysqli section on the PHP information page*
9797

iis/application-frameworks/install-and-configure-php-on-iis/install-the-sql-server-driver-for-php.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ The Microsoft Drivers for PHP for SQL Server are designed to enable reliable, sc
1717

1818
The drivers' application programming interface (API) includes support for Active Directory authentication, transactions, parameter binding, streaming, metadata access, Unicode data handling, and error handling. The drivers rely on the Microsoft ODBC Driver for SQL Server to communicate with SQL Server. The drivers also support Microsoft SQL Azure Database, enabling developers to build PHP applications with relational capabilities using SQL Azure Database.
1919

20-
The Microsoft Drivers for PHP for SQL Server download is freely available to all SQL Server users. Releases and source code for the drivers are available from the [Github project page](https://github.com/microsoft/msphpsql). Full documentation for the drivers is available on [Microsoft Docs](https://docs.microsoft.com/sql/connect/php/microsoft-php-driver-for-sql-server?view=sql-server-2017); what follows is a brief overview of installation and configuration on Windows and IIS.
20+
The Microsoft Drivers for PHP for SQL Server download is freely available to all SQL Server users. Releases and source code for the drivers are available from the [Github project page](https://github.com/microsoft/msphpsql). Full documentation for the drivers is available on [Microsoft Docs](/sql/connect/php/microsoft-php-driver-for-sql-server); what follows is a brief overview of installation and configuration on Windows and IIS.
2121

2222
## System Requirements
2323

24-
Full details on the system requirements for all supported versions of the driver can be found on the [system requirements page](https://docs.microsoft.com/sql/connect/php/system-requirements-for-the-php-sql-driver?view=sql-server-2017). The following software is required:
24+
Full details on the system requirements for all supported versions of the driver can be found on the [system requirements page](/sql/connect/php/system-requirements-for-the-php-sql-driver). The following software is required:
2525

2626
- On the client machine:
2727
- A supported Windows, Linux, or macOS operating system
@@ -35,21 +35,21 @@ Full details on the system requirements for all supported versions of the driver
3535

3636
The Microsoft Drivers for PHP for SQL Server can be installed using the [Web Platform Installer](https://www.microsoft.com/web/downloads/platform.aspx). To download and install the drivers manually instead, perform the following steps:
3737

38-
1. Download and run the installation package from the appropriate link on the [download page](https://docs.microsoft.com/sql/connect/php/download-drivers-php-sql-server?view=sql-server-2017).
38+
1. Download and run the installation package from the appropriate link on the [download page](/sql/connect/php/download-drivers-php-sql-server).
3939
2. Enter a directory to extract the package into when prompted.
4040
3. Open the directory you chose in step 3 and copy the required dll libraries to your PHP extension directory. The filenames indicate which PHP version, threadedness, and architecture each dll file is for. For example, `php_sqlsrv_73_ts_x64.dll` is the 64-bit SQLSRV driver for thread-safe (ts) PHP 7.3.
41-
4. Download and install the Microsoft ODBC Driver for SQL Server from the appropriate link on the [ODBC download page](https://docs.microsoft.com/sql/connect/odbc/download-odbc-driver-for-sql-server?view=sql-server-2017).
41+
4. Download and install the Microsoft ODBC Driver for SQL Server from the appropriate link on the [ODBC download page](/sql/connect/odbc/download-odbc-driver-for-sql-server).
4242
5. Edit your `php.ini` file to add the following lines in the `Extensions` section:
4343

4444
[!code-console[Main](install-the-sql-server-driver-for-php/samples/sample1.cmd)]
4545

46-
Substitute the names of the files you copied to your PHP extension directory as required. Full instructions for loading the drivers can be found [here](https://docs.microsoft.com/sql/connect/php/loading-the-php-sql-driver?view=sql-server-2017).
46+
Substitute the names of the files you copied to your PHP extension directory as required. Full instructions for loading the drivers can be found [here](/sql/connect/php/loading-the-php-sql-driver).
4747
6. Start a command prompt as administrator and run `iisreset` to restart your IIS server.
4848

4949
## Configure the Drivers
5050

51-
1. Retrieve the current configuration settings for the SQLSRV driver using the [`sqlsrv_get_config` function](https://docs.microsoft.com/sql/connect/php/sqlsrv-get-config?view=sql-server-2017), or for the PDO_SQLSRV driver using the [`PDO::getAttribute` function](https://docs.microsoft.com/sql/connect/php/pdo-getattribute?view=sql-server-2017).
52-
2. Change the configuration settings for the SQLSRV driver using the [`sqlsrv_configure` function](https://docs.microsoft.com/sql/connect/php/sqlsrv-configure?view=sql-server-2017), or for the PDO_SQLSRV driver using the [`PDO::setAttribute` function](https://docs.microsoft.com/sql/connect/php/pdo-setattribute?view=sql-server-2017).
51+
1. Retrieve the current configuration settings for the SQLSRV driver using the [`sqlsrv_get_config` function](/sql/connect/php/sqlsrv-get-config), or for the PDO_SQLSRV driver using the [`PDO::getAttribute` function](/sql/connect/php/pdo-getattribute).
52+
2. Change the configuration settings for the SQLSRV driver using the [`sqlsrv_configure` function](/sql/connect/php/sqlsrv-configure), or for the PDO_SQLSRV driver using the [`PDO::setAttribute` function](/sql/connect/php/pdo-setattribute).
5353
3. Ensure that the drivers are loaded and verify the configuration settings by running a script that calls the phpinfo() function:
5454

5555
1. Open a text file, and copy the following code into it:
@@ -59,24 +59,24 @@ The Microsoft Drivers for PHP for SQL Server can be installed using the [Web Pla
5959
3. Open a browser, and go to [http://localhost/info.php](http://localhost/info.php).
6060
4. Scroll down the resulting page to find the `sqlsrv` and `pdo_sqlsrv` sections. Confirm that the drivers are loaded and the configuration settings are set to the default values (see Figure 1).
6161

62-
[![](install-the-sql-server-driver-for-php/_static/image2.jpg)](install-the-sql-server-driver-for-php/_static/image1.jpg)
62+
![Table showing local and master value configuration settings.](install-the-sql-server-driver-for-php/_static/image2.jpg)
6363

6464
*Figure 1: SQL Server configuration settings page*
6565

6666
## Create a Connection to the Database
6767

68-
When using the SQLSRV driver, the [`sqlsrv_connect()` function](https://docs.microsoft.com/sql/connect/php/sqlsrv-connect?view=sql-server-2017) is used to establish a connection to the server. When using the PDO_SQLSRV driver, the [`PDO::__construct` function](https://docs.microsoft.com/sql/connect/php/pdo-construct?view=sql-server-2017) is used to establish a connection to the server.
68+
When using the SQLSRV driver, the [`sqlsrv_connect()` function](/sql/connect/php/sqlsrv-connect) is used to establish a connection to the server. When using the PDO_SQLSRV driver, the [`PDO::__construct` function](/sql/connect/php/pdo-construct) is used to establish a connection to the server.
6969

70-
Connections can be made using [Windows authentication](https://docs.microsoft.com/sql/connect/php/how-to-connect-using-windows-authentication?view=sql-server-2017), [SQL Server authentication](https://docs.microsoft.com/sql/connect/php/how-to-connect-using-sql-server-authentication?view=sql-server-2017), or [Azure Active Directory authentication](https://docs.microsoft.com/sql/connect/php/azure-active-directory?view=sql-server-2017). The default is to use Windows authentication. In most scenarios, this means that the Web server's process identity or thread identity (if the Web server is using impersonation) is used to connect to the server, not a user's identity.
70+
Connections can be made using [Windows authentication](/sql/connect/php/how-to-connect-using-windows-authentication), [SQL Server authentication](/sql/connect/php/how-to-connect-using-sql-server-authentication), or [Azure Active Directory authentication](/sql/connect/php/azure-active-directory). The default is to use Windows authentication. In most scenarios, this means that the Web server's process identity or thread identity (if the Web server is using impersonation) is used to connect to the server, not a user's identity.
7171

7272
## Links for Further Information
7373

7474
- [Microsoft Drivers for PHP for SQL Server](https://github.com/microsoft/msphpsql)
75-
- [Download the Microsoft Drivers for PHP for SQL Server](https://docs.microsoft.com/sql/connect/php/download-drivers-php-sql-server?view=sql-server-2017)
76-
- [Overview of the Microsoft Drivers for PHP for SQL Server](https://docs.microsoft.com/sql/connect/php/overview-of-the-php-sql-driver?view=sql-server-2017)
77-
- [Programming Guide](https://docs.microsoft.com/sql/connect/php/programming-guide-for-php-sql-driver?view=sql-server-2017)
78-
- [SQLSRV Example Application](https://docs.microsoft.com/sql/connect/php/example-application-sqlsrv-driver?view=sql-server-2017)
79-
- [PDO_SQLSRV Example Application](https://docs.microsoft.com/sql/connect/php/example-application-pdo-sqlsrv-driver?view=sql-server-2017)
75+
- [Download the Microsoft Drivers for PHP for SQL Server](/sql/connect/php/download-drivers-php-sql-server)
76+
- [Overview of the Microsoft Drivers for PHP for SQL Server](/sql/connect/php/overview-of-the-php-sql-driver)
77+
- [Programming Guide](/sql/connect/php/programming-guide-for-php-sql-driver)
78+
- [SQLSRV Example Application](/sql/connect/php/example-application-sqlsrv-driver)
79+
- [PDO_SQLSRV Example Application](/sql/connect/php/example-application-pdo-sqlsrv-driver)
8080
- [PHP Homepage](http://php.net/)
8181
- [Whitepaper: Accessing SQL Server Databases with PHP](https://social.technet.microsoft.com/wiki/contents/articles/1258.accessing-sql-server-databases-from-php.aspx)
8282
- [Drivers for SQL Server Team Blog](https://techcommunity.microsoft.com/t5/SQL-Server/bg-p/SQLServer/label-name/SQLServerDrivers)

iis/configuration/system.webServer/webSocket.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The `<webSocket>` element specifies the use of the WebSocketModule module with A
3535
2. In **Server Manager**, click the **Manage** menu, and then click **Add Roles and Features**.
3636
3. In the **Add Roles and Features** wizard, click **Next**. Select the installation type and click **Next**. Select the destination server and click **Next**.
3737
4. On the **Server Roles** page, expand **Web Server (IIS)**, expand **Web Server**, expand **Application Development**, and then select **WebSocket Protocol**. Click **Next**.
38-
[![](webSocket/_static/image2.png)](webSocket/_static/image1.png) .
38+
![Screenshot of the Application Development list showing WebSocket Protocol selected.](webSocket/_static/image1.png) .
3939
5. On the **Select Features** page, click **Next**.
4040
6. On the **Confirm installation selections** page, click **Install**.
4141
7. On the **Results** page, click **Close**.
@@ -44,7 +44,7 @@ The `<webSocket>` element specifies the use of the WebSocketModule module with A
4444

4545
1. On the **Start** screen, move the pointer all the way to the lower left corner, right-click the **Start** button, and then click **Control Panel**. - In **Control Panel**, click **Programs and Features**, and then click **Turn Windows features on or off**.
4646
2. Expand **Internet Information Services**, expand **World Wide Web Services**, expand **Application Development Features**, and then select **WebSocket Protocol**.
47-
[![](webSocket/_static/image4.png)](webSocket/_static/image3.png)
47+
![Screenshot showing the Application Development Features list with multiple selections and WebSocket Protocol highlighted.](webSocket/_static/image3.png)
4848
3. Click **OK**.
4949
4. Click **Close**.
5050

@@ -78,7 +78,7 @@ For more information, see [IWebSocketContext interface](/iis/web-development-ref
7878
5. Select **system.webServer/webSocket** in the **Section** text box.
7979
6. Set `enabled` to **True** to enable webSocket or **False** to disable webSocket. Set **pingInterval** and **receiveBufferLimit** to the desired values.
8080

81-
[![](webSocket/_static/image6.png)](webSocket/_static/image5.png)
81+
[![Screenshot of a portion of the Configuration Editor screen with enabled highlighted.](webSocket/_static/image5.png)](webSocket/_static/image5.png)
8282
7. Click **Apply** in the **Actions** pane.
8383

8484
<a id="005"></a>

iis/develop/extending-the-management-ui/overview-of-mwa-and-mwm-for-iis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The server settings are updated when CommitChanges is called on the ServerManage
5959

6060
Here is an overview of some of the strongly typed classes offered by this assembly:
6161

62-
[![](overview-of-mwa-and-mwm-for-iis/_static/image3.jpg)](overview-of-mwa-and-mwm-for-iis/_static/image1.jpg)
62+
![Diagram showing connections between the ServerManager class and other classes.](overview-of-mwa-and-mwm-for-iis/_static/image1.jpg)
6363

6464
### Accessing Individual Configuration Files
6565

@@ -79,7 +79,7 @@ The IIS configuration system allows you to create a section where you specify pr
7979

8080
A simple overview of generic configuration extensibility is shown below:
8181

82-
[![](overview-of-mwa-and-mwm-for-iis/_static/image7.jpg)](overview-of-mwa-and-mwm-for-iis/_static/image5.jpg)
82+
![Diagram showing connections in a generic configuration.](overview-of-mwa-and-mwm-for-iis/_static/image5.jpg)
8383

8484
### Runtime Access to Configuration
8585

@@ -93,7 +93,7 @@ Brief descriptions of some of the important classes in each namespace are given
9393

9494
A high level view of what this assembly offers:
9595

96-
[![](overview-of-mwa-and-mwm-for-iis/_static/image11.jpg)](overview-of-mwa-and-mwm-for-iis/_static/image9.jpg)
96+
![Screenshot showing lists of classes in namespaces.](overview-of-mwa-and-mwm-for-iis/_static/image9.jpg)
9797

9898
### Microsoft.Web.Management.Server
9999

iis/install/installing-iis-7/installing-iis-from-the-command-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If you are logged on to an account other than the built in local administrator a
4444
### Windows Security Dialog – LUA
4545

4646
If you are logged on to an account other than the built in local administrator account you may see the following security alert dialog box.
47-
[![](installing-iis-from-the-command-line/_static/image2.jpg)](installing-iis-from-the-command-line/_static/image1.jpg)
47+
![Screenshot of the Windows Security dialog.](installing-iis-from-the-command-line/_static/image1.jpg)
4848

4949
Figure 1: Windows Security Dialog
5050

0 commit comments

Comments
 (0)