Quantcast
Channel: All Forums
Viewing all 27852 articles
Browse latest View live

Insufficient Privileges to Read From Virtual Directory

$
0
0

Not really sure where to post this, as the topic involves a couple different technologies that I'm relatively new to.
Any advice is more than welcome though.

My issue involves a lack of access to the Virtual Directory that I just configured in IIS 10.
The directory itself points to a UNC style path.
Specifically, the path to access a shared folder that was created via SQL Server 2014's FILETABLE feature.

I can browse to the folder no problem using Windows Explorer, but if I try to connect to any files in that structure via http (using the alias I provided during Virtual Directory instantiation), I am greeted with an error (500.19).

Please advise if you have any suggestions for me.


Second site with different cert is using cert of first site

$
0
0

Hello,

i have a weird problem with my IIS 7.5 configuration! I have two public IPs lets call them IP1 and IP2

I have two sites (dom1 and dom2) and two certs (not wildcard / cert1 and cert2).

The first site (dom1) is using the IP1 and cert1 and it works well

Bindings typ: https, hostname: blank, port: 443, IP: * also tried hostname: dom1, port: 443, IP: IP1

The second site (dom2) is configured with the IP2 and cert2 but it uses always the cert of dom1 

Bindings typ: https, hostname: dom2, port: 443, IP: IP2

In the nameserver both domains are pointing to IP1. Can that maybe the problem?

Any help on this would be very nice! Thank You!

HTTPS Node.js server

$
0
0

Hello, 

I am trying to setup Node.js project using IIS and my application is using HTTPS , so how do i setup using IIS?

i tried to use iisnode, but didnt workout somehow. 

Memory Leakage in IIS8.5

$
0
0

I have published our ASP.NET Web Application on IIS8.5 Web server, every time client complains about the application performance.

After restarting IIS everything going fine,bit after few hours again pages are unresponsive,very slow and sometimes Internal server error message displayed. what is the cause of this issue,is this memory leakage or other workaround in IIS. Please explain in step by step because i am new for IIS related issue,please guide me

how to set startup page

$
0
0

I am trying to set my startup page but it's not showing my desire output page. Alphabetically page that is on top that will shown as a startup page. My page name is home.aspx that i want to show as a startup page. I tried my level best to fix this issue. I goes IIS manager and made changes in default document. here i add my page name. I also made changes in my plesk panel IIS settings.

Can somebody tell me how to fix this issue?

How to configure automatic (web)deploy for Internet Information Services (IIS)?

$
0
0

Hi everyone,

Without any answer on StackOverflow I decided to ask my question here (hoping someone knows the solution), see http://stackoverflow.com/questions/37436904/how-to-configure-automatic-webdeploy-for-internet-information-services-iis

For a continuous integration project I'm trying to configure a package called Web Deploy 3.5.

The server is running on Windows Server 2012 and IIS version 8.5.

I did the following steps to configure it.

  1. Installed complete Web Deploy 3.5;
  2. Enabled in IIS management panel -> Management Service -> Remote connections - and checked Windows credentials or IIS Manager credentials;
  3. Added a new Windows User with Administrator rights and checked password never expired;
  4. Allowed on site level the user via IIS Manager Permissions;
  5. Restart the following services: Web Deployment Agent Service and Web Management Service

After configuration I execute the following command from another machine:

"C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" -verb:sync -source:contentPath="C:\Release\Website\" -dest:contentpath="website.lan",wmsvc=webserver.lan,username=deploymentuser,password=test -allowUntrusted

The following error occured everytime.

Error: Could not complete the request to remote agent URL 'https://webserver.lan:8172/msdeploy.axd?Site=website.lan'.
Error: The underlying connection was closed: An unexpected error occurred on a send.
Error: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
Error: An existing connection was forcibly closed by the remote host
Error count: 1.

When I go in a browser to https://webserver.lan:8172/msdeploy.axd?Site=website.lan

and provide the login credentials for user deploymentuser, I see a white page. I have googled a lot on this error and verified the configuration with http://www.iis.net/learn/publish/using-web-deploy/configure-the-web-deployment-handler

and http://www.iis.net/learn/manage/remote-administration/remote-administration-for-iis-manager

..but I cannot fix it.

Does anyone know a solution?

Thanks a lot,

Jordy

$_POST is always empty

$
0
0

Hello,

I've installed the latest PHP 5.6.16 on Windows Server 2008 R2 / IIS 7.5 following these instructions to the letter:

http://www.iis.net/learn/application-frameworks/install-and-configure-php-applications-on-iis/using-fastcgi-to-host-php-applications-on-iis

This server also runs a .NET application which is critical. My goal was to access a MS SQL database using SQLSRV 3.2 driver. After install everything worked, phpinfo looks good, I made some simple queries etc. But when I tried to submit a form using POST method I found that both $_POST and $_REQUEST are always empty no matter what I do.

There are a lot of similar questions online, but none of the offered solutions works for me.

I've made a simple PHP script named testphp.php to analyze the problem:

<?php

print "REQUEST_METHOD: " . $_SERVER['REQUEST_METHOD'];
print "<br>CONTENT_TYPE: " . $_SERVER['CONTENT_TYPE'];
print "<br>_GET: "; var_dump($_GET);
print "<br>_POST: "; var_dump($_POST);
print "<br>HTTP_POST_VARS: "; var_dump($HTTP_POST_VARS);
print "<br>php://input: "; $data=file_get_contents("php://input"); var_dump($data);
?><br><form action="testphp.php" method="POST"><input type="text" name="ok" value="ok"><input type="submit" name="submit" value="submit"></form>

When I submit the form I get the following output:

REQUEST_METHOD: POST
CONTENT_TYPE: application/x-www-form-urlencoded
_GET: array(0) { }
_POST: array(0) { }
HTTP_POST_VARS:
Notice: Undefined variable: HTTP_POST_VARS in C:\inetpub\...\testphp.php on line 7
NULL 
php://input: string(0) ""

