Unable to cURL to localhost web app from within Docker container
I have a container that is running a PHP application. I also have a dotnet core application running locally on my mac to handle OIDC/Identity. I am looking to integrate the two but am having trouble...
View ArticleComment by shenn on Unable to cURL to localhost web app from within Docker...
Thanks, I'll give those a shot. The issue with #2 is that that OIDC_URL is used for browser redirects (GET) to the authorize endpoint as well as POST. The browser on my Mac won't take...
View ArticleComment by shenn on Unable to reference NPM package globally
For the record I did try original jQuery and ran into the same issue, I mentioned that in the question @ggorlen
View ArticleComment by shenn on Memcache not closing connections with close()?
@MarkusZeller please elaborate
View ArticleCan't install php7 or php 7.1 with homebrew
I was following a couple links that had this same sequence, namely this example. I was unable to get it done successfully. Here is the output from terminalMacBook-Pro-4:/ SHennessy$ brew tap...
View ArticleGoogle Sheets: Import only certain tab downloadable xlsx link?
This is the file in question, https://dshs.texas.gov/coronavirus/TexasCOVID-19HospitalizationsOverTimebyTSA.xlsxThis is a hosted xlsx which I've used a solution similar to this one.However, this xlsx...
View ArticlepdfMake / html2canvas is way too big for PDF output, how to resize?
I'm trying to convert a section of my HTML page into a PDF file. I don't want the whole page because it contains buttons, etc. that aren't necessary.So I created a div that has a height 0 and adding...
View ArticleKey not valid for use in specified state. After IIS Reset
I tried this:runas /user: domain\user cmd with no luck This seems to only occur now when IIS is reset and I try to resume my browsing session. So I am logged into the application, I reset IIS on the...
View ArticleCalling Javascript function from C# event in ASP.NET
This is in ASP.NET with C#. I am trying to programmatically call a Javascript function from a radiobuttonlist click event. I have created the radiobuttonlist and added a couple of list items inside. I...
View ArticleID4175: The issuer of the security token was not recognized by the...
I am trying to implement a Simple STS web site alongside my MVC application in a development environment. I was able to get this working properly on my local machine. I would navigate to my MVC app,...
View ArticleIssues using PHP Trader Functions: Call to undefined function trader_ma()
I'm attempting to install the Trader extension on my mac. I believe the install was done correctly but can't seem to use them. Here is my feedback from terminalsudo pecl install traderpecl/trader is...
View ArticleSharePoint 2010, hotfix install fail "An error occurred while running detection"
I am having a lot of trouble installing hotfix 2849990 on my SharePoint Foundation 2010 server. After running it shows the error "An error occurred while running detection". I tried another hotfix as...
View ArticleUpdatePanel causing full postback. Trying to do a partial postback
I am working on a page that is using a gridview to display data. I have some dynamically created textboxes inside an ItemTemplate which contains several textboxes per row. Now I also have an update...
View ArticleMap reduce problem in python
I am currently struggling with an assignment. The solution would input a txt file and run through counting the number of palindromes and their frequency. I need to use Map reduce to create to do so For...
View ArticleDateTime issue with VB.Net and stored procedure
I am running SQL Server 2000 and classic asp with vb. I am having a huge headache with a stored procedure which accepts a datetime named start and one named end. I was trying to send today's date minus...
View Article"You have an error in your SQL syntax; check the manual that corresponds to...
Losing my mind here, trying to figure this one out. Here is the SQL:Update `ScheduledShifts` ss LEFT JOIN `Shifts` s ON ss.`ShiftID` == s.`ShiftID` SET ss.`IsWeekend` WHERE (s.`WeekendDays` & (1...
View ArticleFill DataSet with DataTable
private static DataSet GetAuctionItemsDataSet(){ SqlDataAdapter adapt = new SqlDataAdapter(); adapt = DataAdapter; DataSet filler = new DataSet(); adapt.Fill(filler.Tables["AuctionItems"]);...
View ArticleJquery UI modal confirmation buttons not rendering HTML correctly, missing...
Having some trouble with my jQuery UI setup with bootstrap. For some reason when I do a dialog box jQuery is not adding the class "ui-button ui-widget ui-state-default ui-corner-all...
View Articlelookup value from another column that matches with new column
Here is my setup. I have 4 columns. Column A will contain value "y" or empty. Column B will contain a names. Column C will contain the same names as in column B but in a different order. What I want to...
View ArticleSQL Select within 24 hours?
People.Born is of type datetime. I would like to delete only the people that were born within the last 24 hours. I am running this as a stored procedure inside of Visual Studio 2010.Here is my...
View Article