Portal - Change name on a HTML file

Hello,
I have been asked to change the name of a HTML file displayed on the portal.  I went to 'content admin' - 'km content' - 'documents' right clicked on the content menu for the file and selected rename.  I changed the name, but it did not update on the portal.  I am assuming I need to change it somewhere else, but I am not sure where.  Please advise where to change the name
Thanks,
Annette

Hello,
The Printer is a Brother MFC-8480DN. 
So I went into the settings and manually set the printer to DHCP and guess what..... it now lets me change the name on the router.
I guess the default is not actually DHCP so I was making assumptions.....
Thanks
Hello F
eljefe wrote:
Wildfire12 wrote:
I have an Actiontec MI424WR Rev I with the latest update.  I can see everything connected to the router (network) and change the names of most items.  One device (the printer) will not give me the option to change the device name.  Why? Is this fixable?
Thanks
Frank H
I can't rename my printer either. 
In the case of my printer (and I suspect yours) when installing the printer as a LAN device, the printer is assigned a static IP address during the configuration process.  This is different than letting the router assign an IP and then checking the "Static Lease Type" in the router's advanced setup. 
I have a couple of other devices, a PC, a WAP, etc., where I've manually assigned them their own IP addresses.  I can't rename those devices in the router's setup either.
Bottom line:  It seems that if a device has a static IP that is assigned to manually and outside of the Actiontec's setup, that device can't be renamed.
If your printer was actually assigned its IP address by the router's DHCP, I'm stumped. 