I can see in Firefox DevTools that the request method is correctly set to POST and form variables are in the header. Problem persists when I use IE or Firefox on localhost and if I use Firefox or Chrome from remote. If I change the method to GET the result is expected ($_GET has all the needed values). Here are some relevant values from my php.ini:

variables_order = "GPCS"
request_order = "GP"
enable_post_data_reading = On
post_max_size = 8M
cgi.force_redirect = 0
fastcgi.impersonate = 1

Here are some relevant lines from my applicationHost.config:

<fastCgi><application fullPath="C:\php\php-cgi.exe" /></fastCgi><handlers accessPolicy="Read, Script"><add name="PHP_via_FastCGI" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\php\php-cgi.exe" resourceType="Either" />
...

I really have no more ideas where to look. Please help.

Could not load type 'myNameSpace.myClass'

$
0
0

Hello,

I am new in module development and I would like to kindly ask you for a help.

I developed simple module in VB.NET 4.6:

Imports System.Threading.Tasks
Imports System.Web

Namespace myNamspace
    Public Class myClass
Implements IHttpModule Public Sub Init(context As HttpApplication) Implements IHttpModule.Init Dim wrapper = New EventHandlerTaskAsyncHelper(AddressOf DoAsyncWork) context.AddOnBeginRequestAsync(wrapper.BeginEventHandler, wrapper.EndEventHandler) End Sub Private Async Function DoAsyncWork(sender As Object, e As EventArgs) As Task Dim app = CType(sender, HttpApplication) Dim ctx = app.Context Dim rq As HttpRequest = ctx.Request Dim qs As String = rq.QueryString.ToString() If qs.Length > 50 Then ... Else If qs = "Test" Then ctx.Response.StatusCode = 403 End If End Function Public Sub Dispose() Implements IHttpModule.Dispose Throw New NotImplementedException() End Sub End Class End Namespace

I created sign for the assembly and compiled it as Release.
I installed it on server the by GACUTIL.
I added module into modules section in applicationhost.config:

         <add name="_myName" type="myNamespace.myClass" preCondition="managedHandler,runtimeVersionv4.0" />

From that moment all webs end with error  Could not load type 'myNameSpace.myClass'

Be so kind to give me any help.

Thanks a lot
Miroslav


Reload Web Page give IIS erreur 401.502 - Unauthorized

$
0
0

Hi, Some problem occur on my IIS website in php.

When i come in all page the first time, i don't have any problem, but when i reload the page i have multipleNetworkError: 401 Unauthorized, on css files, on js files, on image files...  sometime one file come, sometime no... it's random.

I have only that in iis error log :

2016-05-30 12:12:04 IP GET /assets/js/plugins.form.js - 443 - IP Mozilla/5.0+(Windows+NT+6.3;+WOW64;+rv:46.0)+Gecko/20100101+Firefox/46.0 URL_SITE 401 502 0 1
2016-05-30 12:12:04 IP GET /img/index/fly_ico.png - 443 - IP Mozilla/5.0+(Windows+NT+6.3;+WOW64;+rv:46.0)+Gecko/20100101+Firefox/46.0 URL_SITE 401 502 0 0

And nothing in FailedReqLogFiles Yellwhich is configured and operational...

I try to find solution, try a lot of thing without success. I'm loosing now.

If someone get the same problem... plz help Tongue Out

Thanx

jeito de limpar pendrive

problem with include file using asp classic

$
0
0

mickb

0 Postsproblem with include file using asp classic

<div class="comment-right-col">

a few seconds ago

<div id="post-preview-content" class="reply-comment">

Im trying to include a file in an asp page that has a "?" search parameter.

<!--#include File='bedroom10.asp?destinationid=31'-->

No success, any help would be appreciated thanks

</div> </div>

IIS 7.5 rendering problem

$
0
0

hi,

I've been developing asp.net application with 4.0 .Net framework version.

it's working perfectly when I run it from VS2010 but has layout problem when I publish it from IIS.

tried to use X-UA-Compatible meta tag but it don't work

these attachment below showing the differences between my html pages when I run it from VS and when I run it from IIS

