How can one IIS6 .NET app appear as subsite of another? - .net-2.0

SiteA.com and siteB.com are .NET 2.0 apps on IIS6. SiteA uses SSL.
Can I set things up so siteA.com/train gets people to siteB.com?
Are there multiple ways to do this? How would a good way be configured?

Go to MyComputer, right+mouse+click and chose Manage. Go to IIS/Websites and open up your sitename.com website.. navigate to the directory sitename.com/train. right+mouse+click on the train folder and chose "properties". Under the "directory" property click "create". I think that's what you're looking for.

You can't have a subdirectory of a site point to the root, and you can't have two site instances with the same domain name- the DNS record for www.sitename.com points to exactly one IP address. I think you'd be better off with something like http://train.sitename.com.

Actually you can have two site instances with the same domain, one could work with www.domain.com and the other to only work on domain.com. DNS can distinguish between the two.

Related

TYPO3 - display one page from pagetree only

I have a problem whose solution is certainly very simple, but it does not come to my mind at the moment :/
I have a multi-domain TYPO3 (6.1) installation and in one of the websites I need to temporarily show only one subpage, and over the rest of the pages I will work/update so I can not delete them. It is important that someone after entering a URL or going to the page from the Google search results has not opened this page, and has been redirected to this temporary.
I've tried the mount points but something does not work ...
Please help.
You can exchange the domain-records.
Make a new page on it's own (independent from the configuration of the domain it should replace). so it is a root-page. give it a domain record and disable the domain record of the pagetree it should replace.
Be aware to change the rootpageid configuration in realurl.
You also may need a special configuration for 404 handling for this domain as the most requests will be a 404 (or better 503).
And hurry up to update your system. TYPO3 6.1 is out of service for a long time.

block gadgets in google apps for education

One of the schools I support want to start teaching basic web design to their students, and would like to use google sites to do so. We need to be able to block google gadgets from the sites so that there is no risk of inappropriate content being shown to the students. Previously this could be done with domain gadget directory manager but from what I understand this stopped working when https got switched on for everything. All the places I have looked predate the https change and no longer seem to work. Does anyone have any ideas?
There is an utility called google feedserver
PrivateGadgetAdministratorsGuide
describes how to tweak http/https:
What you can do is to copy the body of XML and change http:// links to
.js files to https:// and then host this file somewhere.

TinyMCE Issues one certain Domains

I have built a CMS using TinyMCE and I have used this CMS across 3 different website domains already using GoDaddy hosting. For some reason, TinyMCE isn't working on this new domain I am using (and still using GoDaddy to host this domain). All I do is copy the current CMS files and paste them into the website domain and that has worked across the first 3 websites, but this fourth one just breaks. I tried reuploading the files and everything. Finally I tried just referencing the tiny_mce.js from one of my other sites and that makes TinyMCE finally show up. What would be the reasoning behind tinyMCE working on the first 3 and not the newest one when all the files are exactly identical?
I found out it had something to do with the doc type not being present, but it isn't a problem on some domains. Good practice to have though.

SSRS reportserver? link is not working

This may be a small thing, but not able to find the solution.
http://ServerName/Report_Dev/Pages/Report.aspx?ItemPath=%2fReportName
this works, but the next one don't work
http://ServerName/Report_Dev/reportserver?/ReportName&rs:Command=Render&rs:Format=HTML4.0&rc:Toolbar=false
do i need to configure something in the SSRS to make "reportserver?" work.
Thanks in advance
Edited:
I think the URL should be
http://ServerName/Report_Dev?/ReportName&rs:Command=Render&rs:Format=HTML4.0&rc:Toolbar=false
but still this is not opening the report, instead it is going to the home page of reports
Have you configured the virtual directory for report server? If the Report Manager is configured in the Report_Dev virtual directory (which I think it is, looking at the first link you shared) then I would expect to see a sibling address for report server, for example:
http://ServerName/ReportServer?/ReportName&rs:Command=Render&rs:Format=HTML4.0&rc:Toolbar=false
They are two different web applications - have a look in the SQL configuration manager.
EDIT:
As per the comment "Don't use the Report Manager URL"

Publishing multiple sites on a single instance of umbraco

I am looking to setup a parallel site to one already that already uses umbraco for its content management system. The new site would share admins, templates, macros, and media resources, but not any content. If I setup multiple host headers pointing to the same directory with an umbraco install, how can I switch the top node (home vs home2) of the site based on which url is being accessed?
I believe you first have to change a setting in umbracosettings.config:
<useDomainPrefixes>true</useDomainPrefixes>
Then I think you also have to right click on each top node and click 'Manage Hostnames', then add the appropriate host name for that top node.
It already sounds like you have IIS configured correctly, so you should be good to go on that front.
It's been a while since I've worked with Umbraco, but I think I'm mostly right ;-)