Why do I have to append URL with /index.htm on one KB?

I have 7 different KBs I maintain on my webserver. I am using RoboHelp 7. For one of them, I have to append the URL with /index.htm, or it does not show the correct information. Examples of two of the KBs, and what happens with & without the index.htm appendeden
I will happily provide any other information. I've been wondering about this for a long time, and it's finally driven me batty enough to ask. Thanks so much for any assistance. Greatly appreciate your input, this is a wonderful resource.
http://wpa10suppliertest.am.mot-mobility.com/ opens a training KB for supplier information. See screenshot of the WebHelp Primary Layout:
However, for http://wpa10user.am.mot-mobility.com/ if I do not append with http://wpa10user.am.mot-mobility.com/index.htm, I get no content, and the first skin I tried out. The settings are the same:
http://wpa10user.am.mot-mobility.com/:
http://wpa10user.am.mot-mobility.com/index.htm:

Hi William,
That makes sense - but I had looked at my IIS setups and they appear the same for all KBs, again here are settings for WPA Supplier & User. I created both the same day, the same way, and have compared all tabs which are identical. I can double check on how the DNS aliases that were set up, but they should have been identical as well

Similar Messages

  • I'm trying to find out why my phone isn't here yet, 30+days, and I can't find a single contact number on this website. Why do I have to sign up with this stupid forum? I have better things to do, like find a new carrier!!

    I'm trying to find out why my phone isn't here yet, 30+days, and I can't find a single contact number on this website. Why do I have to sign up with this stupid forum? I have better things to do, like find a new carrier!!

    800-922-0204 option 4, say agent, ask.

  • Why do I have a black screen with the icon spinning round and won't open?

    why do I have a black screen with the icon spinning round and won't open my photos?

    Because there is a problem. Want to try fix it?
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Why do I have a blue square with a white question mark showing in place of images on some websites?

    I have a Macbook Air with the most updated version of Yosemite. Im finding that on some websites, in place of images, I just get a blank space with a blue square in the middle and a question mark. Ive tried Chrome and Firefox too and the images still don't load. Can anyone suggest why this may be and offer any solution.
    Thanks

    Have you restarted your router and your broadband device (if they're separate) since you first noticed the problem? If not, do that now and see whether there's any change.

  • Why do I have so much trouble with arrays

    using the following query:
    <cfloop index="loopCompanyNumberSet01Array" from="1"
    to="#arrayLen(companyNumberSet01Array)#" step="1">
    <cfquery name="qrySeriesList" datasource="erpdb01">
    SELECT DISTINCT Left(t_item,2)
    FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    ORDER BY 1
    </cfquery>
    </cfloop>
    I can use cfdump and see that I am getting the results I
    want, but I want to now take them and put them into an array (or
    list) so I can use them for another set of querires
    I tried:
    <cfset seriesArray=arrayNew(1)>
    <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    <cfloop query="#qrySeriesList[getSeriesList]#">
    <cfset seriesArray[currentRow][1]=1>
    </cfloop>
    </cfloop>
    but get error:
    Object of type class coldfusion.sql.QueryTable cannot be used
    as an array

    jkgiven wrote:
    > using the following query:
    > <cfloop index="loopCompanyNumberSet01Array" from="1"
    > to="#arrayLen(companyNumberSet01Array)#" step="1">
    > <cfquery name="qrySeriesList"
    datasource="erpdb01">
    > SELECT DISTINCT Left(t_item,2)
    > FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    > ORDER BY 1
    > </cfquery>
    > </cfloop>
    >
    > I can use cfdump and see that I am getting the results I
    want, but I want to
    > now take them and put them into an array (or list) so I
    can use them for
    > another set of querires
    >
    > I tried:
    > <cfset seriesArray=arrayNew(1)>
    > <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    > <cfloop query="#qrySeriesList[getSeriesList]#">
    > <cfset seriesArray[currentRow][1]=1>
    > </cfloop>
    > </cfloop>
    >
    > but get error:
    > Object of type class coldfusion.sql.QueryTable cannot be
    used as an array
    >
    1) just use qrySeriesList.recordcount instead of your
    arraylen(qrySeriesList)
    2) even better: why use cfloop over query rows when
    <cfoutput
    query="qrySeriesList"> does just that?
    ... oh, i see what you are trying to do now...
    ok, you will have to move the array populating code into your
    first
    cfloop, after the cfquery in it:
    > <cfloop index="loopCompanyNumberSet01Array" from="1"
    > to="#arrayLen(companyNumberSet01Array)#" step="1">
    > <cfquery name="qrySeriesList"
    datasource="erpdb01">
    > SELECT DISTINCT Left(t_item,2)
    > FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    > ORDER BY 1
    > </cfquery>
    move it into here
    > </cfloop>
    3) now, for your array populating script:
    a)
    > <cfset seriesArray=arrayNew(1)>
    that declares a one-dimensional array
    > <cfset seriesArray[currentRow][1]=1>
    but here, i believe, you are populating it as a
    two-dimensional array...
    b)
    > <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    instead of this loop, just use
    <cfoutput query="qrySeriesList">...</cfoutput>
    c)
    > <cfloop query="#qrySeriesList[getSeriesList]#">
    is this the line cf is complaining about?
    you never set your qrySelectList to be distinct queries in
    your first
    loop. with its every iteration that loop just creates a new
    qrySelectSeries, replacing the one created in the previous
    iteration.
    but once you move your array-setting code into the loop, you
    will no
    longer need this loop at all.
    Azadi Saryev
    Sabai-dee.com
    Vientiane, Laos
    http://www.sabai-dee.com

  • Why is Yahoo destroying my selected url with a DNS solution Yahoo Error....

    This is what I get when I go to any URL- doesn't matter. I go 'back' to my url, and it converts to this:
    https://search.yahoo.com/yhs/errorhandler?hspart=gt&hsimp=yhse-gt&q=image.zcool.com.cn%2F0%2F16%2F1301422968374.Art.of.Paul.Bonner%3F%3F%3F%3F%3F%3F%3F%3F&type=576859
    Why? I don't know. I don't have yahoo in my search engine.

    Had this same problem
    Please check your computer for viruses and malware. You can fix this by doing the following
    go to your firefox "options" then under the "privacy" tab you will find a sentence like this
    You may want to clear your recent history, or remove individual cookies.
    Please do that ^^
    Lets see if this works for you

  • Why does Java have so much trouble with deleting files

    So, I've been doing alot more code on the file-level and have been noticing that Java is really terrible at deleting files. This should be rather straightforward, but the delete method can fail in so many ways, it's unbelievable. Even with taking special care to close all streams, it will sometimes just not do it, or even return a "Yes I've deleted it" result and the file is still there! (deleteOnExit() suffers the same affliction)
    This problem is even scuttling the otherwise trusty Ant, which is really annoying. Ever seen this? "BUILD FAILED: Could not delete 'myproject.jar'" So any Ant-driven automated build-and-test process can fail because of this super-avoidable error. (We have to code a pre-build-jar-deletion shell script, which is annoying when jars are added/deleted/renamed for whatever reason.)
    Does anyone know the reason for this? I'm really curious.
    Maybe, in 1.5, they will come out with "File.crushAndDestroyWithMercilessPrejudice()". I'd use it all of the time! :)

    I had the same problem when I was working with JAI. I had about a half million images that I made a viewer for, which would allow our users to do away with microfiche. Project worked great, but the files wouldn't delete off the user box (Win2K). I checked everything and they just would not delete--windows would not acknowlege the resources had been released by Java.
    I finally took a lesson from MS developers and said: "It's not a bug, it's a feature!" I wrote it into the manual that it was a cache feature and would speed-up access to the images, yet delete the old ones (which it did, any images that were not accessed during the session would delete just fine, while any that were accessed would still be there next time for local access rather than hitting the network for them. The cache turned out to be one of the great features of the application.
    On the other hand, I've not had any problems deleting files from Linux.

  • Why does Mail have a difficult time with ATT Uverse?

    I anyone having a problem with Mail interacting with the ATT Uverse servers?

    Just had U-Verse installed at home and had problems sending email from Apple Mail. Receiving mail was not a problem; just sending. It worked fine with our previous provider Time Warner. Entering the SMTP server name, which was all we had to to do with Time Warner, did not work. We called AT&T and they said that they would fix it for a fee (talk about bad profits, right?).
    Anyways, we finally got it to work and hopefully this helps resolve your issue. Here's what we did:
    1. Log in to Yahoo! with your att.net email account that came with your AT&T subscription.
    2. Once logged in, add the non-AT&T email addresses you use on Apple Mail (e.g., work email, personal mail, etc.). These additions have to be verified so check the confirmation email from U-Verse using web-based email services (e.g., mail2web.com) and click on the links.
    3. Once you've added your other emails (AT&T calls these sub-accounts) to your att.net email account, go to Apple Mail on your MacBook and add your att.net email account. Just follow the onscreen instructions and Mail will set everything up, including the SMTP server name, etc.
    4. Send a few test emails from your non-AT&T email accounts to check if they are going out and getting sent.
    That's it. It's been a couple of days and it seems to be working fine.
    By the way, if you've got an iPhone, simply add your AT&T email account (under Settings/Add Account, choose Other) and now you should be able to send/receive from your non-AT&T email accounts.
    Hope this helps. If it does, spread the word. No one should have to pay AT&T for something that should easily work. The least AT&T can do is make sure the information to fix the issue is readily available and easily discoverable on their site. By the way, when we called them, they said that they could only support att.net email accounts, hence the fee. Hello?

  • Why Do I Have Choppy Video Preview with Premiere Pro CS5.5

    Current Build:
    Choppy Playback Adobe Premiere Pro
    Adobe Premiere Pro CS5.5 V5.5.2
    Computer Build
    Intel i7-2600K CPU @ 3.4 GHz/8M
    ASUS Sabertooth P67
    Windows 7 Pro
    1000WATT Power Supply
    (4) 4GB DDR3--1333 (16 GB RAM Total)
    64 Bit Operating System
    120GB Intel  510 SATA III Hardrive
    WD 1TB SATA-3 64MB Hard Drive
    (2) Fantom 2TB (USB) External Hard Drives (Where Video is stored)
    (2) XFX HD6850 1 GB Video Cards run in Crossfire
    (1) Scratch Disk 869.1 GB
    Pulling HD Video from a Sony Handy Cam 1080 etc.
    Guessing its going to be hardware related and I would like to know how to get this thing running seamless. 

    PPro before the cloud does not support crossfire... and that may cause problems
    Dual Card SLI http://forums.adobe.com/thread/872941
    -problem http://forums.adobe.com/thread/872103
    USB2 hard drive is too slow for video editing
    External eSata or USB3 are both fast enough for video editing... eSata is better - http://forums.adobe.com/thread/1117813
    ONE possibility is this $47 USB3 dock with fan http://www.amazon.com/StarTech-SuperSpeed-Docking-Station-Cooling/dp/B0055PL2YI

  • Why do I have to sign in with google to access my favourites

    when I clink on the BOOKMARKS button, it asks me to sign in to my google account, why should it do this.
    I imported my favourites from IE

    The problem was the google toolbar. so I uninstalled it.
    works fine now

  • Why do I have a white circle with a line through it over Pages on my dock?

    This happened after I reinstalled Snow Leopard on my MacBook. How do I get rid of it?

    You no longer have Pages in your Applications. Pages is not part of Snow Leopard, it's part of iWork. Right click (Control + Click) on the Pages icon in the dock and select Options>Remove From Dock.

  • Why do I have so much trouble with java?

    I play games on Pogo. Every day it tells me that I need to download Java. It takes a long time to get it to work.

    Java plugins 7u10 or lower are blocked for security. You can download Java v7u11, and see all of:
    https://support.mozilla.org/en-US/questions/944956?page=3

  • Create URL with multiple values for one parameter

    Post Author: cbamberg
    CA Forum: General
    While I have no problems to create the URL to open a report with a single value for a parameter from my Java application, I don't know how to format multiple values for a parameter when I want to pass the "&prompt0=" value. The values I want to pass are numbers, not strings.
    Anyone can help?

    Hi gayatri,
    you need to select both the product id and custname.put a count on the prodid column and write a condition of count>1 and apply it.
    Thanks
    Hari

  • Why do I have 2 Vertical Scroll Bars and 1 Horizontal one

    Can anyone tell me from the code below where I am going
    wrong. I have an AP Div inside an AP Div that has text content and
    the overflow is at Auto which gives me a horizontal scroll bar but
    also 2 vertical scroll bars instead of one in Firefox. What is the
    reason for this? I hope someone can help me - here's the code:
    <div id="apDiv6"><img src="frame.jpg" alt="Frame"
    width="518" height="335" /></div>
    <div id="apDiv23">
    <p align="left">
    <strong>Hors d'Oeuvres<br/><br/>
    </strong><strong>Soupe...........</strong><br/><br/>Soupe
    a l'oignon
    gratinée............................................
    $6.75<br />
    </strong>Onion soup<br /><br/>
    <strong>Soupe du Jour ..........................
    $5.25<br/>
    </strong>Soup of the day<br/><br/>
    <strong>Les entrées
    froides...........<br/><br/>
    </strong><strong>Huîtres du
    Jour.....................La Pièce $1.85<br/><br/>
    </strong>
    Oysters (served with Champagne shallot
    vinegar)<br/><br/>
    Salade et fromage, vinaigrette à la moutarde de
    Dijon........ $6.00<br/>
    Mixed salad with feta cheese, Dijon mustard
    vinaigrette<br/><br/>
    Salad frisée aux lardons et oeuf poché..........
    $7.95<br/>
    Frisée salad with bacon and poached egg, sherry
    vinaigrette<br/><br/>
    Salade de crabes, concombre et betterave, sauce
    aïoli......$8.50<br/>
    Crab salad with golden beet and cumcumber, aioli
    sauce<br/><br/>
    Foie gras cuit au torchon et
    toast........$14.50<br/><br/>
    Les entrées chaudes......<br/><br/>
    Moules Marinières................$9.00<br/>
    Steamed Mussels Marinieres, White Wine and garlic (Side
    French fries $2.50)<br/><br/>
    Poêle de ris de veau et épinards, jus au
    romarin..........$9.50<br/>
    Sautéed sweetbread with spinach, rosemary
    jus<br/><br/>
    Escargots de Bourgogne au beurre d'ail et
    persil..............$7.50<br/>
    Escargots from Burgundy in garlic parsley butter (plate
    6)<br/><br/>
    Les Plats<br/><br/>
    Légumes........<br/><br/>
    L'assiette végétarienne du Chef...............
    $14.90<br/>
    Chef Vegetarian<br/>
    Red beet raviolis wih parmesan cheese and seasonal
    vegetables, mushroom jus<br/><br/>
    Poisson<br/><br/>
    Pave de saumon, purée de pommes de terre et
    épinards, sauce homard et vin blanc...... $16.50<br/>
    Steamed salmon with mashed potatoes, spinach and mussels,
    white wine with lobster sauce<br/><br/>
    Filet de bar meunière, poireaux caramélisés,
    sauce grenobloise.....$16.75<br/>
    Sauteed bass served with caramelized leeks, Grenobloise
    sauce<br/><br/>
    Tronçon d'espadon legumes de saison couscous, safran
    orange sauce.... $17.95<br/>
    Sauteed swordfish with couscous and spring vegetables, orange
    and saffron sauce<br/><br/>
    Viandes et volailles......<br/><br/>
    Boeuf Bourguignon et purée de pommes de
    terre..........$16.25<br/>
    Beef Bourguignon sered with mashed
    potatoes<br/><br/>
    Suprême de poulet, ragoût de macaronis poireaux et
    chanpignons, sauce orange... $15.50<br/>
    Roasted chicken breast, leek mushrooms macaroni ragout orange
    sauce<br/>
    Lapin façon Normande............$17.25<br/>
    Rabbit Normandy served with Peruvian mashed
    potatoes<br/><br/>
    Le Cassoulet toulousain Maison...........$21.00<br/>
    Home Made Cassoulet with beans (Duck leg Confit, port,
    Toulouse sausage)<br/><br/>
    Jarret d'agneau braise 6 heures, blettes jus d'agneau et
    romarin.....$23<br/>
    Lamb shank braised for six hours served with swiss chard,
    rosemary lamb jus<br/><br/>
    New York steak, french fries, shallot red wine
    butter<br/><br/>
    </p>
    </div>
    Thank you for helping!

    Hi,
    This is a problem with firefox. It will always show
    scrollbars if the div's css property of overflow is set to anything
    except none.
    Gaurav
    www.gauravchandra.com

  • Why do I have to fill in serial number again after one year?

    I´ve used this product (Photoshop Elements 9) for more than a year (and it´s legally bought).
    Suddenly (a couple og days ago I could no longer start it.
    The licenceinformation popped up and I was asked for the serial number. I filled it in but nothing happened (I started thie discussion a couple of days ago but I haven´t got any response).
    What is the problem???
    Where are the Adobe customer service - you have to fix this now!  Ineed this product att work and it´s urgent!!!  You got my mailadress - contact me at once!

    these have been removed?
        Folders
            C:\Program Files\Adobe\Photoshop Elements 9
            C:\Program Files\Adobe\Elements 9 Organizer ***
            C:\Program Files\Common Files\Adobe\Help\en_US\PhotoshopElements\9.0
            C:\Program Files\Common Files\Adobe\Help\en_US\ElementsOrganizer\9.0 ***
            C:\Program Files\Common Files\Adobe\Plug-Ins\Elements 9 ***
            C:\ProgramData\Adobe\Photoshop Elements\9.0
            C:\ProgramData\Adobe\Elements Organizer\9.0 ***
            C:\Users\[Your User Name]\AppData\Roaming\Adobe\Photoshop Elements\9.0
            C:\Users\[Your User Name]\AppData\Roaming\Adobe\Elements Organizer\9.0 ***
            C:\Users\[Your User Name]\AppData\Roaming\Adobe\Online Services\Photoshop Elements 9.0.0
        Shortcut Files
            C:\Users\Public\Desktop\Adobe Photoshop Elements 9
            C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Photoshop Elements 9
    and these registry keys have been removed?
    HKEY_CURRENT_USER\Software\Adobe\Photoshop Elements\9.0
    HKEY_CURRENT_USER\Software\Adobe\Elements Organizer\9.0 ***
    HKEY_CURRENT_USER\Software\Adobe\Pulse
    HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Photoshop Elements\9.0
    HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Elements Organizer\9.0 ***
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\P roducts\D877F700C51FBAE4EA2970D112AF6F23
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\P roducts\8DCAE3347474A6A428A6FF9A3FB9D004 ***
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{007F778D-F15C-4EAB -AE92-071D21FAF632}
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{433EACD8-4747-4A6A -826A-FFA9F39B0D40} ***
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Photoshop Elements 9
    HKEY_CLASSES_ROOT\Installer\Features\D877F700C51FBAE4EA2970D112AF6F23
    HKEY_CLASSES_ROOT\Installer\Features\8DCAE3347474A6A428A6FF9A3FB9D004 ***
    HKEY_CLASSES_ROOT\Installer\Products\D877F700C51FBAE4EA2970D112AF6F23
    HKEY_CLASSES_ROOT\Installer\Products\8DCAE3347474A6A428A6FF9A3FB9D004 ***
    HKEY_CLASSES_ROOT\PhotoshopElements.Application.9

Maybe you are looking for

  • Conversion of hexadecimal file to decimal file in labview

    hi all, I took a measurement from an anemometer by its original program. I attached the file below. I want to convert this file to the decimal file. I all know is the data in file are in hexadecimal and 16-byte. How can I convert this file to decimal

  • SRM PO Adobe Form

    Hello Frn's. I  am creating a z Adobe by copying a exisitng PO Adobe form (bbp_po_adb) . Beacuse i need some more fileds calculation, so have to  create a Z interface as well by copying a existing interface (if_bbp_po_adb). But then i need to impleme

  • PGI in Consignment fill-up

    Hi, When we do PGI in Consignment fill-up,Which stock is updated,means storage location of company or customer. Regards Prabudh

  • Where to find the redeem code?

    I ordered Adobe Creative Cloud service two months ago, after the trial, Photoshop CC 2014 request me provide a redeem code to active it, I don't know where to find it, what should I  do?

  • Contents of collection in Bridge CS 5.5 missing

    Hello, i create a collection in Bridge (35 pictures) and after disconnected Bridge, when i go back to the collection, all the pictures are gone ! I can't see none of them. Is there a function record the collection before disconnection ?