IIS ver:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1"><title>
	BSPG_Reports_Search_WEB</title><style type="text/css">
        .style1
        {
            height: 5px;
        }
        .testDiv
        {
            border-top:2px solid black;
            border-left:2px solid black;
            border-right:2px solid black;
        }
        .testGroup
        {
            border-left:2px solid black;
            border-right:2px solid black;
        }
        .testItem
        {
            border-bottom:2px solid black;
            border-left:2px solid black;
            border-right:2px solid black;
        }</style><meta http-equiv="pragma" content="no-cache" /><meta http-equiv="X-UA-Compatible" content="IE=Edge" /></head><body><script type="text/javascript" language="javascript">
    window.onload = function () {
        if ("" != "") {
            alert("");
        }
    }</script><div id="searchPanel"><form id="header" style="background-color: #C5D9F1" action="BSPG_Search.aspx"><div class="page"><div class="header"><div class="title" 
                    style="margin: auto; padding: inherit; font-size: 20px; font-family: 'MS Pゴシック', Arial, sans-serif; font-weight: bold; font-style: normal; font-variant: normal; text-transform: capitalize; color: #000000; text-align: center; background-color: #C5D9F1; height: 30px; width: 100%; top: 0px; line-height: 30px;">
                    ZOO BSPG試験報告書検索画面
                </div></div></div></form><form name="searchConditions" method="post" action="/BSPG_Search.aspx" id="searchConditions"><input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTMxNjI5MjQ2Ng9kFgICAQ9kFgICAQ9kFgICAQ8PFgQeBVdpZHRoGwAAAAAAAIlAAQAAAB4EXyFTQgKAAmQWBgIBD2QWAmYPZBYGAgEPEGRkFgFmZAIDDxBkZBYBZmQCBQ8QZGQWAWZkAgIPZBYCZg9kFgYCAQ8QDxYCHgdFbmFibGVkaGQQFQAVABQrAwAWAGQCAw8QDxYCHwJoZBAVABUAFCsDABYAZAIFDxAPFgIfAmhkEBUAFQAUKwMAFgBkAgMPZBYCZg9kFgYCAQ8QDxYCHwJoZBAVABUAFCsDABYAZAIDDxAPFgIfAmhkEBUAFQAUKwMAFgBkAgUPEA8WAh8CaGQQFQAVABQrAwAWAGRk8KJD/+NiaS5oWJO1PcqUFuPnr3ABEyYyZdRQJ5Sun7s=" /><input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWQAKXtebzDwKa5IXoCQKa5InoCQKa5I3oCQLy+o+4CwKeuNzpCQL+8INWAvO6huAOAvL6o5MEAp648MIGAv7wr/0PAvO6qssBAvL6t+4MAp645L8OAv7wu4AHAvO6vrYJAs+F2WQC/sn/pAICmbOdugwCvITQgg8CvIS8pwYCvISozA0ChvS/6wMCod3dgA4CvMb7lQgC4+WbHwL+zrm0CgKZuNfJBAKSsuqZDQKRsuqZDQKQsuqZDQKSsvqgBgKRsvqgBgKQsvqgBgLiqLudBALfqLudBALgqLudBAKw1enXBQKBkcOXBALmp6WCCgLnuLziBgKCotp3Ap2L+IwLArj11NUHArX11NUHArb11NUHArXg5LQCArXg+I8LArXgjOsDApmj7MUIApmj+MUIApmj9MUIAuyBs/EHAuyBx0wC7IHbpwkCsMKE5Q0C3o2JngMCsMKA5Q0C3o2FngMCyP2q5wUCyf2q5wUCyv2q5wUCpZ/z7goCrZLlogqluiGWeAkJY67Pfk956Gy0sKpHVKqbSvGVoWxNFLBwPg==" />	<table id="tblSearch" border="0" height="28" width="800"><tr><td><span style="display:inline-block;">整理No.</span><input name="txtOrganizeNo1" type="text" maxlength="50" id="txtOrganizeNo1" /><span id="lblOrganizeNo1" style="display:inline-block;"></span><input name="txtOrganizeNo2" type="text" maxlength="50" id="txtOrganizeNo2" /><span id="lblOrganizeNo2" style="display:inline-block;"></span><input name="txtOrganizeNo3" type="text" maxlength="50" id="txtOrganizeNo3" /></td></tr><tr><td><span style="display:inline-block;">試験区分</span><select name="lstTestCategory1" id="lstTestCategory1"><option selected="selected" value=""></option><option value="運動性能">運動性能</option><option value="台上氷雪上">台上氷雪上</option><option value="摩耗耐久">摩耗耐久</option></select><span id="lblSpcTestCategory1" style="display:inline-block;"></span><select name="lstTestCategory2" id="lstTestCategory2"><option selected="selected" value=""></option><option value="運動性能">運動性能</option><option value="台上氷雪上">台上氷雪上</option><option value="摩耗耐久">摩耗耐久</option></select><span id="lblSpcTestCategory2" style="display:inline-block;"></span><select name="lstTestCategory3" id="lstTestCategory3"><option selected="selected" value=""></option><option value="運動性能">運動性能</option><option value="台上氷雪上">台上氷雪上</option><option value="摩耗耐久">摩耗耐久</option></select><span id="lblSpcTestCategory3" style="display:inline-block;"></span></td></tr><tr><td><span style="display:inline-block;"></span><select name="lstTestGroup1" id="lstTestGroup1" disabled="disabled"></select><span id="lblSpcTestGroup1" style="display:inline-block;"></span><select name="lstTestGroup2" id="lstTestGroup2" disabled="disabled"></select><span id="lblSpcTestGroup2" style="display:inline-block;"></span><select name="lstTestGroup3" id="lstTestGroup3" disabled="disabled"></select><span id="lblSpcTestGroup3" style="display:inline-block;"></span></td></tr><tr><td><span style="display:inline-block;"></span><select name="lstTestItem1" id="lstTestItem1" disabled="disabled"></select><span id="lblSpcTestItem1" style="display:inline-block;"></span><select name="lstTestItem2" id="lstTestItem2" disabled="disabled"></select><span id="lblSpcTestItem2" style="display:inline-block;"></span><select name="lstTestItem3" id="lstTestItem3" disabled="disabled"></select><span id="lblSpcTestItem3" style="display:inline-block;"></span></td></tr><tr><td><span style="display:inline-block;">試験車両</span><input name="txtTestVehicle1" type="text" maxlength="50" id="txtTestVehicle1" /><span id="lblTestVehicle1" style="display:inline-block;"></span><input name="txtTestVehicle2" type="text" maxlength="50" id="txtTestVehicle2" /><span id="lblTestVehicle2" style="display:inline-block;"></span><input name="txtTestVehicle3" type="text" maxlength="50" id="txtTestVehicle3" /></td></tr><tr><td><span style="display:inline-block;">サイズ</span><input name="txtSize1" type="text" maxlength="50" id="txtSize1" /><span id="lblSize1" style="display:inline-block;"></span><input name="txtSize2" type="text" maxlength="50" id="txtSize2" /><span id="lblSize2" style="display:inline-block;"></span><input name="txtSize3" type="text" maxlength="50" id="txtSize3" /></td></tr><tr><td><span style="display:inline-block;">パターン</span><input name="txtPattern1" type="text" maxlength="50" id="txtPattern1" /><span id="lblPattern1" style="display:inline-block;"></span><input name="txtPattern2" type="text" maxlength="50" id="txtPattern2" /><span id="lblPattern2" style="display:inline-block;"></span><input name="txtPattern3" type="text" maxlength="50" id="txtPattern3" /></td></tr><tr><td><span style="display:inline-block;">依頼部署</span><input name="txtRequestDept1" type="text" maxlength="50" id="txtRequestDept1" /><span id="lblRequestDept1" style="display:inline-block;"></span><input name="txtRequestDept2" type="text" maxlength="50" id="txtRequestDept2" /><span id="lblRequestDept2" style="display:inline-block;"></span><input name="txtRequestDept3" type="text" maxlength="50" id="txtRequestDept3" /></td></tr><tr><td><span style="display:inline-block;">依頼者</span><input name="txtRequestPerson1" type="text" maxlength="10" id="txtRequestPerson1" /><span id="lblRequestPerson1" style="display:inline-block;"></span><input name="txtRequestPerson2" type="text" maxlength="10" id="txtRequestPerson2" /><span id="lblRequestPerson2" style="display:inline-block;"></span><input name="txtRequestPerson3" type="text" maxlength="10" id="txtRequestPerson3" /></td></tr><tr><td><span style="display:inline-block;">依頼年月次</span><input name="txtRequestPeriod1" type="text" maxlength="50" id="txtRequestPeriod1" /><span id="lblRequestPeriod1" style="display:inline-block;"></span><input name="txtRequestPeriod2" type="text" maxlength="50" id="txtRequestPeriod2" /><span id="lblRequestPeriod2" style="display:inline-block;"></span><input name="txtRequestPeriod3" type="text" maxlength="50" id="txtRequestPeriod3" /></td></tr><tr><td><span style="display:inline-block;">テーマ名</span><input name="txtThemeName1" type="text" maxlength="50" id="txtThemeName1" /><span id="lblThemeName1" style="display:inline-block;"></span><input name="txtThemeName2" type="text" maxlength="50" id="txtThemeName2" /><span id="lblThemeName2" style="display:inline-block;"></span><input name="txtThemeName3" type="text" maxlength="50" id="txtThemeName3" /></td></tr><tr><td><span style="display:inline-block;">テーマ登録No.</span><input name="txtThemeNo1" type="text" maxlength="50" id="txtThemeNo1" /><span id="lblThemeNo1" style="display:inline-block;"></span><input name="txtThemeNo2" type="text" maxlength="50" id="txtThemeNo2" /><span id="lblThemeNo2" style="display:inline-block;"></span><input name="txtThemeNo3" type="text" maxlength="50" id="txtThemeNo3" /></td></tr><tr><td><span style="display:inline-block;">目的</span><input name="txtPurpose1" type="text" maxlength="50" id="txtPurpose1" /><span id="lblPurpose1" style="display:inline-block;"></span><input name="txtPurpose2" type="text" maxlength="50" id="txtPurpose2" /><span id="lblPurpose2" style="display:inline-block;"></span><input name="txtPurpose3" type="text" maxlength="50" id="txtPurpose3" /></td></tr><tr><td><span style="display:inline-block;">表題</span><input name="txtTitle1" type="text" maxlength="50" id="txtTitle1" /><span id="lblTitle1" style="display:inline-block;"></span><input name="txtTitle2" type="text" maxlength="50" id="txtTitle2" /><span id="lblTitle2" style="display:inline-block;"></span><input name="txtTitle3" type="text" maxlength="50" id="txtTitle3" /></td></tr><tr><td><span style="display:inline-block;">報告書No.</span><input name="txtReportNo1" type="text" maxlength="50" id="txtReportNo1" /><span id="lblReportNo1" style="display:inline-block;"></span><input name="txtReportNo2" type="text" maxlength="50" id="txtReportNo2" /><span id="lblReportNo2" style="display:inline-block;"></span><input name="txtReportNo3" type="text" maxlength="50" id="txtReportNo3" /></td></tr><tr><td><span style="display:inline-block;">BSPG受入係</span><input name="txtBSPGAcceptance1" type="text" maxlength="50" id="txtBSPGAcceptance1" /><span id="lblBSPGAcceptance1" style="display:inline-block;"></span><input name="txtBSPGAcceptance2" type="text" maxlength="50" id="txtBSPGAcceptance2" /><span id="lblBSPGAcceptance2" style="display:inline-block;"></span><input name="txtBSPGAcceptance3" type="text" maxlength="50" id="txtBSPGAcceptance3" /></td></tr><tr><td><span style="display:inline-block;">報告者</span><input name="txtReporter1" type="text" maxlength="50" id="txtReporter1" /><span id="lblReporter1" style="display:inline-block;"></span><input name="txtReporter2" type="text" maxlength="50" id="txtReporter2" /><span id="lblReporter2" style="display:inline-block;"></span><input name="txtReporter3" type="text" maxlength="50" id="txtReporter3" /></td></tr><tr><td><span style="display:inline-block;">報告日</span><input name="txtReportDate1" type="text" maxlength="50" id="txtReportDate1" /><input type="submit" name="btnReportDate1" value="..." id="btnReportDate1" /><span id="lblReportDate1" style="display:inline-block;">&nbsp;&nbsp;&nbsp;&nbsp;~   </span><input name="txtReportDate2" type="text" maxlength="50" id="txtReportDate2" /><input type="submit" name="btnReportDate2" value="..." id="btnReportDate2" /><span id="lblReportDate2" style="display:inline-block;"><font color="Red">&nbsp;&nbsp;&nbsp;&nbsp;※yyyy/mm/dd   </font></span></td></tr><tr><td><span style="display:inline-block;">Zoo登録No</span><input name="txtZooNo1" type="text" maxlength="50" id="txtZooNo1" /><span id="lblZooNo1" style="display:inline-block;"></span><input name="txtZooNo2" type="text" maxlength="50" id="txtZooNo2" /><span id="lblZooNo2" style="display:inline-block;"></span><input name="txtZooNo3" type="text" maxlength="50" id="txtZooNo3" /></td></tr></table><table style="width: 100%;"><tr><td style="text-align: right" class="style1"><input type="submit" name="btnSearch" value="検索" id="btnSearch" /></td><td class="style1"></td><td style="text-align: left" class="style1"><input type="submit" name="btnClear" value="クリア" id="btnClear" /></td></tr></table></form></div></body></html>

