"File does not exist or access denied"

Hi
I am new to FDM. I am trying to import a .csv file in FDM using Import Format Builder. When i select the file in the Inbox folder of my application, it gives me the message "Error: File does not exist or access denied".
Any ideas why this error is coming. I have been struggling with this error for some time now.
Thanks in advance

Hello,
I do not think it has anything to do with the configured ID for the AppPool and would not suggest tinkering around in it, as it can damage the application significantly.
Some concerns that I have are the following:
1. When you get the error, do you get a 'white' fish?
2. What does your UserError Log state? Clear it and reproduce the issue and post the results.
3. What does the Import Log state? (Import button on the View File tab of the Import Fish)
Thank you.

Similar Messages

  • Can't Create a Data Source - Failed to test connection. [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied

    Hi there,
    I am having a serious issue with The Power BI Data Management Gateway which I am hoping that someone can help me with.
    Basically I am setting a connection between a Power BI demo site and a SQL 2012 Database based on Azure. The Data Management Gateway and is up and running, and Power BI has managed to connect to it successfuly.
    By following the tutorials at
    here I was able to successful create my Data Connection Gateway with a self-signed certificate.
    However, when trying to create the data source I come into problems. The Data Source Manager manages to successfully resolve the hostname, as per the screenshot below:
    Bear in mind that I exposed the require ports in Azure as endpoints and I managed to modify my hosts file on my local machine so I could access the SQL server hosted in Azure using its internal name -- otherwise I would not be able to get this far.
    However the creation of the data source also fails when trying to created it whilst logged in the SQL server in question:
    The Data Source Manager returns the error when using the Microsoft OLE DB Provider for SQL Server:
    Failed to test connection. [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied
    I tried using the SQL Server Native Client 11.0 instead but I also get an error. This time the error is:
    Failed to test connection. Login timeout expiredA network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.Named Pipes Provider: Could not open a connection to SQL Server [53]. 
    Some considerations
    If I provide an invalid username/password, the Data Source Manager does say that the username and password is incorrect.
    Firewall is turned off in the SQL Server (either way, this error also happens if I try top use the Data Source Manager whilst logged in the SQL Server itself).
    SQL Profiler does not show any attempt of connection.
    The SQL server instance in question is the default one.
    The error happens regardless if I select the option to encrypt connection or not.
    In SQL Configuration manager I can see that all protocols are enabled (TCP/IP, Named Pipes and Shared Memory.
    The Event Viewer does not provide any further errors than the one I have copied in this post.
    I'm at a loss here. Could someone please advise what might I be doing wrong?
    Regards,
    P.

    Here is what I had to do to solve this issue:
    Basically I had to add the MSSQL TCP/IP port as an end-point in Azure. After I did that, then I was able to create the data-source. However, I was only able to authenticate with a SQL account, as any domain account would return me an error saying that the
    domain isn't trusted.
    What puzzles me here is how come the Data Source Manager would inform me that an account username/password was invalid, but it would fail/timeout if I provided valid credentials (!?!?!!?)

  • [Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied.

    Hi, I've seen questions about this error posted elsewhere but I'm not sure if the same issues applied.
    I'm trying to connect to SQL Server from a VBA macro in excel. I've managed to do this with the code below where my query is return to cells in my active worksheet but for another query I want to run the data to be return is too large for Excel to handle
    and so I'd like to save it as a .csv file but using the second example of my code I get the message "[Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied". Since I have access to this database from the first example
    of the code, I assume my conn.ConnectionString line of code is letting me down.
    Can anyone help me please?
    'Code to return data to worksheet'
    Sub macro2()
    With ActiveSheet.ListObjects.Add(SourceType:=0, Source:=Array(Array( _
            "ODBC;DSN=SQLRA - OPENBET;UID=user1;Trusted_Connection=Yes;APP=Microsoft Office 2013;WSID=pdfdf3001;DATABASE=open;Network=DBMSS" _
            ), Array("OCN;Address=SQLRA_DB,55455;ApplicationIntent=READONLY;")), _
            Destination:=Range("$BG$1")).QueryTable
            .CommandText = Array( _
            "select  A.ev_oc_id, B.ev_mkt_id, A.ev_id, D.start_Time, Upper(Replace(A.[desc],'|','')) , A.result, COALESCE(A.sp_num, A.lp_num) , ", _
            "COALESCE(A.sp_Den, A.lp_Den) from open.reporting.tevoc A, open.reporting.tevmkt B, open.reporting.tevocgrp C, open.reporting.tev D ", _
            "where  A.ev_mkt_id = B.ev_mkt_id and B.ev_oc_grp_id = C.ev_oc_grp_id and D.ev_id = A.ev_id and Upper(Replace(D.[desc],'|','')) = 'home' and upper(B.name) = '|today|' and D.ev_type_id in (264, 289) and D.ev_class_id = 49
    and D.start>= '" & Year & "-" & Month & "-" & Day & "'" _
            .RowNumbers = False
            .FillAdjacentFormulas = False
            .PreserveFormatting = True
            .RefreshOnFileOpen = True
            .BackgroundQuery = True
            .RefreshStyle = xlInsertDeleteCells
            .SavePassword = False
            .SaveData = True
            .AdjustColumnWidth = True
            .RefreshPeriod = 0
            .PreserveColumnInfo = True
            .ListObject.DisplayName = "Table_Query_from_SQLRA___OPEN_1"
            .Refresh BackgroundQuery:=False
        End With
    End Sub
    'Code that produces error'
    Sub macro1()
    Dim conn As ADODB.Connection
    Set conn = New ADODB.Connection
    Dim testSQL As String
    Dim qd As DAO.QueryDef
    Dim openbetdb As Database
        conn.ConnectionString = "driver={SQL Server}; server= sqlra_db;uid=user1;APP=Microsoft Office 2013;WSID=pdfdf3001;database=openbet"
        conn.Open
        testSQL = "SELECT * FROM open.reporting.TevType where ev_class_id = 49 and ev_type_id in(289,330,518,13492);"
        Set qd = Db.CreateQueryDef("tmpExport", testSQL)
        DoCmd.TransferText acExportDelim, , "tmpExport", "C:\\export.csv"
    End Sub

    Hello,
    Are you connect to remote SQL Server? If so,
    please make sure the target SQL Server is running and is listening on appropriate protocols. Please take a look at the following article about general steps to troubleshoot
    SQL connectivity issues:
    http://blogs.msdn.com/b/sql_protocols/archive/2008/04/30/steps-to-troubleshoot-connectivity-issues.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • "server does not exist or access denied"

    On a particular family-oriented website, I keep getting this message when I try to access the site:
    Microsoft OLE DB Provider for ODBC Drivers error '80004005'
    [Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied.
    /Include/ADOHelper.asp, line 137
    No idea why, been there before, and this isn't a site anyone would have a reason to restrict. Any ideas would be helpful.

    First see if SQLServer is up and running
    Go to start-> run in machine where sql is installed and type services.msc
    In services list check if SQLServer service is present and is running. If not started, start it and make start mode as Automatic
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.

    I using SQL 2000 on Server 2012 in named instance. when i connect locally, it's ok, but when try to connect from network it generates error [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.

    Hi Sayed Abdul Latif,
    As other post, SQL Server 2000 was out of support since April,2013. You can try to install SQL Server 2005 or later version. In addition, since the issue regards SQL Server Data Access. I will help you post the question in the related forums. It is appropriate
    and more experts will assist you.
    According to your description, you can only connect to SQL Server locally, I recommend you check if the TCP/IP and Named Pipes are enabled in SQL Server Configuration Manager. And the SQL Server is set to allow remote connection. Then restart the SQL Service
    and check if you can connect to SQL Server remotely.
    Additionally, we also need to verify if the SQL Server named instance is in a cluster, and connect to it by using the "servername\instancename" syntax, then you receive the above error message. If yes, you have to hardcode the TCP port or the Named Pipe
    of the SQL Server named instance. For more information, you can review the following article.http://support.microsoft.com/kb/888228/en-us
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • SQL Server does not exist or access denied - periodic error

    Hi There,
    For the last week or so, I have been getting periodic errors on my sites powered by MSSQL databases. The error message is as follows:
    Microsoft OLE DB Provider for SQL Server error '80004005'
    [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.
    Usually, a quick refresh, and everything works fine again.
    My host doesn't know what has caused the issue, but has dug up this microsoft link: http://support.microsoft.com/kb/907264
    Most of that tech speak is beyond me! I use Dreamweaver - does anybody know if the standard dreamweaver connections or cursors contravene the advice on that page, and if so how to fix it?
    If not, does anybody know where to look to solve this issue?
    Thanks,
    Dan 

    I had this same problem and on a hunch I deleted the brackets
    so that the connection string instead of being,
    "Persist Security Info=False;Data
    Source=[THESERVER\SQLEXPRESS];Initial Catalog=[AdventureWorks];User
    ID=[ATEST];Password=[kjdkjdkjd]"
    is now,
    "Persist Security Info=False;Data
    Source=THESERVER\SQLEXPRESS;Initial Catalog=AdventureWorks;User
    ID=ATEST;Password=kjdkjdkjd"
    This was in Dreamweaver 8.

  • OLE DB or ODBC error: [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied

    Hi,
    I have one client and one server.  In both hosts I created an OS-user named User1.
    The user have been given various role under the prefix SQLServer2005.
    The default instance of SQL Server and instance (background-process) of
    Analysis Service are also run under User1.
    I connected via Management Studio to Analysis Service directly in the
    server.  I set the permission to access Analysis Service to Everyone. 
    This means everyone should be able to use Analysis Service.  I have set
    ODBC data source to the server.  Testing was successful.
    I created a project to create a cube.  The tables are fairly small (total 300 MB, biggest one 290).
    On project setting (created at client) I set the server host as
    deployment target. I managed to deploy project when all I have are Data
    Source and Data Source Views.
    But on deployment I always failed.   The errors remain the same, begins with
    OLE DB error: OLE DB or ODBC error: [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.; 08001.
    I have tried 4 combinations of Impersonation :
    (A) Use a specific username and password
      * in which I supply User1 and the password of User1
    (B) Use the service account
    (C) Use the credentials of the current user
    (D) Default
    Why is this? The server does certainly exist.  I think the error message is wrong.
    I have seen 3 posting that seems related.  One of them say the solution is giving the right impersonation, but gave no detail.  About the privilege, User1 are granted the role of
    SQLServer2005MSOLAP.  What is the solution?
    Thank you,
    Bernaridho

    I just had this problem and solved it by creating an alias in SQL Server Configuration Manager, as below:
    Scenario: My SQL server is accessible from the internet under my.domain.com, and from itself at ServerName. But the local network can't see itself through the router at my.domain.com, so the deployed project is unable to process the cube, since that would
    require Analysis Services to be able to see the SQL Server at my.domain.com, which it can't do.
    So I changed the server in my project from my.domain.com to ServerName, and I created a local alias to ServerName in SQL Server Configuration Manager, under SQL Native Client 11.0 Configuration, Aliases. In my case, I pointed it to localhost port 1333, and
    used SSH -L 1333:my.domain.com:1433, but I could have pointed the alias directly to the server, just as well. (Verifying... yes, that worked too, so you can forget SSH if you have no interest in it.)

  • SQL Server does not exist or access denied.

    Hello all,
    I am having a really frustrating time with our servers....
    once a week, the cold fusion server can't (or won't) connect
    to our separate MS-SQL server. It reports back an error that the
    connection could not be found or is denied. Our servers are running
    Windows 2000 Server and have the latest SP installed.
    To fix the problem, I just restart coldfusion and that's it.
    I have searched google groups and these forums but have not found
    any real solution. Can someone help??
    Thank you!!

    Perhaps you have some investigating to do the next time this
    occurs?
    Have you tried any of these...
    * Go to CF Admin and verify the datasource
    * Delete and recreate datasource
    * Try to create a new datasource
    * Try to ping SQL Server from CF server
    Also, in general, you should consider not using ODBC.
    Good luck!

  • Error: An error occurred importing the file. Detail: File does not exist or

    Hi,
    I am getting the error the below error while importing the file in FDM. I have read and write access to the folder. I tried loading text and excel files, I am getting the same error.
    An error occurred importing the file.
    Detail: File does not exist or access denied.
    Thanks.

    Hi Tony,
    Thanks for the reply.
    I have Oracle Database and the version is 11.1.0.7; So even for this version do I need to have SQLLDR.exe on the server where FDM is installed.
    Thanks,
    Edited by: user10720012 on May 16, 2011 11:42 AM

  • Sql server does not exist or access is denied.

    Hi,
    i am trying to connect a dadabase to the server from client pc. and i take the sql error  [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied to the client pc.
    i using .udl file and ia trying to connect with sql authentication.
    please advice.

    the clients computers are in the workgroup network.
    Hi Antonia,
    Please ensure you specify the correct server name, and check SQL Serer instance was started.
    A good article about UDL connect to SQL DB for your reference, please see:
    Quick Database Connectivity Testing:
    http://sqlblog.com/blogs/andy_leonard/archive/2011/08/26/quick-database-connectivity-testing.aspx
    In addition, this issue also might be caused by the windows fire setting. Please also take a look at the following article regarding configure the Windows Firewall to allow SQL Server Access:
    http://technet.microsoft.com/en-us/library/cc646023(v=sql.110).aspx
    Reards,
    Elvis Long
    TechNet Community Support

  • Error message Indesign:Either the file does not exist, you do not have read access to it, or use the file in another application.

    I've got problem with opening a file in InDesign. The file type is an InDesign Markup Document. The error message is: Either the file does not exist, you do not have read access to it, or use the file in another application. What's wrong?

  • TF237090: Does not exist or access is denied, when usint witadmin importwitd

    Hi all,
    I installed a TFS2013 and attached our TFS2012 database. I can access the project and everything works fine. But now I want to upgrad our process template. When I try to upload a new work item, I get:
    TF237090: Does not exist or access is denied.
    When I download an existing work item, and upload it again, it works. Any ideas on this?
    Thanks and regards, Sprengmeister

    I found some informations in the Event Log. I think this is a database or user configuration problem?
    Exception Message: TF237090: Does not exist or access is denied. (type DeniedOrNotExist)
    Exception Stack Trace:    at Microsoft.TeamFoundation.Framework.Server.TeamFoundationSqlResourceComponent.TranslateException(Int32 errorNumber, SqlException sqlException, SqlError sqlError)
       at Microsoft.TeamFoundation.Framework.Server.TeamFoundationSqlResourceComponent.TranslateException(SqlException sqlException)
       at Microsoft.TeamFoundation.Framework.Server.TeamFoundationSqlResourceComponent.MapException(SqlException ex, QueryExecutionState queryState)
       at Microsoft.TeamFoundation.Framework.Server.TeamFoundationSqlResourceComponent.HandleException(Exception exception)
       at Microsoft.TeamFoundation.Framework.Server.TeamFoundationSqlResourceComponent.Execute(ExecuteType executeType, CommandBehavior behavior)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.SqlAccess.ExecuteUnknown[TResult](ExecuteUnknownCallback`1 callback)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.SqlAccess.ExecSqlBatch[TResult](TeamFoundationRequestContext requestContext, String sql, List`1 parameterList, ExecuteUnknownCallback`1 execUnknownCallback)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.SqlAccess.ExecuteBatchPayload(String sqlBatch, List`1 parameterList, Int32 inMemoryTableCount, PayloadConverter payloadConverter, Payload& resultPayload, Int32 expectedTableCount, IDictionary`2
    schemas)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.SqlBatchBuilder.ExecuteBatchQuery(String sqlBatch, List`1 parameterList, Int32 inMemoryTableCount)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.SqlBatchBuilder.ExecuteBatch(Int32 inMemoryTableCount)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.DataAccessLayerImpl.UpdateImpl(XmlElement updateElement, MetadataTable[] tablesRequested, Int64[] rowVersions, Payload metadataPayload, Boolean bisNotification, String& dbStamp, Boolean
    bulkUpdate, Boolean& bulkUpdateSuccess, String userSid, Boolean overwrite, Boolean bypassRules)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.DataAccessLayerImpl.Update(XmlElement updateElement, MetadataTable[] tablesRequested, Int64[] rowVersions, Payload metadataPayload, Boolean bisNotification, String& dbStamp, Boolean bypassRules)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.DataAccessLayerImpl.Update(XmlElement updateElement, MetadataTable[] tablesRequested, Int64[] rowVersions, Payload metadataPayload, Boolean bisNotification, String& dbStamp)
       at Microsoft.TeamFoundation.WorkItemTracking.Server.ClientService.<>c__DisplayClass24.<Update>b__22()
       at Microsoft.TeamFoundation.WorkItemTracking.Server.WorkItemTrackingWebService.ExecuteWebMethod(MethodInformation methodInformation, String traceLayer, Int32 startTracepoint, Int32 endTracepoint, AccessIntent intent, Action methodCodeBlock,
    Action`1 catchCodeBlock)

  • File does not exist: /www/public_html/null, referer:  - error in log file from IE8 and IE9

    I just updated an existing slide show that was created several months back. Since loading my new set of files to our web server, we keep getting the following error in our server log files when someone loads our page in IE8 and IE9:
    File does not exist: /www/public_html/null, referer:
    One of our programmers tracked the error to this line of code, but we're not sure what's causing it:
    Muse.Utils.addSelectorFn('#slideshowu70', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {autoPlay:true,displayInterval:6000,slideLinkStopsSlideShow:false,transitionStyle:'horizo ntal',lightboxEnabled_runtime:false,shuffle:false}); });/* #slideshowu70 */
    Any suggestions?
    Thanks!

    The errors aren't showing up on the client side, only in the server access logs. Every time the page is loaded with IE8 or IE9 and the Muse.Utils.addSelectorFn with the #slideshowu70 line is hit, it generates four errors in the server access logs.
    Our admin guy pulled the errors from where it was clicked on from the Adobe forum. He said it also appeared that you tested it with www added to the url (if this was when you were testing it)...
    [Mon Feb 04 13:58:57 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:00 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:08 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:33 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    [Mon Feb 04 13:59:43 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    The reason we find it strange is because it did not result in errors with the previous version of the slideshow. The only thing that changed this time around is that I removed some slides and added additional ones, but I noticed that there is a lot of difference in the code and even the scripts that are used. And I did copy over all of the scripts, css files, etc., so it's using all of the new source files.
    I was hoping it was something that you guys had noticed if you review the access logs when you're testing. While it works perfectly on the client side, the IT guys do go through our access logs, so it would be nice to eliminate the errors.
    Thanks for looking at it!

  • File does not exist, SMTP permanent error

    Hi All,
    I got stuck with this error, please help me on this.
    Mine is windows OS, apps 11.5.10.2
    I have a cocncurrent program out file (.out) in out directory and also the same file with naming convention 'name_concurrenrequestid_1.EXCEL' extension in the same directoy. I need to send this EXCEL file as attachment to email id in windows environment. Whenver submit the request is giving the error.
    File Does Not Exist
    Error in Send Mail: ORA-29279: SMTP permanent error: 501 5.5.4 Invalid Address.
    I verified the file , it is already existed in the directory. Why did it not recognized the file. I tried the below query in toad,, but got the 'FALSE' for %APPLCSF, and got the TRUE for custom directory which has the same file
    declare
    v_boolean BOOLEAN;
    v_Len NUMBER;
    v_Block NUMBER;
    BEGIN
    utl_file.fgetattr('%APPLCSF%\%APPLOUT', 'name_concurrentreuestid_1.EXCEL', v_boolean, v_Len, v_Block);
    if v_boolean then
    dbms_output.put_line('v_boolean: TRUE');
    dbms_output.put_line('L:' || to_char(v_Len));
    dbms_output.put_line('B:' || to_char(v_Block));
    else
    dbms_output.put_line('EX: FALSE');
    end if;
    END;
    I do have full access on this folder. Once it recognizes the file I can send the mail.
    Appreciate any help on this. Plz...........
    Thanks,
    JP

    Thank you for the quick reply Srini.
    But my email program is working fine if I change the path from %APPLCSF%APPLOUT to Customtop\out directory to identify the file. It was sent the attachment also to my email id.
    But my requirement is I need to send the file from Out directory not from customtop out . Even it is not recognized the .out file using this UTL_File.fgetattr() in out directory.
    Appreciate any furthur assistance.
    Thanks,
    JP

  • 10g - File does not exist: .../Apache/Apache/htdocs/dsl/apex/apex_admin

    We are on 10.2.0.3, and created a separate (dedicated) ORACLE_HOME for the App Exp 3.0.1 installation.
    We used the OUI to install the Companion version of Apache (HTTP server 1.3) on our IBM AIX5L machine 9119-595 (64 bit) and we set all appropriate conf files (dads.conf, httpd.conf, don't have a 'marvel' file) to port 3232. Successfully ran the command "EXEC DBMS_XDB.SETHTTPPORT(3232);" in the App Exp repository DB. We restarted Apache (HTTP server).
    The Oracle Apache HTTP web page successfully displays at http://bbbbb.oooo.com:3232/ .
    When trying to start the App Exp Aministrator at "http://bbbbb.oooo.com:3232/dsl/apex/apex_admin" we get "The page cannot be found" (HTTP 404 - File not found, Internet Explorer).
    The Apache error log "/Apache/Apache/logs>view error_log.1205496000" contains the following lines:
    [Fri Mar 14 15:21:31 2008] [error] [client 10.30.24.9] [ecid:  1205526091:10.9.8.244:5546130:0:485,0] File does not exist: /seamnt/prd203
    /u01/oracle/product/10_2_http_server/Apache/Apache/htdocs/dsl/apex/apex_admin
    Here is our dads.conf file contents (password hidden, but does work to login to APEX_PUBLIC_USER via SQL*plus):
    # ============================================================================
    # mod_plsql DAD Configuration File
    Alias /i/ "/u01/oracle/product/10_2_http_server/Apache/Apache/images/"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/apex>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDatabaseConnectString bbbbb.oooo.seagate.com:3232:okdedw1 ServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword XXXXXXX
    Allow from all
    </Location>
    All the following conf files seem to contain the suggested references to other conf files:
    httpd.conf
    # Include the Oracle configuration file for custom settings
    include "/seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/Apache/conf/oracle_apache.conf"
    "plsql.conf" 37 lines, 1722 characters
    include /seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/modplsql/conf/dads.conf
    include /seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/modplsql/conf/cache.conf
    "cache.conf" [Read only] 21 lines, 728 characters
    PlsqlCacheDirectory /seamnt/prd203/u01/oracle/product/10_2_http_server/Apache/modplsql/cache
    That directory "dsl" does NOT exist under the "htdocs" directory.
    Any ideas what's wrong ("File does not exist: .../Apache/Apache/htdocs/dsl/apex/apex_admin) ?
    That directory "dsl" does NOT exist under the "htdocs" directory.
    okdev9a#:/u01/oracle/product/10_2_http_server/Apache/Apache/htdocs>ls -la
    total 754
    drwxr-x--- 9 oracle dba 2048 Mar 13 15:04 .
    drwxr-x--- 16 oracle dba 1024 Mar 13 15:16 ..
    -rw-r----- 1 oracle dba 5927 Jan 22 2005 NFIntro.htm.de
    -rw-r----- 1 oracle dba 5864 Apr 26 2005 NFIntro.htm.en
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 NFIntro.htm.es
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 NFIntro.htm.es_ES
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 NFIntro.htm.fr
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 NFIntro.htm.fr_CA
    -rw-r----- 1 oracle dba 5864 Apr 26 2005 NFIntro.htm.htm
    -rw-r----- 1 oracle dba 5989 Jan 22 2005 NFIntro.htm.it
    -rw-r----- 1 oracle dba 5782 Jan 22 2005 NFIntro.htm.ja
    -rw-r----- 1 oracle dba 5902 Jan 22 2005 NFIntro.htm.ko
    -rw-r----- 1 oracle dba 5973 Jan 22 2005 NFIntro.htm.pt_BR
    -rw-r----- 1 oracle dba 5788 Jan 22 2005 NFIntro.htm.zh_CN
    -rw-r----- 1 oracle dba 5806 Jan 22 2005 NFIntro.htm.zh_TW
    -rw-r----- 1 oracle dba 5927 Jan 22 2005 OHSDemos.htm.de
    -rw-r----- 1 oracle dba 6708 Apr 26 2005 OHSDemos.htm.en
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 OHSDemos.htm.es
    -rw-r----- 1 oracle dba 6049 Jan 22 2005 OHSDemos.htm.es_ES
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 OHSDemos.htm.fr
    -rw-r----- 1 oracle dba 5962 Jan 22 2005 OHSDemos.htm.fr_CA
    -rw-r----- 1 oracle dba 6708 Apr 26 2005 OHSDemos.htm.htm
    -rw-r----- 1 oracle dba 5989 Jan 22 2005 OHSDemos.htm.it
    -rw-r----- 1 oracle dba 5822 Jan 22 2005 OHSDemos.htm.ja
    -rw-r----- 1 oracle dba 5902 Jan 22 2005 OHSDemos.htm.ko
    -rw-r----- 1 oracle dba 5973 Jan 22 2005 OHSDemos.htm.pt_BR
    -rw-r----- 1 oracle dba 5788 Jan 22 2005 OHSDemos.htm.zh_CN
    -rw-r----- 1 oracle dba 5806 Jan 22 2005 OHSDemos.htm.zh_TW
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 Tab_files
    drwxr-xr-x 2 oracle dba 96 Mar 13 14:59 _pages
    drwxr-x--- 2 oracle dba 96 Mar 13 15:04 dav_public
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:59 error_docs
    -rw-r--r-- 1 oracle dba 15326 Mar 13 15:04 index.html.de
    -rw-r--r-- 1 oracle dba 14643 Mar 13 15:04 index.html.en
    -rw-r--r-- 1 oracle dba 15724 Mar 13 15:04 index.html.es
    -rw-r--r-- 1 oracle dba 15724 Mar 13 15:04 index.html.es_ES
    -rw-r--r-- 1 oracle dba 15481 Mar 13 15:04 index.html.fr
    -rw-r--r-- 1 oracle dba 15481 Mar 13 15:04 index.html.fr_CA
    -rw-r--r-- 1 oracle dba 14643 Mar 13 15:04 index.html.html
    -rw-r--r-- 1 oracle dba 15199 Mar 13 15:04 index.html.it
    -rw-r--r-- 1 oracle dba 18542 Mar 13 15:04 index.html.ja
    -rw-r--r-- 1 oracle dba 17428 Mar 13 15:04 index.html.ko
    -rw-r--r-- 1 oracle dba 15472 Mar 13 15:04 index.html.pt_BR
    -rw-r--r-- 1 oracle dba 16961 Mar 13 15:04 index.html.zh_CN
    -rw-r--r-- 1 oracle dba 17134 Mar 13 15:04 index.html.zh_TW
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 ohs_images
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 sol
    drwxr-x--- 2 oracle dba 1024 Mar 13 14:57 win
    Any ideas what's wrong ("File does not exist: .../Apache/Apache/htdocs/dsl/apex/apex_admin) ?
    Thanks!!!
    Scott.
    Message was edited by: Scott McMillan
    user625897

    Your dads.conf says
    <Location /pls/apex>
    but you say
    "When trying to start the App Exp Aministrator at "http://okdev9a.okla.com:3232/dsl/apex/apex_admin" "
    Try http://okdev9a.okla.com:3232/pls/apex
    instead of dsl/apex..
    Cheers,
    Vidar

Maybe you are looking for