Bind html control in UpdatePanel on runtime is not working on amazon EBS - amazon-ebs

I am facing a peculiar problem related to bind html control at runtime in Update panel. Actually I have deployed a website on amazon EBS and when I am accessing this site with our domain name https://my.example.com and use that update panel to bind the dynamic content it is not working.
But when I am accessing the same server with IP address like https://xx.xx.xx.xx:443/ then everything is working fine. I am not able to understand why custom URL is not working and my update panel is not able to display the html control on runtime and why it is working when I am using IP address to access that site.

Related

Hosting several sites on a server... change default site?

I have an AWS instance running Amazon Linux 2.
I'm currently hosting several sites on it using vhosts.conf
my problem is that if the IP address of the server is entered into the browser then the first site i setup on this server is shown.
I'd like to just show a blank page rather than one specific site.
This seems to have become an issue because when one of my hosted clients put their URL into an email in outlook live it shows a thumbnail and excerpt from the site, but it's showing the wrong site!
Apparently outlook live uses Bing to show this information, and i can only think that it's looking up the IP address and being presented with contents from the (incorrect) default website.
Thanks!

Google + PhotoHunt Java sample not accessible by ip

I am trying to run the PhotoHunt Java sample, https://developers.google.com/+/photohunt/java. The problem I am seeing is the service can only be accessed by http://localhost:8888. Google + sign-in button works fine, so I assume all the configuration is correct. Buy if I try to use http://<some_ip>:8888, it is not accessible. Any advice?
Change the app engine server to run on a different port. Select the menu on the Eclipse Run button and then click Run Configurations. Select the tab for Arguments. Next, add the following line:
--address=<yourhostaddress>
And optionally set the port as well. The following screenshot shows a configured application.
Now when you run the application, it will serve on the assigned address and port.

Unable to create a new item from SharePoint 2010 website in the local system

I have a SharePoint website which is running in the both server and local.
Website is running fine in the server, but when it's running in the local system I can see all the display items, but when going to create a new item on list or library I'm getting an error message like below that List doesn't exist.
The image above for creating a simple contact list by clicking on Add new item.
Is there any way to fix this issue or
anything that I have to set permissions in the server.
It was just because I didn't create an alternative access mapping with intranet option for the web application. Web application is now accessible with all functionality like what I am able do it through server.

vb.net problem with path

I have created a web application in that application i have added two folder. one is admin folder and under admin i have added a upload folder. In upload folder i have three different audio's. And also i have imported DLL for Windows media player. Through this media player im able to play the audios in local host.
By giving Direct path like MediaPlayer1.Filename="C:\User\sam\waka.mp3"
But when i host the website im getting problem the page is getting refreshed but the audio is not getting played.
I have tried this path Server.Mappath(".\.\upload\waka.mp3")
and Server.Mappath("~\admin\upload\waka.mp3)
the above both paths are not working when i host the website please reply.
It's still a bit unclear, but it sounds like there's some kind of audio player in your website (an ActiveX control or something?) that's trying to reference a path on the server as though it were on the client that's loading the page. Naturally, this will work on your development machine because the client and the server are the same thing.
What's actually being rendered on the client side? What happens if you reference the audio file by its URL rather than its file system path?
Or are you trying to do something different than what I describe? Are you actually trying to play the audio on the server when the client accesses the site?

Apache not loading CSS files on remote browsers but works on localhost

I have an ubuntu installation on my laptop i use for web app development. When i type in http://localhost/blah.php i see my php web page as i normally would with all css style loaded and rendering fine.
When i try to connect to this same apache server from a remote machine by typing in the IP address the page loads but without any css styling at all. I also get the same problem trying to connect to the apache server from a virtual machine on the same box. I would like to get this working so i can test my web apps in IE but obviously css not loading is a problem. Any tips ?
Look into your source code and look how your style sheets are referenced.
If you have references to http://localhost/mystylesheet.css, that's your problem right there.
If that doesn't help, try to access a style sheet directly (enter the address in the browser) and tell us what happens. Also post the URL you are using. The head of the HTML document you are calling would also be helpful.