VS ver.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1"><title>
	BSPG_Reports_Search_WEB</title><style type="text/css">
        .style1
        {
            height: 5px;
        }
        .testDiv
        {
            border-top:2px solid black;
            border-left:2px solid black;
            border-right:2px solid black;
        }
        .testGroup
        {
            border-left:2px solid black;
            border-right:2px solid black;
        }
        .testItem
        {
            border-bottom:2px solid black;
            border-left:2px solid black;
            border-right:2px solid black;
        }</style><meta http-equiv="pragma" content="no-cache" /><meta http-equiv="X-UA-Compatible" content="IE=Edge" /></head><body><script type="text/javascript" language="javascript">
    window.onload = function () {
        if ("" != "") {
            alert("");
        }
    }</script><div id="searchPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;btnSearch&#39;)"><form id="header" style="background-color: #C5D9F1" action="BSPG_Search.aspx"><div class="page"><div class="header"><div class="title" 
                    style="margin: auto; padding: inherit; font-size: 20px; font-family: 'MS Pゴシック', Arial, sans-serif; font-weight: bold; font-style: normal; font-variant: normal; text-transform: capitalize; color: #000000; text-align: center; background-color: #C5D9F1; height: 30px; width: 100%; top: 0px; line-height: 30px;">
                    ZOO BSPG試験報告書検索画面
                </div></div></div></form><form name="searchConditions" method="post" action="BSPG_Search.aspx" id="searchConditions"><div><input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /><input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /><input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" /><input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTMxNjI5MjQ2Ng9kFgICAQ9kFgICAQ9kFgICAQ8PFgQeBVdpZHRoGwAAAAAAAIlAAQAAAB4EXyFTQgKAAmQWBgIBD2QWAmYPZBYGAgEPEGRkFgFmZAIDDxBkZBYBZmQCBQ8QZGQWAWZkAgIPZBYCZg9kFgYCAQ8QDxYCHgdFbmFibGVkaGQQFQAVABQrAwAWAGQCAw8QDxYCHwJoZBAVABUAFCsDABYAZAIFDxAPFgIfAmhkEBUAFQAUKwMAFgBkAgMPZBYCZg9kFgYCAQ8QDxYCHwJoZBAVABUAFCsDABYAZAIDDxAPFgIfAmhkEBUAFQAUKwMAFgBkAgUPEA8WAh8CaGQQFQAVABQrAwAWAGRkRHrcDm1Dfafs1GOwZ12ScZJd5rrD16PfzgS5T4YJzLU=" /></div><script type="text/javascript">
