Where is my root directory then?

I'm a noobe and I ain't getting it!
For some reason when I build my site, no matter what folder I
designate , I get no links!
I keep getting prompted to specify a local root folder in a
new site....I keep on doing that, but my links still fail.
Is there some special place/name folder type I need to create
for this to work?
I am using a mac.

> I keep getting prompted to specify a local root folder
in a new site...
> I am using a mac.
An educated guess- there is probably a "funky" character in
the hard drive
name or the name of a folder leading down to this local site
folder.
please do this:
Open a new blank html file using file->new
-->do not save this file<--
type some text in design view
Select the text, and create a link to this site's "homepage"
file using the
folder link icon in the Property Inspector
view code and copy that link's code and paste into reply.
It should be an absolute local path like
file:///harddrivename/Users/Username/folder/folder/index.html
adobe technote on file or folder names in mac os breaking
functionality:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14452
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • _PLUGIN:resourceId() for resources not in the plug-in root directory?

    For ages, I've been using
    f:picture {
    value = _PLUGIN:resourceId( "images/myImage.png" )
    to successfully load resources on Windows.  Today, I just discovered that the same code doesn't work on my wife's Mac laptop.  If I move the resource to the plug-in's root directory, then
    f:picture {
    value = _PLUGIN:resourceId( "myImage.png" )
    works as expected.
    Is this the way _PLUGIN:resourceId() (and _PLUGIN:hasResource()) is supposed to work??  If it is, or as a work-around, if I don't want to clutter up my root directory, is there any reason why I shouldn't use
    f:picture {
    value = _PLUGIN.path .. "/images/myImage.png"
    instead?
    -Don

    I noticed the same is true of other relative file references too, not just resources (e.g. specification of modules in Info.lua). Mac is different than Windows in this regard (Windows takes subpaths, Mac doesn't).
    No reason not to use absolute paths that I can see.
    Also, if I remember correctly:
    value = _PLUGIN:resourceId( _PLUGIN.path .. "/images/myImage.png" ) -- works, although I'm not sure what it buys you...
    Rob

  • How do I embed a site map in the root directory?

    I am trying to find the root directory, so that I can embed the site map. Where is the root directory?

    Hi , thank you for your repy.
    I want to set up the user story default to have a 2 line entry in the tab prior to the user entering data
    I know I can enter a CR during editing
    For example I would like the details to to be (after creating new , before entering data) to be:
    Line1<o:p></o:p>
    CR<o:p></o:p>
    Line2
    <o:p></o:p>
    So the user enters data after the Line 2 heading

  • How can i get also the files in the root directory and how can i for testing add items of IEnumerable FTPListDetail to List string ?

    What i get is only the directories and files that in other nodes. But i have also files on the root directory and i never
    get them. This is a screenshot of my program after i got the content of my ftp. I'm using treeView to display my ftp content:
    You can see two directories from the root but no files on the root it self. And in my ftp server host i have files in the root direcory.
    This is the method i'm using to get the directory listing:
    public IEnumerable<FTPListDetail> GetDirectoryListing(string rootUri)
    var CurrentRemoteDirectory = rootUri;
    var result = new StringBuilder();
    var request = GetWebRequest(WebRequestMethods.Ftp.ListDirectoryDetails, CurrentRemoteDirectory);
    using (var response = request.GetResponse())
    using (var reader = new StreamReader(response.GetResponseStream()))
    string line = reader.ReadLine();
    while (line != null)
    result.Append(line);
    result.Append("\n");
    line = reader.ReadLine();
    if (string.IsNullOrEmpty(result.ToString()))
    return new List<FTPListDetail>();
    result.Remove(result.ToString().LastIndexOf("\n"), 1);
    var results = result.ToString().Split('\n');
    string regex =
    @"^" + //# Start of line
    @"(?<dir>[\-ld])" + //# File size
    @"(?<permission>[\-rwx]{9})" + //# Whitespace \n
    @"\s+" + //# Whitespace \n
    @"(?<filecode>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<owner>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<group>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<size>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<month>\w{3})" + //# Month (3 letters) \n
    @"\s+" + //# Whitespace \n
    @"(?<day>\d{1,2})" + //# Day (1 or 2 digits) \n
    @"\s+" + //# Whitespace \n
    @"(?<timeyear>[\d:]{4,5})" + //# Time or year \n
    @"\s+" + //# Whitespace \n
    @"(?<filename>(.*))" + //# Filename \n
    @"$"; //# End of line
    var myresult = new List<FTPListDetail>();
    foreach (var parsed in results)
    var split = new Regex(regex)
    .Match(parsed);
    var dir = split.Groups["dir"].ToString();
    var permission = split.Groups["permission"].ToString();
    var filecode = split.Groups["filecode"].ToString();
    var owner = split.Groups["owner"].ToString();
    var group = split.Groups["group"].ToString();
    var filename = split.Groups["filename"].ToString();
    var size = split.Groups["size"].Length;
    myresult.Add(new FTPListDetail()
    Dir = dir,
    Filecode = filecode,
    Group = group,
    FullPath = CurrentRemoteDirectory + "/" + filename,
    Name = filename,
    Owner = owner,
    Permission = permission,
    return myresult;
    And then this method to loop over and listing :
    private int total_dirs;
    private int searched_until_now_dirs;
    private int max_percentage;
    private TreeNode directories_real_time;
    private string SummaryText;
    private TreeNode CreateDirectoryNode(string path, string name , int recursive_levl )
    var directoryNode = new TreeNode(name);
    var directoryListing = GetDirectoryListing(path);
    var directories = directoryListing.Where(d => d.IsDirectory);
    var files = directoryListing.Where(d => !d.IsDirectory);
    total_dirs += directories.Count<FTPListDetail>();
    searched_until_now_dirs++;
    int percentage = 0;
    foreach (var dir in directories)
    directoryNode.Nodes.Add(CreateDirectoryNode(dir.FullPath, dir.Name, recursive_levl+1));
    if (recursive_levl == 1)
    TreeNode temp_tn = (TreeNode)directoryNode.Clone();
    this.BeginInvoke(new MethodInvoker( delegate
    UpdateList(temp_tn);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    foreach (var file in files)
    TreeNode file_tree_node = new TreeNode(file.Name);
    file_tree_node.Tag = "file" ;
    directoryNode.Nodes.Add(file_tree_node);
    numberOfFiles.Add(file.FullPath);
    return directoryNode;
    Then updating the treeView:
    DateTime last_update;
    private void UpdateList(TreeNode tn_rt)
    TimeSpan ts = DateTime.Now - last_update;
    if (ts.TotalMilliseconds > 200)
    last_update = DateTime.Now;
    treeViewMS1.BeginUpdate();
    treeViewMS1.Nodes.Clear();
    treeViewMS1.Nodes.Add(tn_rt);
    ExpandToLevel(treeViewMS1.Nodes, 1);
    treeViewMS1.EndUpdate();
    And inside a backgroundworker do work how i'm using it:
    var root = Convert.ToString(e.Argument);
    var dirNode = CreateDirectoryNode(root, "root", 1);
    e.Result = dirNode;
    And last the FTPListDetail class:
    public class FTPListDetail
    public bool IsDirectory
    get
    return !string.IsNullOrWhiteSpace(Dir) && Dir.ToLower().Equals("d");
    internal string Dir { get; set; }
    public string Permission { get; set; }
    public string Filecode { get; set; }
    public string Owner { get; set; }
    public string Group { get; set; }
    public string Name { get; set; }
    public string FullPath { get; set; }
    Now the main problem is that when i list the files and directories and display them in the treeView it dosen't get/display
    the files in the root directory. Only in the sub nodes.
    I will see the files inside hello and stats but i need also to see the files in the root directory.
    1. How can i get and list/display the files of the root directory ?
    2. For the test i tried to add to a List<string> the items in var files to see if i get the root files at all.
       This is what i tried in the CreateDirectoryNode before it i added:
    private List<string> testfiles = new List<string>();
    Then after var files i did:
    testfiles.Add(files.ToList()
    But this is wrong. I just wanted to see in testfiles what items i'm getting in var files in the end of the process.
    Both var files and directoryListing are IEnumerable<FTPListDetail> type.
    The most important is to make the number 1 i mentioned and then to do number 2.

    Risa no.
    What i mean is this. This is a screenshot of my ftp server at my host(ipage.com).
    Now this is a screenshot of my program and you can see that in my program i have only the directories hello stats test but i don't have the files in the root: htaccess.config swp txt 1.txt 2.png....all this files i don't have it on my treeView.
    What i want it to be is that on my program on the treeView i will also display the files like in my ftp server.
    I see in my program only the directories and the files in the directories but i don't see the files on the root directory/node.
    I need it to be like in my ftp server i need to see in my program the htaccess 1.txt 2.png and so on.
    So what i wrote in my main question is that in the var files i see this files of the root directory i just don't know to add and display them in my treeView(my treeView is treeViewMS1).
    I know i checked in my program in the method CreateDirectoryNode i see in the first iteration of the recursive that var files contain this root files i just dont know how to add and display them in my treeView.
    On the next iterations when it does the recursive it's adding the directories hello stats test and the files in this directories but i need it to first add the root files.

  • How do I set up a root directory for a web site

    So this is probably a naive newbie question.
    I have been creating websites driven by php/mysql on my mac for years using the previous the web preference pane to run Apache and since that went away using XAMPP to provide Apache/php/mysql functionality on localhost.
    I decided to download OSX server and try to use that.  Figured might as well go native MAC.
    I am baffled.
    The manual says to set up a web site in Server by working through the Websites Services interface. I did that and pointed the setup at the directory where I have all of my web site files.  I now have no idea how to access that page from my local machine.
    I have tried:
    http://localhost/myURL
    http://localhost/~username/Sites/[root file directory]  -- where the files are stored
    I also tried some typical localhost ip address
    None access my site.
    How do I access my site over my local netework?
    I feel like just dumping server.app and stting things up through the terminal.
    Thanks,
    --Kenoli

    How familiar are you with the bash command line and with Apache, and how much do you want to learn about Apache and related topics?  (If you're not already, then I'd encourage learning about this material, as this knowledge is very useful for maintaining and updating sites, and knowledge of correctly securing files and directories is critical to building and maintaining secure web sites — all of managing and running and updating a web server builds on these foundations.  There are various good books and web sites on Apache, and the Apache web site has various materials available, if you don't already have something.)
    The localhost host name and the 127.0.0.1 IPv4 address are both synonyms for the "me" host.  It's the name and the address that always gets you to the current host.
    With http://localhost/ or http://127.0.0.1 specification, what you enter at the URL address bar is relative to the root directory specified for the default web server, and will default to the index.html or index.php page or whatever the default web site is configured to use.  With OS X Server, this root directory is configured via Server.app.  To use Server.app, launch it, connect to the server, select Websites from the left navigation, and you (by default) will see a default site and a secure site.  Select the default site.  Select the edit button below the site to edit (and to view) the configuration. 
    With the details of the default site visible, you will see the path to the default web directory.  This path to the default web directory is where the files for the default web sever location reside. 
    The default path to the default web site is /Library/Server/Web/Data/Sites/Default
    If you place foo.html in that directory (or whatever the defailt web site is using), you can view it via your web browser and the URLs:
    http://127.0.0.1/foo.html
    http://localhost/foo.html
    To get to the default web site using the GUI, launch Finder and select Go To Folder, and enter that string into the box.  You will now get a GUI view of that folder.  (I'd strongly recommend using the command line here, and not the GUI.  To get to the directory from the command line and then list the files present, launch Terminal.app from Applications > Utilities folder and issue the following commands:
    cd /Library/Server/Web/Data/Sites/Default
    ls
    If you want to test something in the browser, you can use the file:///path-to-file-to-test mechanism.  Most web browsers will allow you to render local files directly using file and three slashes.
    You will need to ensure the executable files (scripts) are marked as executable to OS X, using a Terminal.app command such as the following:
    chmod o+x path-to-file
    Enabling ~/user per-user sites involves directly editing the configuration file, as Apple has disabled that by default. 
    There's an Apache tutorial with an overview of what's involved with enabling per-user directories here, and there's what's been listed in my earlier replies and links.  With OS X Server Mavericks, the default configuration file for Apache is located in the Library folder, and can be viewed with the following Terminal.app command:
    cat /library/server/web/config/apache2/httpd_server_app.conf
    This file is the OS X Server equivalent of the oft-cited httpd.conf file you'll see listed in various documentation.
    If you want to enable the per-user directories or tweak other Apache settings, then shut down Apache from Server.app or from the command line, and then edit the configuration file with nano or some other command-line editor using a command similar to this:
    sudo nano /library/server/web/config/apache2/httpd_server_app.conf
    you'll end up finding and uncommenting (removing the #) from the following two lines:
    #LoadModule apple_userdir_module ${SERVER_INSTALL_PATH_PREFIX}/usr/libexec/apache2/mod_userdir_apple.so
    #Include /private/etc/apache2/extra/httpd-userdir.conf
    If you have specific questions about this, then I and others here can answer those.  If you don't understand something, then asking a question about that can help you learn, and can help me understand what it is that I'm posting in my replies here that's confusing you.  There are also various resources available for learning Apache, and I'd encourage spending a little time with those if you've not already done so or feeling at all unsure about how that tool works; I end up re-re-reviewing the Apache docs fairly regularly.

  • ODBC for Rdb files dissolve at root directory now

    Late Dec99, I noticed a change in behavior of Oracle Rdb driver installation files.
    For a couple years, on a Windows 95 PC, when I run the rdbwin95.exe installation program via Start > Run > and specify the -d qualifier, the installation program would first create a Win95 folder inside the current folder location and then create additional folders inside that new folder. Now, it creates the Win95 folder at the root directory, e.g., c:\ level, instead of inside the temporary installation folder.
    Likewise, when I run an older version, rdb32.exe for example, it also dissolves into multiple files, all at the root level, instead of the temporary folder where I had placed it. Rdb16.exe behaves the same way.
    Processing these 2 files can get ugly because it can exceed the maximum number of objects permitted on the c: drive, making new folder creation impossible until the install files are deleted.
    I wonder if there might be some incompatability between the zip program used to create the install files and my current PC software. Each of the PCs I've tried at my location behave the same way, but some PCs at other locations do not, while some do. I just haven't been able to figure out the common denominator.
    The only reason I call this a problem is that I have some s/w installation instructions that walk users thru example screens and it looks like I may need to cover both possible behaviors in my examples.
    Has anyone else seen this problem? Or, have any explanation for it?
    Thanks
    null

    Risa no.
    What i mean is this. This is a screenshot of my ftp server at my host(ipage.com).
    Now this is a screenshot of my program and you can see that in my program i have only the directories hello stats test but i don't have the files in the root: htaccess.config swp txt 1.txt 2.png....all this files i don't have it on my treeView.
    What i want it to be is that on my program on the treeView i will also display the files like in my ftp server.
    I see in my program only the directories and the files in the directories but i don't see the files on the root directory/node.
    I need it to be like in my ftp server i need to see in my program the htaccess 1.txt 2.png and so on.
    So what i wrote in my main question is that in the var files i see this files of the root directory i just don't know to add and display them in my treeView(my treeView is treeViewMS1).
    I know i checked in my program in the method CreateDirectoryNode i see in the first iteration of the recursive that var files contain this root files i just dont know how to add and display them in my treeView.
    On the next iterations when it does the recursive it's adding the directories hello stats test and the files in this directories but i need it to first add the root files.

  • SQL Server 2008 R2 Installation Media Root Directory location for XP SP3?

    Where is the SQL Server 2008 R2 Installation Media director?  This question asks during a 'new installation or add features to an existing installation'.  The installation media root directory is not indicated under 'options'.  I trying side-by-side
    installation next to SQL Server 2008 Express Edition. 
    It appears that C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2 (where 1033_ENU_LP, Resources, and x86 dirs are installed) is the installation media root directory, but is is not a valid folder. 
    Also tried copying the 1033_ENU_LP, Resources, and x86 dirs from the C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2 into a directory that I created in c:\2008R2installationDir, and then running setup.exe, but still do not have
    an installation media root dir specified under options.

    There is no DVD; SQLServer2008R2SP2-KB2630458-x86-ENU.exe was downloaded.  This problem occurs when setup.exe is run, after running *ENU.exe to download the files.  Specifying the directory where the
    SQLServer2008R2SP2-KB2630458-x86-ENU.exe doesn't help. 
    >>It doesn't seem like any instances have been installed, yet.  Nothing shows up under Administrative Toos | Services.  Under Start | Microsoft SQL Server 2008 R2 , there are two choices:  Configuration Tools and Documentation&Tutorials.
    Hello,
    What seems to me that you have downloaded SP2 for SQL server 2008 R2(SQLServer2008R2SP2-KB2630458-x86-ENU.exe ).And as you say you dont find any thing under SQL 2008 r2.So i guess that is why SP2 installation is not moving
    ahead.Can you download SQL server 208 R2 setup again and install database engine and ither fetures with client tools.And then you can move ahead with SP2 installation
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Obtaining root directory of web application

    Hi all.
    I am beginer in web application developing. You probably know how it is. Problem after problem:)
    So I started developing in JSF using NetBeans 6.0 with Tomcat 6.0.14 and i have the folowing problem:
    How can I programically get the root directory of my web application? I need it because I use some kind of filter, which redirects to error page, when unauthorized user tries to access protected resources. This error page is in root directory of my web application and has commandLink to logging site (action is set for method, which returns some string and navigation is defined for this string in facesconfig.xml), which is also in root directory. When I want to access for example /restricted/user/userPage.jsp and I am not logged in, the error page is displayed, but command link does not work. I supose the is a problem in current directory which is probably set for /restricted/user/.
    Thank You for any clues.
    Regards,
    Jahn Gurda

    Hello!
    I am also new to web applications and JSF. But I can tell you that its a little hard to programically achieve the security you want to achieve i.e. displaying some error page if the user is not logged in, however you can do it relatively easily using web.xml or sun-web.xml files by defining some roles, filters etc.
    I read that somewhere, try searching on Google...I have not implemented that myself.
    As far as obtaning the root directory of web application is concerned you may try following in your button_action method or any where in Page Bean class:
    ServletContext theApplicationsServletContext = (ServletContext) this.getExternalContext().getContext();
    String rootPath = theApplicationsServletContext.getRealPath("/");Then use "rootPath" where ever you want, it contains the path of the root directory.
    It atleast works for me.....
    Its strange that no one has answered this query for so long. Hope someone does early, I also want the clear answer.
    Thanks!
    Edited by: T.B.M on Oct 20, 2008 12:45 AM

  • ClassLoader only loads root directory class???

    I tried to load an external class in Java application, but I found
    out I can only put the external class in root directory C:\
    Otherwise, it will throw class not found exception. any ideas???
    ClassLoader loader = new PluginClassLoader(Integer.parseInt(key));
    //Class c = loader.loadClass("C:\\proj\\NewMenu"); //throw class not found exception
    Class c = loader.loadClass("NewMenu"); //search for C:\NewMenu.class

    Make sure the class file you are trying to load is in your classpath (which is usually the JDK class path along with the base folder for any packages that you wrote, including '.').
    If you're sure the class files are in the class path, then try getting your ClassLoader like:
        ClassLoader loader = ClassLoader.getSystemClassLoader();I don't know much about ClassLoaders at all (or PluginClassLoader either), but maybe the system one is set up to look in your classpath, whereas ones you create are not.
    I can tell you know, though, that passing "C:\\proj\\NewMenu" isn't going to work. Java is designed to be platform independent, and that type of pathname is Microsoft-specific. If you have classes in subfolders of one of your class path folders, you need to make sure you declare them to be in the appropriate package, and you need to load them as "whatever.my.package.ClassName". What I mean is, say "c:\classes" is in your classpath. If you have a set up like:
    c:\
      classes\
        class1.class
        misc\
          class2.class
          class3.class
          other\
            class4.classThen you need to make sure that, when you compiled each of those classes, you put "package misc.other;" or whatever at the top of the source file. And, say you wanted to load class4 with your ClassLoader, you'd have to do loader.loadClass("misc.other.class4").
    Sorry I couldn't give you better advice.
    Jason

  • JFileChooser hang when brosing root directory of Truecrypt Encrypted drive

    Hi,
    I have been consistently having a problem with netbeans where if I try to browse to the root directory of my encrypted drive, it hangs for a long time (say 5 - 10 minutes). It then eventually comes back with the correct file choose dialog.
    At first I thought this was just a Netbeans issues. However, I was also developing a Java Swing app (in eclipse) that uses a JFileChooser dialog. If I browse a standard drive I have no problems. If I then go to browse my encrypted file, I get this hang. When I compared the netbeans scenario with this, the only thing in common is that I was trying to browse my encrypted drive.
    This only seems to happen when I want to browser to the root directory of this drive. If I am able to get the dialog to open (on a normal drive) and I directly enter a sub directory of the encrypted drive into the file name field, I can browse there without the hang.
    So just wondering if anyone else has had this problem. I know it isolated to swing JFIleChooser, to at least swing on Windows XP as I don't get this problem through the native file chooser, or through the native file chooser via SWT.
    My drive was encrypted using Truecrypt.
    Truecrypt details
    Size: 41943039488 bytes
    Type: Normal
    Encryption Agorithm: AES
    Key Size: 256 bits
    Block Size: 128 bits
    Mode of Operation: LRW
    Can anyone give me some idea of what might be happening here?
    Regards
    Steve

    I don't know if this is what you are looking for.
    If you need the real roots, you can use this
    File[] file = File.listRoots();
    It should return the available filesystem roots.

  • Getting list of files in root directory

    I have seen many forum talking somewhat on this subject but I always see them using c: (for windows) as the example directory. I need to write this so that I can go to a Unix directory.
    Example:
    I want to go to the root directory from where I am....I would use runtime.exec(), right? But does the runtime actually go to that directory or just run the exec?
    If there was a "name" such as c: in unix like windows it would be easier. But, I can not just say the name of the directory is / to get in there and check out the files. So, really what I want to do is if someone is not in the particular directory I want to be able to go to the root directory and check files there, then go to another directory and check the files there, etc.
    I have a hard time explaining things so hopefully someone will get me.
    Thanks.

    But the trouble I am running in to is that I want the
    root directory in Unix, which would be /. I can not
    not just put that as the directory, can i?You can if you spell it out:
    /export/home/thefunnyrootename
    ... or use:
    String sysprop = System.getProperty("whatever property");
    File f = new File(sysprop);... To determine which you want, SDK v1.3.1 docs for System.getProperty():
    getProperties
    public static Properties getProperties()
        Determines the current system properties.
        First, if there is a security manager, its checkPropertiesAccess
    method is called with no arguments. This may result in a security
    exception.
        The current set of system properties for use by the
    getProperty(String) method is returned as a Properties object.
    If there is no current set of system properties, a set of system
    properties is first created and initialized. This set of system
    properties always includes values for the following keys:
        Key Description of Associated Value
        java.version Java Runtime Environment version
        java.vendor Java Runtime Environment vendor
        java.vendor.url Java vendor URL
        java.home Java installation directory
        java.vm.specification.version Java Virtual Machine specification version
        java.vm.specification.vendor Java Virtual Machine specification vendor
        java.vm.specification.name Java Virtual Machine specification name
        java.vm.version Java Virtual Machine implementation version
        java.vm.vendor Java Virtual Machine implementation vendor
        java.vm.name Java Virtual Machine implementation name
        java.specification.version Java Runtime Environment specification version
        java.specification.vendor Java Runtime Environment specification vendor
        java.specification.name Java Runtime Environment specification name
        java.class.version Java class format version number
        java.class.path Java class path
        java.ext.dirs Path of extension directory or directories
        os.name Operating system name
        os.arch Operating system architecture
        os.version Operating system version
        file.separator File separator ("/" on UNIX)
        path.separator Path separator (":" on UNIX)
        line.separator Line separator ("\n" on UNIX)
        user.name User's account name
        user.home User's home directory
        user.dir User's current working directory
    Note that even if the security manager does not permit the getProperties
    operation, it may choose to permit the getProperty(String) operation.
    Returns:
    the system propertiesThrows:
    SecurityException - if a security manager exists and its
    checkPropertiesAccess method doesn't allow access to the system
    properties.See Also:
    setProperties(java.util.Properties), SecurityException,
    SecurityManager.checkPropertiesAccess(), Properties~Bill

  • What is the portal root directory for uploading files

    Hi
    I need to upload js files to my portal server (to the home page)
    Can anyone let me know where is the the folder in the server that I need to put the files and the portal will see it.
    Thanks!!

    Hi,
    Oracle Portal doesn't have a "root" directory - Oracle Portal is a combination of many other products & services.
    You need to put your .js files in a Directory & tell Apache to "look" in tthat directory for the .js files. You need to use a directive offered by Apache - Alias - to achieve this. You need to tweak main the Apache Configuration File - http.conf - & specify the folder where your .js files reside. You need to modify the Configuration File using the Entrerprise Manager only.
    Here's an example :-
    Alias /js C:/OraMidTier/javascript
    <Directory C:/OraMidTier/javascript>
              Order allow,deny
               Allow from all
    </Directory>You can then dump all your javascript files in this folder & access it in your HTL Pages with the Virtual Path - /js - e.g.:-
    <script type="text/javascript" src="/js/mySrc.js">You can get more information from the Oracle HTTP Administrator's Guide ( or, the Apache Documentation ) about the Alias DIrective.
    Regards,
    Sandeep

  • Why are my render files in my boot drive/root directory?

    I have configured FCP to use an external drive for my Scratch Disk to render Video Capture, Audio Capture, Video Render and Audio Render as well as the Waveform Cache, Thumbnail Cache and Autosave Vault. Plenty of room on it and for the most part, I see a lot of render files on it, just like it should do.
    However, if I leave FCP running for a while, it will start to auto-render again and does so placing tons of huge files on my local boot drive right on the root directory under a folder called "Render Files". It ends up filling up my boot drive every time and need to delete them.
    I have searched everywhere to find where to configure this to move it to my scratch drive, but no joy.
    How do I get FPC to render these files on a non-boot drive scratch disk?
    Thanks.

    That's possible that's it going to sleep. But I don't think so. The problem happens when I let the editor sit too long without doing anything in it (get up for a cup of coffee, using another application to generate some text effects, etc). Then its starts rendering on its own and does so only with the local boot drive/root directory.
    When it comes back, the "green line" (Preview Render) is gone and the lines are replaced with dark blue, which I think indicates the sequence was rendered in the highest possible res/codec I have selected. That's fine, but why does it insist on using the local drive when I have another specified?

  • Tomcat: How to run servlets in ROOT directory ?

    Hi,
    I am developing an app that has all JSP in ROOT directory.
    ROOT/appname/submodule/XXX.jsp
    How do I configure Tomcat so that I can place Servlets
    also in the same directory.
    (For better organization)
    i.e I would like to run as:
    http://host/appname/submodel/XXX.jsp
    and
    http://host/appname/submodule/YYY
    where YYY is the servlet YYY.class ??
    Is this doable ?

    Hi there,
    I am running into some trouble in configuring servlet directory other than the default /example/servlet/
    i am using tomcat3.2 with IIS as the webserver(NT 4.0).
    in the $tomcat_home/conf/server.xml, I added the following:
    <Context path="/myServletDir"
    docBase="E:/myServletDir"
    crossContext="false"
    debug="0"
    reloadable="true" >
    </Context>
    and i store my classes in
    E:/myServletDir/WEB-INF/classes/
    i even added a E:/myServletDir/WEB-INF/web.xml
    and tried to add something like this as suggested by some other people in tomcat forum:
    <servlet>
    <servlet-name>
    HelloWorldExample
    </servlet-name>
    <servlet-class>
    HelloWorldExample
    </servlet-class>
    </servlet>
    i stopped tomcat and restart, still can't make it work:
    http://myhost/myServletDir/servlet/HelloWorldExample
    or
    http://myhost/myServletDir/HelloWorldExample
    it would then tell me files not found. but if i put any classes in the examples/WEB-INF/classes, they would be just fine...
    what should I do? please help...
    thanks in advance,
    ann

  • FinRep 9.3.1: All users getting error opening reports from root directory

    We are having an irritating, although not missiion critical error
    When a user (any user) attempts to open a report from the explorer view in Financial Reporting 9.3.1, we receive an "_Error 1000165"._ No explanation is provided. No folders are openable within the explorer view except "Personal Page."
    It is possible to open reports by opening a report that got accidentally stored in the root directory and then opening another report from the menu system in the usual way. So it is not a user permissions/provisioning issue.
    Is there a fix to this? I am afraid someone will clean out the root directory and then we won't be able to access our reports.
    Update: I can use the pattern "VariancePercent([B(A)],[A(A)])" to cut this to 27 Columns by varying the direct reference to the column. But is there an easier way to do this?
    Edited by: user10868938 on Feb 24, 2009 3:43 PM

    We have been able to complete the update of our users SSID's in our Planning SQL tables through the utility. We had to create the users in Essbase first though.
    However, if I try to log into Planning (through Workspace) I still cannot see the Planning applicaitons I should have access too. In Shared Services if I pull up my network ID and View Report, I do not get any Planning groups to show up that I belong too. I can open the group in HSS and see my ID is in it but when I do the View Report on my ID nothing comes up.
    Additionally, if I add a user from scratch to the existing Planning groups that we've migrated and do the View Report they will show up for that user and the security passes through to Planning/Essbase so that I could log on fine. So, the problem is not with adding new users but the existing one's that were migrated. HSS shows the users in the groups but if you view a Report for those users it doesn't look like you belong to any groups.
    We are going to apply a patch to Shared Services to see if it helps. It's suppose to deal with Groups that have users from multple domains but one set of those users cannot log into the application they should have access too. We applied this in our stand-alone S9 Essbase environment a couple of months ago to deal with a break between our existing users and groups from HSS to Essbase. Maybe this will be the final piece.

Maybe you are looking for

  • I lost my iPod at school and I found the Serial Number. How can i find it?

    I can't find my Ipod touch 5th Gen. I lost it at school. How can I find it? I have the Serial Number.

  • ALV Grid Problem in WebGUI

    Hi All, We've created an ALV grid using classes in R3 and we're testing it in WebGUI.  All of those scenarios are working fine in R3 however the behavior in WebGUI is different.  We're encountering a problem wherein the cellstyles are not being refle

  • How to View Pending List for Replacement Subsequent Order

    Hi Guru's,        Can any one tell me how we will able to findout the list of Pending order for Replacement. If we will book a Return & do the delivery. After delivery we have Release the Sales Return order by VKM3. Then how we will found the list of

  • Display quality

    Hi All, For the last week i'm using my brand new macbook air 13" I'm loving it, the resolution is great versus 13" macbook pro. The only problem i have is that colors appear to be washed out comparing to macbook pro, whites are not as white either. I

  • Error when Broadcasting PDF format to email

    Hi, The template is getting executed properly through WAD. Even, in portal the report is being generated correctly. The problem is when I try to broadcast PDF format to Email. I am receiving the following error when attempting to broadcast a query as