Similar Messages

  • Getting links and its names from a html file

    Hi everyone
    My problem about the a getting links with name from a html file. For example
    İn a web page in this site ?SUN? when use click SUN the browser open http://java.sun.com
    İ want both of them, so the links and name. I can succeeded the get link but i don t know how to get the link name.
    For example :
    <B>setRightComponent(Component)</B>
    &#304;n this code segment i want to get B tag. But how i don t know. To get A tag i used this code
    List result = new ArrayList();
    try {
    // Create a reader on the HTML content
    URL url = new URI(uriStr).toURL();
    URLConnection conn = url.openConnection();
    Reader rd = new InputStreamReader(conn.getInputStream());
    // Parse the HTML
    EditorKit kit = new HTMLEditorKit();
    HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
    kit.read(rd, doc, 0);
    // Find all the A elements in the HTML document
    HTMLDocument.Iterator it = doc.getIterator(HTML.Tag.A);
    while (it.isValid()) {
    SimpleAttributeSet s = (SimpleAttributeSet)it.getAttributes();
    String link = (String)s.getAttribute(HTML.Attribute.HREF);
    if (link != null) {
    result.add(link);
    it.next();
    &#304; can use B tag but i don t know hot to get its value because it has no prefix such as HREF....
    i am sorry if i use a bad explanation style or incorrect word.

    import java.io.*;
    import java.net.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    class GetLinks
        public static void main(String[] args)
            throws Exception
            // Create a reader on the HTML content
            Reader reader = getReader( args[0] );
            // Parse the HTML
            EditorKit kit = new HTMLEditorKit();
            HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
            doc.putProperty("IgnoreCharsetDirective", Boolean.TRUE);
            kit.read(reader, doc, 0);
            // Find all the A elements in the HTML document
            HTMLDocument.Iterator it = doc.getIterator(HTML.Tag.A);
            while (it.isValid())
                SimpleAttributeSet s = (SimpleAttributeSet)it.getAttributes();
                String href = (String)s.getAttribute(HTML.Attribute.HREF);
                int start = it.getStartOffset();
                int end = it.getEndOffset();
                String text = doc.getText(start, end - start);
                System.out.println( href + " : " + text );
                it.next();
        // If 'uri' begins with "http:" treat as a URL,
        // otherwise, treat as a local file.
        static Reader getReader(String uri)
            throws IOException
            // Retrieve from Internet.
            if (uri.startsWith("http:"))
                URLConnection conn = new URL(uri).openConnection();
                return new InputStreamReader(conn.getInputStream());
            // Retrieve from file.
            else
                return new FileReader(uri);
    }

  • Is there any way to have the page title NOT be the name of the HTML file

    You might want a page title to be say "Digital Media Academy." You don't however really want the html file to be called "Digital%20Media%20Academy.html" Windows web browsers often have problem opening pages with spaces in the file name. On the other hand you don't really want the page title to be "DigitalMediaAcademy" because that looks kind of dumb. Any way around this.

    The page is already not included in the nav bar, but
    where do you set the page name to be different from
    the file name? How can I set the name of the page,
    such as the name of this page is "Apple - Support -
    Discussions - Post Message:Reply," to be different
    from the file name?
    I think I probably misunderstood your question. You want the html "title," which appears at the top of a browser, to be independent of the name of the html file, right? I don't think that is possible in this version without manually editing the html after publishing. iWeb uses the page name given in the inspector for both the navigation bar link and the file name, replacing spaces by %20 in the latter because web servers don't allow spaces in file names.

  • Topic title overwritten with file name when importing html-file

    I have a problem in RH8. When I import a html-file that has a topic title that is different to the file name, RH somehow overwrites the topic title with the file name. The html-files that I need to import into my help project DO have a topic title (with the html tag 'Title') so this is not caused by an empty og non-existing title tag.
    I have searched the forum and found that this was also an issue in RoboHelp 6 and by then fixed in a service pack. I have long ago installed the two service packs to RH8, but I can see in the 'read me' for the service packs, that this has not been dealed with.
    I also have RH 7 installed on my pc, and the problem does not occur in a RH 7 help project.
    Best Regards

    Yes, I am sure I am not mixing up Topic Title and Topic Heading.
    The files are generated in a Access database created by our own developers. We have used this database for generating html-files for our RH-projects for years without any problems.
    Below I have copied the HTML code from one of theese files (with the file name '10001.htm') before importing it into RH8:
    <!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
    <html>
    <head>
    <title>
    Agreement
    </title>
    <LINK rel='StyleSheet' href='default.css'>
    </head>
    <body>
    <h1>
    Agreement
    </h1><p>
    An agreement is a written obligation between a project and a contracting party regarding the
    participation in the project, delivery to the project, or transfer of the project&#39;s products
    and services. Please see Vejledning: Aftaler og aftaleparter.
    </p>
    </body>
    </html>
    And after importing it to RH8:
    <?xml version="1.0" encoding="utf-8" ?>
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="generator" content="Adobe RoboHelp 8" />
    <title>10001</title>
    <link rel="StyleSheet" href="default.css" type="text/css" />
    </head>
    <body>
    <h1>Agreement</h1>
    <p>An agreement is a written obligation between a project and a contracting
    party regarding the participation in the project, delivery to the project,
    or transfer of the project's products and services. Please see Vejledning:
    Aftaler og aftaleparter.</p>
    </body>
    </html>

  • Portal change name of upadated files

    Hi,
    when I update a file in a content area, Portal changes its name.
    I update a file entering in edit mode, I click on "browse" and then I search the new file to upload.
    If one (or both) of this two conditions:
    - item level security
    - item versioning (and checkout is made)
    is enabled, Portal gives to file a new name, generally created adding "_0" or "_1" etc...
    I'd like to leave ever the same file name. Is it possible to do? I don't want to disable anyone of two settings I've described above.
    Please help me.
    Thank you

    Always look on http://portalcenter.oracle.com for any documentation related to Oracle Portal.
    You'll find the configuration guide on the Documentation page. See Section B.8 Managing the Session Cleanup Job.
    Regards,
    Jerry
    PortalPM

  • How can I change the font in html-file

    Hello,
    if I create a new html-file in KM-Content - Folder - New - Html-File, I always get the font Times New Roman. In the editor I have Arial oder something similar - but not in the view.
    Does anybody know how to change this font to Arial? Where do I have to configure what? Thanks
    Regards,
    Susanne

    Hu Susanne,
    Detlef
    "Say Detlef once again" (Detle
    v) 
    sorry that I´m no mathematician or a SAP EP-consultant
    Never mind!
    So "dumb" is maybe the wrong word
    You didn't realize the ";-)" behind it?!
    It's just that this strict "it doesn´t work like you wrote" was a bit irritating, in fact it works, it's tested on the same version as you are on, and it's also not a very new feature (new features often are buggy at some ends).
    But now I had a second look on the link I have given - and sorry, even if it should help, in fact it was the EP50-version. The NW04 version, which seems you have already detected by yourself, is http://help.sap.com/saphelp_nw04/helpdata/en/a8/923717bc40dd49b1e296b9877e98f0/frameset.htm
    After having seen this, I also found this ominous description of "HTML Filter for Portal Stylesheets"http://help.sap.com/saphelp_nw04/helpdata/en/cc/b8f941db015f24e10000000a1550b0/frameset.htm
    Yes, this does in fact not exist on EP6 SP9. You could open an OSS message and ask to delete the description of a non-existing feature or for delivery of it.
    Anyhow, it shouldn't do more than the HTML Stylesheet Filters are already doing - maybe it would choose the corresponding CSS by itself?
    Is there anything else I have to configure anywhere?
    The prerequisity is "The publishing pipeline is configured appropriately.", but this should be the case by default.
    The repository used is "documents" and the html file you have been using is stored in this repository?
    The stylesheet exists on the location set within the stylesheet configuration?
    There are not sooo many screws to turn...?!
    Hope it helps
    Detlev

  • When I use Firefox to monitor changes I do to HTML files locally, it does not show changes to images unless I restart the browser. Is this a bug?

    I have the local and the remote versions of a page open in two tabs. I change one of the images (keeping the same name in the HTML) and upload the changed image. The tab that shows the remote page only takes a refresh to show the change. The tab showing the local page not. I have tried opening it in a new window but it still does not change. Only if I restart Firefox does it show the change. Why? Is this a bug?

    grantheaslip's suggestion doesn't work for me; no change at all. (Thanks anyway.) Any other ideas? Is there another way to "hard" refresh? I don't see anything in the menu.
    Also, it seems like this is a very recent problem. I thought in the past that a regular refresh did the job.

  • Changing name of Capture Scratch files

    My Capture Scratch files have a lot of untitled files although I named the project. I would like to rename them to match the project name but when I did this and tried to reconnect FCE insists that the file name be the same. Is there any way to change the name of these files?
    Thanks

    If you are not using the clip files in a project, you can just change the file names via the Finder.
    If you are already using the clip files in a project, you need to be careful when you change the file names because changing the file name does not change the clip name in the FCE Browser. You will need to manually change both names if you want to keep things straight.
    You can change the name of the clip file via the Finder; and the clip name in the FCE Browser by selecting the clip name in the Browser window and editing the name.
    You can also change the file names via the FCE Browser; Control-click the clip name in the FCE Browser and select 'Reveal in Finder'; you can then change the name of the clip file in the resulting Finder window. Then also change the clip name in the FCE Browser.
    In the reconnect media dialog box, you will need to UNcheck the option called 'Matched Name & Reel Only" in order to point to the clip file whose name you changed.
    In the future, give your clips unique names at the time you capture them.

  • Change name of open PDF file - Edit the file - Save OK

    Possibility to open a PDF file, change its name in the Finder, edit the PDF file inside (eg., using the yellow fluorescent marker) and then save it.
    Now you cannot do it because you get an error.
    Yet, that can be done virtually on any other Mac application.
    Thanks.

    I change the pdf file & word file rename But I facing the problem. and problem is i change the rename pdf file and show is error (If you change a file name extension. the file may become unusable. are u sure you want to change it.)
    then after enter pres file change on jpg file . Pls solution this problem urgently.
    Thank You
    regards
    Sudeep Sharma
    [email protected]

  • Why the html file doesn't change with applet ?

    i am new to java , i get a problem when i am modifying a applet . i recompile it to .class file but did not change its name . and the .html file which use the applet doesn't change with it , it still shows the original style , even when i delete the .class file . it works until i changed the name of the source file and use the different .class file in html . it's troublesome if i need to modify the source file because i must change the name to get it . can you tell me why and how could i avoid this ?

    I am new also & had a similar experience.
    In my case it was aftercompiling and trying to refresh the browser to get it to display the new version of my applet. I got around this by holding Ctrl down and pressing F5 to refresh.
    Also, some of the systems at university cause exactly the problem you describe. Not sure why it should work but we overcame it by placing our files in the JDK folder on those systems & it worked properly. May be worth a try.

  • Converting Video to iPod, can you change name of file

    When you convert Video to iPod format, can you change name of the new file or put some "marker" so one can tell which is the orginal and which is the new file?
    Currently it is difficult to tell between the orignal and the new file.
    thanks in advance
    Rohit

    You'd probably be better off doing this sort of editing in iTunes, and letting it move the files appropriately.
    Go to the preferences, Advanced tab, and check the box to 'Keep iTune Music folder organized'. Then any changes you make to song names or other info (within iTunes) will automatically be applied.

  • Error when editing HTML files - after check in

    Hi
    Version of portal = NE04SP15
    I have an HTML file, and after editing and check in of such a document, Norwegian characters are represented with some strange characters.
    Any idea how to solve this?
    Regards
    Kay-Arne

    I have the same issue, apparently when you edit locally an HTML document that was generated with “KM HTML Editing tool” it looses some kind of attribute that makes KM to recognize it as a “KM HTML file”. So then some characters do not get rendered correctly.
    If you find a solution for this issue please let me know.
    Other related issue is when you transport these HTML files from one enviroment to another, again KM will not recognice its own HTML docs and then some incorrect characters may appear.
    Regards Jeronimo

  • HTML file not getting updated

    Hi All,
    I have defined an html file under mimes->components as the source for an IFrame. The application worked fine for the first time, but any changes made in the html file were not reflected in the application. Finally I  deleted the html file, rebuild the project, deployed application again, but still it runs with the first result. Can someone please help me on this?
    Thanks in advance,
    Best Regards,
    Nibu.

    Hi Nibu,
    sound like a caching problem.
    On client side, for sure you know how to empty the cache on IE?!
    On server side, VisualAdmin - Server - Services - HTTP Provider - Clear Cache (on Dev systems, I would generally suggest to switch off server side caching).
    Hope it helps
    Detlev

  • How to include HTML file in JSP using HTML elements or Javascript?

    Hi,
    I have around 15000 static html files one for each item which we display each upon invoking an item.The HTML file should be part of a JSP file.
    Please note that the name of the HTML file is determined dynamically
    Placing all the HTML files within the web application does not give us good performance so i would like to put all of them in the webserver.
    I am not able to include the file in the JSP using the jsp:include attribute if i place the HTML files in the webserver ,
    in order to do that i think should use either HTML element or javascript to include the HTML in the JSP.is there any alternative to <Jsp:include>
    Does anyone have an idea how to include the HTML file and take advan tage of webserver?
    Any ideas are appreciated

    What you need to do is simply read the HTML file from the disk and dump it out to the outputstream. It really is that simple.
    There's no reason you need to include all 15000 files in the actual WAR, you can place those files any place handy that is easy for the application to see (in another directory, or accessible from a file server if you have multiple front ends).
    Then, just write a utiility function that takes the output stream (i.e. the 'out' JSP variable), and the file name, read the file, and write it to the stream.
    If you start noticing performance issues, then you can try doing some caching, but truth is your OS should be doing that for you.
    But, truth be told that's the only practical way to do it.
    Another solution would be to use JavaScriipt and XMLHttpRequest (i.e "AJAX") to load the file at the client side, and simply replace a tag with the results.
    That's also pretty trivial to write, any web site talking about AJAX should give you hint there.
    Of course, that won't work for folks who have JavaScript turned off, or some other incompatible browser, whereas the server side solution obviously works everywhere.

  • How to get list of tags in my html file?

    Hi,
    I am having a html file.
    I would like to display the list of tags and the names in the html file.
    For example, I am having a tag <input> and defined the tag name as "Inp1".
    So, I want to display the list of all tags and its names.
    Thank you,
    Regards,
    Gowtham Sen

    Is this an oversight in the library specification?
    Why does the tld file not contain any tag interrelationship information when the tags java api provide all the mechenism handle nesting.
    I have a tag library with a large number of tags which form a hierarchy reflecting the design of the library and its components.
    As the meta information ( tld ) does not contain any information about this hierarchy, the user is left clueless as to the composition of the tags.
    Also this directly affects all jsp design and editing tools, making features like code completion etc almost useless.
    Anyone from the tag library spec team ???

Maybe you are looking for