//<![CDATA[
var theForm = document.forms['searchConditions'];
	if (!theForm) {
    theForm = document.searchConditions;
}
	function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
	//]]></script><script src="/WebResource.axd?d=QmNWk2FvK9xwzsqj4p_emtyiBraADPGbEOa2eBXgHM5ovcwGVsUZF7woi2JCw8G7fXZXG6afqSaCaXFs729Rdnb3JiTV_zGaIh1ll2vsRSk1&amp;t=635586541120000000" type="text/javascript"></script><div><input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="7F7A7956" /><input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAEZAyBJ00LlDW3F9IcBbRtIkxQBGTbtwn5zDj4Z+ix25Fw5O6ODhVEpSAu+jqJiCZtRYdTddyh0DN9lf+M1ClHUO7ZBVcEgjBCSK46m+W+nqCNZ8i8bdOtn4ku5XjvG9rIddz0jA/U24o7d0X6qgk+U2zz5WcxDe1a+QIJFuI+QN/+50V8xaknYgeoR62pvpJvsv4co+8tcr3I5Zkt0SVAF6ZQvy83XSBtUmT9lY75nkUPhI/YzSbRiIqQQZourGb8hMAAcmuQXDTHZ9U3Vo+sFIFNmsqakzgkZ87r9cZu+z1D3N08zLk2/GfO4CI0bp2CyWJwSGaAL4s3QW9JrVrwEZHIfHzGl//2Zcc8FvXhNEyNbNQKtWoYnivskmP68yB6IAPyMK2iGkap1tH5l//naUzqqlb9JB1bw2I+fCDH7vlKKNbxE7fDXQwAhm+mw/GxyXuETnguj50DuB61itFmwh9qT+Ss4QpI8t9V90rbVcCE2Cxjj4Vx3dI6UKOgJZWOBOVDGgS36wX7KOq9fLVu/x/BnWa4nlZisjGw+DHB0Ph6AlfsCABlHAxN6yJz2VagvmfoMMRkaQcIii9ceKiSYlb6MPWCNojTAG7wvdUEL5vcZLoocHHfjMo0x/0lRX/T/tIrx0wec7823eAI8MAhfhnHUZwJBmupUKt67WV3cD2kvrmKnyG0q72k+ibii9Ke+o+l+i9cosi+CUwaz3ph0MiDFIVDRHo/Ns3a/NYdgVHug4vawL9h3ui3g007lRvaggGaRbBsXZef5aLWYpVBqrnD7ifOyUdMYdKHCpqU67K0DfBitrAi8I3WshOIu8BlxkFe5lzy9cPxzJyKtONjkggTOW2Yy/gUk8afw01EHfnngP72qWupir0XnNTc7KUJTlEU6qvWxGDjx9209qqlro23Q0NPgiFaSYWvg9wuHIEhp1H4qqfAEzdvOpnnxePua7vOvueFC7totOSikOqG5eCjH87RLQi5bFR3eYb/vdN1R+hAVxS6JbN9OX/jXszdiAAdabUExn0qJOgADvaWQv8G1GiONpSKN68KwjpxFHy8hJ5VG/MmOeGg0/ljSrvtaWxPh3fDGV+I+hAfUR0eaX493QVt/3jqDmqbPzdPkkFmjsmlC6n49xerJC4xmpCc24bD8VxNVmeLbOKRV3bQGwIp1aH8TnZv4ham7ozQ7pIavHeEiacR3itMCz4PFUxcsYGGYCPmk3K6A5DxYhf15pOdUkJAlih/sI82UE9VIvbRAax7Ad5sr4UuFCVQBC5Z8B5u8mxaUWmqs/kE9/oUUa/giq0H8hem4lYsczVaLjUzh7Df2UZbrVvhhy+ziQNuQdC+poZPcrt8ka8OxaPTOW6waWodygiuA2AOtxe6+1LBfDFbiSk/HnJzbZPVuH9PdXfKhIa9zS6F2WrgpfkRIPYKR0fap7d5fNzK1k18RZgo7U3Vc0WZ+wxclqyPFfzmN13HaNCmKPXwtSIMJvlpwqeBiII0YmISh+94YMRSWtjr6aYwVoNIyvMbOMdyt9/lI=" /></div>	<table id="tblSearch" border="0" style="height:28px;width:800px;"><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">整理No.</span><input name="txtOrganizeNo1" type="text" maxlength="50" id="txtOrganizeNo1" style="width:200px;" /><span id="lblOrganizeNo1" style="display:inline-block;width:7px;"></span><input name="txtOrganizeNo2" type="text" maxlength="50" id="txtOrganizeNo2" style="width:200px;" /><span id="lblOrganizeNo2" style="display:inline-block;width:7px;"></span><input name="txtOrganizeNo3" type="text" maxlength="50" id="txtOrganizeNo3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">試験区分</span><select name="lstTestCategory1" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestCategory1\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestCategory1" style="width:205px;"><option selected="selected" value=""></option><option value="運動性能">運動性能</option><option value="台上氷雪上">台上氷雪上</option><option value="摩耗耐久">摩耗耐久</option></select><span id="lblSpcTestCategory1" style="display:inline-block;width:7px;"></span><select name="lstTestCategory2" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestCategory2\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestCategory2" style="width:205px;"><option selected="selected" value=""></option><option value="運動性能">運動性能</option><option value="台上氷雪上">台上氷雪上</option><option value="摩耗耐久">摩耗耐久</option></select><span id="lblSpcTestCategory2" style="display:inline-block;width:7px;"></span><select name="lstTestCategory3" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestCategory3\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestCategory3" style="width:205px;"><option selected="selected" value=""></option><option value="運動性能">運動性能</option><option value="台上氷雪上">台上氷雪上</option><option value="摩耗耐久">摩耗耐久</option></select><span id="lblSpcTestCategory3" style="display:inline-block;width:7px;"></span></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;"></span><select name="lstTestGroup1" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestGroup1\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestGroup1" disabled="disabled" style="width:205px;"></select><span id="lblSpcTestGroup1" style="display:inline-block;width:7px;"></span><select name="lstTestGroup2" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestGroup2\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestGroup2" disabled="disabled" style="width:205px;"></select><span id="lblSpcTestGroup2" style="display:inline-block;width:7px;"></span><select name="lstTestGroup3" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestGroup3\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestGroup3" disabled="disabled" style="width:205px;"></select><span id="lblSpcTestGroup3" style="display:inline-block;width:7px;"></span></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;"></span><select name="lstTestItem1" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestItem1\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestItem1" disabled="disabled" style="width:205px;"></select><span id="lblSpcTestItem1" style="display:inline-block;width:7px;"></span><select name="lstTestItem2" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestItem2\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestItem2" disabled="disabled" style="width:205px;"></select><span id="lblSpcTestItem2" style="display:inline-block;width:7px;"></span><select name="lstTestItem3" onchange="javascript:setTimeout(&#39;__doPostBack(\&#39;lstTestItem3\&#39;,\&#39;\&#39;)&#39;, 0)" id="lstTestItem3" disabled="disabled" style="width:205px;"></select><span id="lblSpcTestItem3" style="display:inline-block;width:7px;"></span></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">試験車両</span><input name="txtTestVehicle1" type="text" maxlength="50" id="txtTestVehicle1" style="width:200px;" /><span id="lblTestVehicle1" style="display:inline-block;width:7px;"></span><input name="txtTestVehicle2" type="text" maxlength="50" id="txtTestVehicle2" style="width:200px;" /><span id="lblTestVehicle2" style="display:inline-block;width:7px;"></span><input name="txtTestVehicle3" type="text" maxlength="50" id="txtTestVehicle3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">サイズ</span><input name="txtSize1" type="text" maxlength="50" id="txtSize1" style="width:200px;" /><span id="lblSize1" style="display:inline-block;width:7px;"></span><input name="txtSize2" type="text" maxlength="50" id="txtSize2" style="width:200px;" /><span id="lblSize2" style="display:inline-block;width:7px;"></span><input name="txtSize3" type="text" maxlength="50" id="txtSize3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">パターン</span><input name="txtPattern1" type="text" maxlength="50" id="txtPattern1" style="width:200px;" /><span id="lblPattern1" style="display:inline-block;width:7px;"></span><input name="txtPattern2" type="text" maxlength="50" id="txtPattern2" style="width:200px;" /><span id="lblPattern2" style="display:inline-block;width:7px;"></span><input name="txtPattern3" type="text" maxlength="50" id="txtPattern3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">依頼部署</span><input name="txtRequestDept1" type="text" maxlength="50" id="txtRequestDept1" style="width:200px;" /><span id="lblRequestDept1" style="display:inline-block;width:7px;"></span><input name="txtRequestDept2" type="text" maxlength="50" id="txtRequestDept2" style="width:200px;" /><span id="lblRequestDept2" style="display:inline-block;width:7px;"></span><input name="txtRequestDept3" type="text" maxlength="50" id="txtRequestDept3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">依頼者</span><input name="txtRequestPerson1" type="text" maxlength="10" id="txtRequestPerson1" style="width:200px;" /><span id="lblRequestPerson1" style="display:inline-block;width:7px;"></span><input name="txtRequestPerson2" type="text" maxlength="10" id="txtRequestPerson2" style="width:200px;" /><span id="lblRequestPerson2" style="display:inline-block;width:7px;"></span><input name="txtRequestPerson3" type="text" maxlength="10" id="txtRequestPerson3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">依頼年月次</span><input name="txtRequestPeriod1" type="text" maxlength="50" id="txtRequestPeriod1" style="width:200px;" /><span id="lblRequestPeriod1" style="display:inline-block;width:7px;"></span><input name="txtRequestPeriod2" type="text" maxlength="50" id="txtRequestPeriod2" style="width:200px;" /><span id="lblRequestPeriod2" style="display:inline-block;width:7px;"></span><input name="txtRequestPeriod3" type="text" maxlength="50" id="txtRequestPeriod3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">テーマ名</span><input name="txtThemeName1" type="text" maxlength="50" id="txtThemeName1" style="width:200px;" /><span id="lblThemeName1" style="display:inline-block;width:7px;"></span><input name="txtThemeName2" type="text" maxlength="50" id="txtThemeName2" style="width:200px;" /><span id="lblThemeName2" style="display:inline-block;width:7px;"></span><input name="txtThemeName3" type="text" maxlength="50" id="txtThemeName3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">テーマ登録No.</span><input name="txtThemeNo1" type="text" maxlength="50" id="txtThemeNo1" style="width:200px;" /><span id="lblThemeNo1" style="display:inline-block;width:7px;"></span><input name="txtThemeNo2" type="text" maxlength="50" id="txtThemeNo2" style="width:200px;" /><span id="lblThemeNo2" style="display:inline-block;width:7px;"></span><input name="txtThemeNo3" type="text" maxlength="50" id="txtThemeNo3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">目的</span><input name="txtPurpose1" type="text" maxlength="50" id="txtPurpose1" style="width:200px;" /><span id="lblPurpose1" style="display:inline-block;width:7px;"></span><input name="txtPurpose2" type="text" maxlength="50" id="txtPurpose2" style="width:200px;" /><span id="lblPurpose2" style="display:inline-block;width:7px;"></span><input name="txtPurpose3" type="text" maxlength="50" id="txtPurpose3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">表題</span><input name="txtTitle1" type="text" maxlength="50" id="txtTitle1" style="width:200px;" /><span id="lblTitle1" style="display:inline-block;width:7px;"></span><input name="txtTitle2" type="text" maxlength="50" id="txtTitle2" style="width:200px;" /><span id="lblTitle2" style="display:inline-block;width:7px;"></span><input name="txtTitle3" type="text" maxlength="50" id="txtTitle3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">報告書No.</span><input name="txtReportNo1" type="text" maxlength="50" id="txtReportNo1" style="width:200px;" /><span id="lblReportNo1" style="display:inline-block;width:7px;"></span><input name="txtReportNo2" type="text" maxlength="50" id="txtReportNo2" style="width:200px;" /><span id="lblReportNo2" style="display:inline-block;width:7px;"></span><input name="txtReportNo3" type="text" maxlength="50" id="txtReportNo3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">BSPG受入係</span><input name="txtBSPGAcceptance1" type="text" maxlength="50" id="txtBSPGAcceptance1" style="width:200px;" /><span id="lblBSPGAcceptance1" style="display:inline-block;width:7px;"></span><input name="txtBSPGAcceptance2" type="text" maxlength="50" id="txtBSPGAcceptance2" style="width:200px;" /><span id="lblBSPGAcceptance2" style="display:inline-block;width:7px;"></span><input name="txtBSPGAcceptance3" type="text" maxlength="50" id="txtBSPGAcceptance3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">報告者</span><input name="txtReporter1" type="text" maxlength="50" id="txtReporter1" style="width:200px;" /><span id="lblReporter1" style="display:inline-block;width:7px;"></span><input name="txtReporter2" type="text" maxlength="50" id="txtReporter2" style="width:200px;" /><span id="lblReporter2" style="display:inline-block;width:7px;"></span><input name="txtReporter3" type="text" maxlength="50" id="txtReporter3" style="width:200px;" /></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">報告日</span><input name="txtReportDate1" type="text" maxlength="50" id="txtReportDate1" style="width:200px;" /><input type="submit" name="btnReportDate1" value="..." id="btnReportDate1" style="width:28px;" /><span id="lblReportDate1" style="display:inline-block;width:50px;">&nbsp;&nbsp;&nbsp;&nbsp;~   </span><input name="txtReportDate2" type="text" maxlength="50" id="txtReportDate2" style="width:200px;" /><input type="submit" name="btnReportDate2" value="..." id="btnReportDate2" style="width:28px;" /><span id="lblReportDate2" style="display:inline-block;color:Red;width:50px;">&nbsp;&nbsp;&nbsp;&nbsp;※yyyy/mm/dd   </span></td></tr><tr style="height:29px;"><td><span style="display:inline-block;width:150px;">Zoo登録No</span><input name="txtZooNo1" type="text" maxlength="50" id="txtZooNo1" style="width:200px;" /><span id="lblZooNo1" style="display:inline-block;width:7px;"></span><input name="txtZooNo2" type="text" maxlength="50" id="txtZooNo2" style="width:200px;" /><span id="lblZooNo2" style="display:inline-block;width:7px;"></span><input name="txtZooNo3" type="text" maxlength="50" id="txtZooNo3" style="width:200px;" /></td></tr></table><table style="width: 100%;"><tr><td style="text-align: right" class="style1"><input type="submit" name="btnSearch" value="検索" id="btnSearch" style="width:100px;" /></td><td class="style1"></td><td style="text-align: left" class="style1"><input type="submit" name="btnClear" value="クリア" id="btnClear" style="width:100px;" /></td></tr></table></form></div></body></html>

