windows-server

How do I install GD on my windows server version of PHP

孤街浪徒 提交于 2019-12-18 04:44:09
问题 I am running Windows Server 2003 and need to install a version of GD. Can anyone point out some instructions or advice? 回答1: Check php_gd2.dll is in your extension directory and uncomment ;extension=php_gd2.dll of your php.ini . 回答2: You need to edit your php.ini (found in your C:/PHP folder if you installed PHP here). Add the following line (or remove the ; before it if it exists in there): extension=php_gd2.dll 回答3: In Windows download related Debug Pack on php.net download page, it's

NTLM Authentication - Get Windows login, domain and host in PHP

核能气质少年 提交于 2019-12-18 03:56:12
问题 I am working on a Single Sign-On (SSO) PHP application. Users log in their Windows session, and they want to be automatically logged in the application with their Windows account (connected with LDAP Active Directory). I tried this script : <?php $headers = apache_request_headers(); // Récupération des l'entêtes client if (@$_SERVER['HTTP_VIA'] != NULL){ // nous verifions si un proxy est utilisé : parceque l'identification par ntlm ne peut pas passer par un proxy echo "Proxy bypass!"; }

Regisering a Dll written in C# on a windows server machine - (Install a C# Class Library)

不想你离开。 提交于 2019-12-13 20:05:11
问题 I have written a save and open dialog box add on for a VBA project i'm working on - heres the link VBA: Get Excel FileDialogOpen to point to "My Computer" by default (thanks for the help @mehow). Now this add on (Class Library as it is actually called) works fine with the vba project on my computer which Ive been developing it on. However now to use this add (Class Library) on on the server I'm not able to get addon registered successfully so that the VBA project can see it. I wrote the

SQL Server login failed in Windows Server 2012

試著忘記壹切 提交于 2019-12-13 03:46:54
问题 I have a problem to login to SQL Server 2014 Express edition using a SQL Server user. I have this problem in Windows Server 2012. In normal Windows machine I can create user and login. I changed the authentication mode to mix and did the all thing in Internet but still I got login error. Error Number: 18456 Severity: 14 State: 1 Line Number: 65536 If anyone can please help me. 回答1: How are you trying to connect? Is there any connection string? And Do you check connectting with udl file. For

Windows Server 2012 Outbound HTTP Request Limit?

空扰寡人 提交于 2019-12-13 02:15:44
问题 Is there a limit to the number of outbound HTTP requests that can be made simultaneously on Windows Server 2012 Standard? We're running a C# console app making HTTP calls (with many threads async) and noticing an increase in request times as more threads are added. 来源: https://stackoverflow.com/questions/33577431/windows-server-2012-outbound-http-request-limit

Silverlight with RIA services on IIS 10.0 results in 404 error

谁都会走 提交于 2019-12-12 13:36:24
问题 Trying to migrate an existing working Silverlight application with WCF RIA services from IIS 6.0 to IIS 10.0 on W indows Server 2016 but the application fails returning 404 error s. When I install Visual Studio on the server and try running the application then it works fine within the context of IIS Express. The server has the following components installed. Microsoft Silverlight 5.0 Microsoft Silverlight 4 SDK Microsoft Silverlight 5 SDK WCF RIA Services V1.0 SP2 I’ve even tried to directly

IIS 10: Windows 10 vs Windows Server 2016, Number of connections

微笑、不失礼 提交于 2019-12-12 12:08:40
问题 When I am looking for any information about IIS on the web, I find a gazillion links about IIS 7 and 8 but almost nothing about IIS 10, to the point I even question if it exists, even though I'm running it. There are many posts about connection limits in the non server editions of windows; absolutely nothing regarding windows 10. My question is: Is there a limit to the number of simultaneous connections in Windows10/IIS 10 (so we should get Windows Server 2016)? 回答1: On production you should

Node.js, express.js, Windows Server and EADDRINUSE

 ̄綄美尐妖づ 提交于 2019-12-12 03:08:59
问题 I've got a node.js express.js server setup. It's really simple, just serves up a static html page and listens on port 17500: const path = require('path'); const express = require('express'); const app = express(); const port = 17500; const index = path.join(__dirname, 'index.html'); console.log('Current NodeJs Version:', process.version); console.log('Index.html:', index); app.use((req, res) => res.sendFile(index)); app.listen(port, function (err) { if (err){ console.error(err.message);

bcp Utility write to remote server?

北慕城南 提交于 2019-12-11 23:53:16
问题 According to some recommendations i use bcp Utility to write SQL server Table to .cvs file so i could later transfer the data to informix table with the same structure . My SQLServer Stored Procedure : ALTER PROCEDURE [dbo].[TestCVS] AS BEGIN declare @sql nvarchar(4000) select @sql = 'bcp "select * from ML..gmp4vacationbalance" queryout c:\ss\Tom.cvs -c -t, -T -S' + @@servername exec master..xp_cmdshell @sql END I have four questions concerning this procedure : 1- How to allow this procedure

A process serving application pool 'App pool' suffered a fatal communication error with the Windows Process Activation Service

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 18:40:27
问题 I have asp.net web forms application. I deployed program to IIS server and program is working well but all of users' InProc session often die at same time. I know that appliaction pool often is recycle. I instaled DebugDiagx64 program and add log this application pool. Result is that Some exception details were omitted due to the following reasons The maximum number of stacks (MAX_CLR_EXCEPTION_STACKS_PER_EXCEPTION_TYPE = 10) for this CLR exception type have been collected: 'NOT_FOUND' The