as you can see there's some missing code when I run my application from IIS.

does anybody know how to fix it?

thank you.

IIS FTP can access local, but not remote

$
0
0

I've been scouring the sites, and I've found related problems, but not with solutions that help.Thing is, I'm certain it's just something simple I'm overlooking.

I just set up a server using IIS7 on a Win7 machine. I assured ports 20, 21, and 80 were open on the firewall and forwarded through the local router. The HTTP services are working just fine. The FTP service is working fine when I put in the local address, but when I attempt to put in the URL for it (twolfhound.homenet.org), I can get the username/pw prompt. I've even had a folder created using Filezilla from a remote machine. However, I constantly get timeout errors from web pages, and ultimately through Filezilla when attempting to download the directory listing or to transfer files. The URL has worked fine for HTTP requests.

I completely turned off the firewall and still got the same problem. I've attempted to add FTP publishing to the working HTTP site, as well as removing the publishing and trying a separate new FTP site. I don't think it's a username issue, because it does work fine locally. I'm pretty sure there's just something simple I'm overlooking. I couldn't find anything noted as wrong in any of the Windows logs. Any suggestions are appreciated.

Can we control the media streaming (bandwidth) per user

$
0
0

Dear All,

I want to control the video streaming consumption using IIS Bit-rate throttling. I want to allocate Max bandwidth for particular media for downloading or streaming. 

Example , 100mb video file i want to control the 100kbps per user. 

How do we manage the bandwidth peruser using IIS bit-rate throttling.

Thanks

Bhagya Malith

PHP require_once fails from time to time

$
0
0

We have the problems with our WordPress site on IIS 8.5 server with PHP 7.0.4 64-bit.

From the WordPress debug log:

[30-May-2016 16:53:23 UTC] PHP Warning:  require_once(C:\inetp): failed to open stream: No such file or directory in C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-subscriptions\includes\gateways\paypal\class-wcs-paypal.php on line 22

[30-May-2016 16:53:23 UTC] PHP Fatal error:  require_once(): Failed opening required 'includes/class-wcs-paypal-standard-switcher.php' (include_path='.;C:\php\pear') in C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-subscriptions\includes\gateways\paypal\class-wcs-paypal.php on line 22

The site usually works fine but at some (unpredictable) moments this message starts to appear many times continiously and then every request to every page of the site gets 500 error. Only IIS restart helps.

Looking at the line mentioned in the error message, I see no potential problems:

require_once( 'includes/class-wcs-paypal-standard-switcher.php' );

The file exists, of course.

Same errors appear regularly referencing different "not found" files:

[27-May-2016 09:01:12 UTC] PHP Warning: require_once(C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-net-cim\lib\skyverge\woocommerce\class-sv-wc-plugin-compatibility): failed to open stream: No such file or directory in C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-net-cim\lib\skyverge\woocommerce\class-sv-wc-plugin.php on line 251
[27-May-2016 09:01:12 UTC] PHP Fatal error: require_once(): Failed opening required 'C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-net-cim\lib\skyverge\woocommerce/class-sv-wc-plugin-compatibility.php' (include_path='.;C:\php\pear') in C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-net-cim\lib\skyverge\woocommerce\class-sv-wc-plugin.php on line 251

[29-May-2016 23:51:31 UTC] PHP Warning: require_once(C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-n): failed to open stream: No such file or directory in C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-net-cim\lib\skyverge\woocommerce\payment-gateway\class-sv-wc-payment-gateway-plugin.php on line 205
[29-May-2016 23:51:31 UTC] PHP Fatal error: require_once(): Failed opening required 'C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-net-cim\lib\skyverge\woocommerce\payment-gateway/api/interface-sv-wc-payment-gateway-api-payment-notification-credit-card-response.php' (include_path='.;C:\php\pear') in C:\inetpub\wwwroot\StayVA.com\wp-content\plugins\woocommerce-gateway-authorize-net-cim\lib\skyverge\woocommerce\payment-gateway\class-sv-wc-payment-gateway-plugin.php on line 205

Note that file paths and names are truncated in the log.

Here is phpinfo: http://www.stayva.org/info.php


Web Page with Host Header

$
0
0

Helo to everyone, 

i need to create a web page with a dynamic field, the host header value.

For example i create something like:
SITE NAME
COMIING SOON

If host header value is www.website.com it will be

www.website.com
C
OMING SOON

Is it possible?
Thank you

APPCMD - Display LogFile Directory for specific site

$
0
0

Does anyone know how to display the LogFile Directory for a specified web site using APPCMD?

I know how to CHANGE the LogFile Directory:

appcmd.exeset config -section:system.applicationHost/sites/[name='Contoso'].logFile.directory:"d:\logs"

And I've tried to tweak this to display the value with something like:

appcmd.exe list config-section:system.applicationHost/sites/[name='Contoso'].logFile.directory

But that does not work. It generates an error.

Driving me crazy.

Thanks for any help.

How to signon and manage IIS using VS 2012

$
0
0

I have a web application and I would like to send an email using VB.  I am having problems because this is my first time using VB application to send an email and I was told to view my web application file and make changes.   I would like to know how to sign on to IIS using VS 2012 and manage IIS.  When I am on VS 2012 how to I view IIS. 

How to set up sites for internet and intranet?

$
0
0

I have a registered domain called mycompany.com. This is not an IIS site. I also have 2 subdomains: myproduct.mycompany.com and support.mycompany.com.

Now, within IIS I would like to set up 2 sites for the above 2 subdomains:

1. myproduct.mycompany.com: This site is an MVC application which will host the online help files of the product installed at clients. This site should be accessible from the outside. This should be quite straight-forward to setup.

2. support.mycompany.com: This is a little more tricky because I would like to have a number of applications within this site:

a) A WebApi application where the product sends exceptions raised. This application must be accessible from the outside.

b) An MVC application where clients can log in and view support tickets (created by application (a). This application must be accessible from the outside.

c) A private nuget server where we publish and consume our own packages. This application must be accessible only within our intranet.

What is the correct setup procedure to set up the sites & applications above?

Windows update always adds aspnet_client dir with incorrect permissions - breaks web deploy. ?

$
0
0

Hi,

Is there anyway to prevent this folder from getting added as a part of windows updates?  Everytime our servers get patched, every website gets the obsolete aspnet_client dir added back into the website dir.   This is added without permissions for our deploy account.  So when the nightly deploy runs, it fails,

C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.targets (4377): Web deployment task failed.(Unable to perform the operation ("Delete Directory") for the specified directory ("4_0_30319"). This can occur if the server administrator has not authorized this operation for the user credentials you are using. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_INSUFFICIENT_ACCESS_TO_SITE_FOLDER.)

So, I have to go in, manually delete it (or apply permissions for our account), and queue the build again.  This is a minor annoyance, but I think it's a pretty pointless bug to live with at this point since this dir is due to old .net 1.x stuff.

Is there any way to disable it?   Why wouldn't there be?   If I have to resort to some sort of work around, that is ok I guess, any suggestions for that?

TIA

Also see http://stackoverflow.com/questions/210440/what-is-the-aspnet-client-folder-for-under-the-iis-structure

Viewing all 27852 articles
Browse latest View live




Latest Images