How can I use firefox to access Oracle's 10g Express Edition Database script editor?

I have installed Oracle's 10g Express Edition (xe) Database in my computer, which is running Ubuntu 10.04 64-bit. I can access the database through the command line and by using the web interface on Firefox. However, the script editor doesn't work with Firefox. The scripts are not shown and I'm unable to edit them.

I have installed Oracle's 10g Express Edition (xe) Database in my computer, which is running Ubuntu 10.04 64-bit. I can access the database through the command line and by using the web interface on Firefox. However, the script editor doesn't work with Firefox. The scripts are not shown and I'm unable to edit them.

Similar Messages

  • How can I use firefox between windows 7 & windows XP on a network, where we are using Samba server. If a user logs on different workstation(and OS) with same account.

    we have a Linux fileserver with Samba share and have several users.
    The users tend to be in different locations and need to login at different workstations, sometimes the workstation may be WindowsXP and othertimes it is windows7.
    How can we use Firefox & Thunderbird in this situation.
    I find that Windows7 uses compressed files to store the location information.
    when a user logs on to win7 it creates a new account.

    we have a Linux fileserver with Samba share and have several users.
    The users tend to be in different locations and need to login at different workstations, sometimes the workstation may be WindowsXP and othertimes it is windows7.
    How can we use Firefox & Thunderbird in this situation.
    I find that Windows7 uses compressed files to store the location information.
    when a user logs on to win7 it creates a new account.

  • Newly installed oracle 10g express edition database

    Hai to all
    I have fedora 15 operating system with oracle 10g express edition database installed .. I already have working knowledge in mysql database .. my question is that when i opened oracle database via sql developer , then by expanding tables tab on left side .. I can able to see some table that are created by default as the following:
    AQ$_INTERNET_AGENT_PRIVS
    DEF$_AQCALL
    LOGMNR_AGE_SPILLS$
    My question is that . Can i drop all these tables ??? . By doing so, will that create any problems ..
    Any idea will help me ..
    thanks in advance to allllllll

    If You wont to see how Oracle drop tables
    - create Youre schema
    create user test_user ... ;
    -create table
    create table test_user.test_table ... ;
    drop table
    table test_user.test_table ;
    Regards,
    Pavel
    Edited by: Pavel on May 22, 2012 10:26 PM

  • Oracle DB 10g express edition & APEX for application development for free?

    Can we use Oracle DB 10g express edition & APEX for application development for free? Are there any license fees?
    Thanks

    Hi,
    both Oracle DB 10g express edition & APEX for application development is free.
    Regards,
    Kartik Patel
    http://patelkartik.blogspot.com/
    http://apex.oracle.com/pls/apex/f?p=9904351712:1

  • How can I use Firefox WITHOUT updating it? I do not have the "authority" on my work computer to do this, so I can't use firefox.

    I do not have the "authority" on my work computer to do this, so I can't use firefox at work. Also, some of our programs do not work with the latest version of firefox..

    Welcome to the Apple community.
    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). It also requires the computer to be using wi-fi.

  • Using Oracle Developer Suite 10g with the 10g Express Edition Database

    I'm new to Oracle and I'm taking an SQL college level course using a text book entitled "Guide to Oracle 10g". Our text book came with Oracle Developer Suite 10g (9.0.4.0.1) but no database. We adopted the 10g Express Edition (XE) as the database. I have both the database and the Developer Suite loaded on Windows XP Pro. I've been using the database for months now and it runs fine and the Developer Suite installed OK.
    However, I would like to use some of the Developer Suite apps (for learning purposes) with the database but I can't seem to log on to the database through the Developer apps when I open them and use my 10g XE database user-name and password. For starters, I would like to see if I could use the edition of SQLPlus (release 9.0.1.4.0) that comes with the Developer Suite because it has configuration options that are not available in the SQLPlus command line version that 10g XE contains (which otherwise works fine).
    When I open SQLPlus (Developer Suite Version) and try to log on with my database user name and password (and no host string), I get the error:
    ORA-12560: TNS:protocol adapter error
    I did search the discussion forum first and also reviewed some Oracle pdf's including the concepts pdf but came up empty. I would greatly appreciate any suggestions on how to succeed or a determination of the compatibility of 10g XE with the Developer Suite. Thanks kindly.

    I think your last idea might be helpful at this point and in case it matters, they are both installed on a sinlge machine (laptop). Thanks in advance:
    Here is the Developer Suite tnsnames.ora:
    # TNSNAMES.ORA Network Configuration File: C:\DevSuiteHome\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = HOSTNAME)(PORT = 1521))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    Here is the 10G XE tnsnames.ora:
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = obw)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    )

  • Unable to connect to the 10g Express edition database in oracle forms

    hi,
    i have installed Oracle Database 10g Express Edition and oracle 10g developer suite. i need to work on oracle forms by connecting to the database of the 10g express edition but unable to do so as i am not aware of the database name or SID.
    can any one tell me how to connect to the above database in oracle forms by specifying username, password and database name ?
    Thanks,
    Viddu

    specifying username, passwordSet up your database user, easy way is to grant them the resource role (*strongly* suggest not using sys nor system for user data) here's one command line sqlplus method:
    $ sqlplus /nolog
    SQL> connect system -- or connect /as sysdba; if system credential is lost/forgotten
    SQL> create user username identified by userpasswd default tablespace <tablespace> temporary tablespace <temp tablespace>;
    SQL> grant connect, resource to username;
    SQL> exit;
    > the database name or SID
    Its XE "out of the box", with a servicename is XE as well, using the default port 1521 on the host. The install should also set up a tns alias named, oddly enough, XE, with those connection details from the install. It comes with a USERS data tablespace, and TEMP temporary tablespace.
    So after the user is created, i.e. with sqlplus:
    SQL> connect username/passwd
    or if your session is not on the host where the database is running, with a tns alias pointing to the XE install host in place:
    SQL> connect username/passwd@xe
    From a different client machine you will need a tnsnames.ora entry defining an alias, it could be any name you would prefer to use as long as the entry points the the database host and port with the correct ORACLE_SID or the database service name.
    And don't forget to glance over the documentation, it is thorough and helpful as well http://www.oracle.com/pls/xe102/homepage

  • Oracle Client 10g Express Edition (ADO, C++, Visual Studio 2008)

    OS: Windows XP SP2
    I made a test programm allowing to work with Oracle 10g Express Edition. Connection with server works, commands are followed, but at the exit from function wmain Visual Studio it buzzez (слышал такое, если нет, то посмотри по другому словарю?) for some time (around 5 minutes) and module mistake crt0dat.arises in __crtExitProcess. function.
    You can have a look at the mistake here: http://img365.imageshack.us/img365/2125/oravssi1.jpg
    Where the mistake can be?
    Connections with MSSQL и MySQL servers work without problems with the stated algorithm.
    #ifndef _WIN32_WINNT
         #define _WIN32_WINNT 0x0501
    #endif
    #include <Windows.h>
    #ifdef _DEBUG
         #define _CRTDBG_MAP_ALLOC
         #include <crtdbg.h>
    #else
         #define _RPTW0
         #define _RPTW1
         #define _CRT_ERROR 1
    #endif
    #import "c:\Program Files\Common Files\system\ado\msado15.dll" no_namespace rename("EOF", "EndOfFile")
    INT wmain(INT iArgC, PWCHAR pwcArgV[])
         // COM init
         if (S_OK != CoInitializeEx(NULL, COINIT_MULTITHREADED))
              _RPTW0(_CRT_ERROR, L"CoInitialize");
              return -1;
         // DB connect
         _ConnectionPtr pCnn;
         while (TRUE)
              if (S_OK != pCnn.CreateInstance(__uuidof(Connection)))
                   _RPTW0(_CRT_ERROR, L"pCnn.CreateInstance");
                   break;
              try
                   _bstr_t strCnn(L"DRIVER={Oracle in XEClient};dbq=PORTAL:1521/XE;uid=zorkey;pwd=******;");
                   pCnn->Open(strCnn, L"", L"", adConnectUnspecified);
              catch (_com_error& e)
                   _RPTW1(_CRT_ERROR, L"pCnn->Open (%s)", e.Description().GetBSTR());
              try
                   //pCnn->Execute(L"INSERT INTO ZORKEY_COMPUTER(COMPUTERID, COMPUTERNAME) VALUES(2, 'TEST')", NULL, adConnectUnspecified);
              catch (_com_error& e)
                   _RPTW1(_CRT_ERROR, L"pCnn->Execute (%s)", e.Description().GetBSTR());
              if (adStateOpen != pCnn->GetState())
                   break;
              break;
         // DB close
         if (NULL != pCnn)
              if (adStateClosed != pCnn->GetState())
                   pCnn->Close();
              pCnn.Release();
         CoUninitialize();
         return 0;
    }Formatted code can be seen at http://rafb.net/p/Rvz1wL74.html

    You are right. You should use OCCI 11g to work with VS2008. Download the compatible libraries from here: http://www.oracle.com/technology/tech/oci/occi/occidownloads.html

  • Oracle 10g express Edition Database

    We are using oracle 10g express edition with a temporary storage space for a class using SQL. When creating and using the database, the data is being deleted after 1 or 2 days and students are having to start over, creating tables and inserting data. Any suggestions?

    suggestions?Backups?
    Or, as long as the DDLs and DMLs don't take long, rerunning table create and insert SQLs would probably be much faster than setting up the database(s) in archivelog mode and copying datafile/archivelog files or rman backup files someplace that won't get reimaged every other day.

  • Issue while installing oracle Databse 10g express edition

    Hi,
    when i am trying to install Oracle database 10g express edition, it is hanging again and again on one step.
    Step is
    "Creating and starting Serivices for ORacle database 10g express edition".
    Could any one can help me out in this regard.
    Thanks

    Your answer might be here:
    Creating and starting services for Oracle Database 10g express edition
    Is this the first or second installation attempt?
    Edited by: Markus Waldorf on Sep 20, 2010 1:59 PM
    A better link with a solution:
    Oracle XE installation wizard stop at "creating and starting services ..."

  • Oracle database 10g express edition-database home page problem.

    I've installed Oracle database 10g express edition.
    When I try to launch to the database home page,a login pops up saying "connecting to 127.0.0.1" expecting an user and password.
    I tried my system and sys login,but both were unsuccessful.
    Could someone help me please.?
    Thanks,
    Bhagat

    Feel free to join us in the XE forum at Oracle Database Express Edition (XE)
    If you're not registered there, do so using http://www.oracle.com/technology/xe/registration
    Also feel free to use the documentation at http://www.oracle.com/pls/xe102/homepage, specifically the "Getting Started Guide"
    You need to log in using SYSTEM and the password you supplied during install.

  • How can I use javascript to access netui data-repeater item?

    I have a 2-dim table of <netui: checkbox> using a <netui data-repeater> to interate over a contact email (column) and an event (rows).
              My problem is that I need to have a select all checkbox at the bottom of each column (per email) and be able to select all event for an email (when checked) and deselect all when the checkbox is unchecked.
              I can do it in java page flow but I can't have a page refresh.
              I want to do it on the page with javascript. The problem is that using
              document[getNetuiTagName("aform", this)][getNetuiTagName("email1", this)].checked
              with the "tagId" in each <netui> tag I can't access each iteration of the data repeater (I only get the last one).
              What I need is a reference to each repeater element. I do not know how many rows or columns I will have (based on the data).
              Is there any way to reference the obeject itself in javascript so I can loop through the items in the netui data-repeater?
              This is what is rendered in the html netui mapping:
              netui_names.con1="portlet_2_3wlw-checkbox_key:{actionForm.opts[4].cons[1].selContact}"
              I really want to be able to access this and loop through the arrays for opts (event) and cons(email)
              Here's the code:
              <netui:form action="submitEvents" tagId="eform" focus="">
              <table>
              <tr>
              <td>
              <table id="eTable" cellpadding="2" cellspacing="1" border="0">
              <tr bgcolor="#cccccc" class="BlackHeavy8">
              <!-- <td>Selected</td> -->
              <td colspan="2">Event</td>
              <netui-data:repeater dataSource="{pageFlow.contacts}" defaultText="No contacts configured.">
              <netui-data:repeaterHeader>
              </netui-data:repeaterHeader>
              <netui-data:repeaterItem>
              <netui-data:choiceMethod object="{pageFlow}" method="getAddHeader">
              <netui-data:methodParameter value="{container.item.contact_icon}" />
              </netui-data:choiceMethod>
              <netui-data:choice value="default">
              <td nowrap="true" bgcolor="#FFCCCC"><netui:image src="{container.item.contact_icon}"/>
              <netui:label value="{container.item.contact_value}" defaultValue=" "></netui:label>
              </td>
              </netui-data:choice>
              <netui-data:choice value="blue">
              <td nowrap="true" bgcolor="#D8EBFE"><netui:image src="{container.item.contact_icon}"/>
              <netui:label value="{container.item.contact_value}" defaultValue=" "></netui:label>
              </td>
              </netui-data:choice>
              <netui-data:choice value="green">
              <td nowrap="true" bgcolor="#CCFFCC"><netui:image src="{container.item.contact_icon}"/>
              <netui:label value="{container.item.contact_value}" defaultValue=" "></netui:label>
              </td>
              </netui-data:choice>
              <netui-data:choice value="yellow">
              <td nowrap="true" bgcolor="#FFFFCC"><netui:image src="{container.item.contact_icon}"/>
              <netui:label value="{container.item.contact_value}" defaultValue=" "></netui:label>
              </td>
              </netui-data:choice>
              </netui-data:repeaterItem>
              <netui-data:repeaterFooter></netui-data:repeaterFooter>
              </netui-data:repeater>
              </tr>
              <tr>
              <td colspan="7">
              <netui-data:repeater dataSource="{actionForm.opts}">
              <netui-data:repeaterHeader>
              </netui-data:repeaterHeader>
              <netui-data:repeaterItem>
              <netui-data:choiceMethod object="{pageFlow}" method="isEvenRow">
              <netui-data:methodParameter type="int" value="{container.index}" />
              </netui-data:choiceMethod>
              <netui-data:choice value="true">
              <tr class="BlackNorm8">
              <!-- <td align="center"> -->
              <!-- </td> -->
              <td colspan="2">
              <netui:label value="{container.item.eventName}" />
              <netui:hidden dataSource="{container.item.eventId}" />
              </td>
              <netui-data:repeater dataSource="{container.item.cons}">
              <netui-data:repeaterHeader>
              </netui-data:repeaterHeader>
              <netui-data:repeaterItem>
              <netui-data:choiceMethod object="{pageFlow}" method="getAddHeader">
              <netui-data:methodParameter value="{container.item.contact_icon}" />
              </netui-data:choiceMethod>
              <netui-data:choice value="default">
              <td align="center" bgcolor="#FFCCCC" >
              <netui:checkBox tagId="con1" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden dataSource="{container.item.contact_id}" tagId="conid1" />
              </td>
              </netui-data:choice>
              <netui-data:choice value="blue">
              <td align="center" bgcolor="#D8EBFE" >
              <netui:checkBox id="con2" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden dataSource="{container.item.contact_id}" tagId="conid2" />
              </td>
              </netui-data:choice>
              <netui-data:choice value="green">
              <td align="center" bgcolor="#CCFFCC" >
              <netui:checkBox tagId="con3" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden dataSource="{container.item.contact_id}" tagId="conid3" />
              </td>
              </netui-data:choice>
              <netui-data:choice value="yellow">
              <td align="center" bgcolor="#FFFFCC" >
              <netui:checkBox tagId="con4" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden dataSource="{container.item.contact_id}" tagId="conid4" />
              </td>
              </netui-data:choice>
              </netui-data:repeaterItem>
              <netui-data:repeaterFooter>
              </netui-data:repeaterFooter>
              </netui-data:repeater>
              </tr>
              </netui-data:choice>
              <netui-data:choice value="false">
              <tr class="BlackNorm8" bgcolor="#eeeeee">
              <!--<td align="center">-->
              <!--</td>-->
              <td colspan="2">
              <netui:label value="{container.item.eventName}" />
              <netui:hidden dataSource="{container.item.eventId}" />
              </td>
              <netui-data:repeater dataSource="{container.item.cons}">
              <netui-data:repeaterHeader>
              </netui-data:repeaterHeader>
              <netui-data:repeaterItem>
              <netui-data:choiceMethod object="{pageFlow}" method="getAddHeader">
              <netui-data:methodParameter value="{container.item.contact_icon}" />
              </netui-data:choiceMethod>
              <netui-data:choice value="default">
              <td align="center" bgcolor="#FFCCCC" >
              <netui:checkBox tagId="conalt1" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden tagId="conidalt1" dataSource="{container.item.contact_id}" />
              </td>
              </netui-data:choice>
              <netui-data:choice value="blue">
              <td align="center" bgcolor="#D8EBFE" >
              <netui:checkBox tagId="conalt2" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden tagId="conidalt2" dataSource="{container.item.contact_id}" />
              </td>
              </netui-data:choice>
              <netui-data:choice value="green">
              <td align="center" bgcolor="#CCFFCC" >
              <netui:checkBox tagId="conalt3" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden tagId="conidalt3" dataSource="{container.item.contact_id}" />
              </td>
              </netui-data:choice>
              <netui-data:choice value="yellow">
              <td align="center" bgcolor="#FFFFCC" >
              <netui:checkBox tagId="conalt4" dataSource="{container.item.selContact}" defaultValue="{container.item.selContact}" />
              <netui:hidden tagId="conidalt4" dataSource="{container.item.contact_id}" />
              </td>
              </netui-data:choice>
              </netui-data:repeaterItem>
              <netui-data:repeaterFooter>
              </netui-data:repeaterFooter>
              </netui-data:repeater>
              </tr>
              </netui-data:choice>
              </netui-data:repeaterItem>
              <netui-data:repeaterFooter>
              </netui-data:repeaterFooter>
              </netui-data:repeater>
              Â </td>
              </tr>
              <!-- Select All Checkboxes -->
              <tr bgcolor="#cccccc" class="BlackHeavy8">
              <!-- <td>Selected</td> -->
              <td colspan="2">Select ALL</td>
              <netui-data:repeater dataSource="{pageFlow.contacts}" defaultText=" ">
              <netui-data:repeaterHeader>
              </netui-data:repeaterHeader>
              <netui-data:repeaterItem>
              <netui-data:choiceMethod object="{pageFlow}" method="getAddHeader">
              <netui-data:methodParameter value="{container.item.contact_icon}" />
              </netui-data:choiceMethod>
              <netui-data:choice value="default">
              <td align="center" nowrap="true" bgcolor="#FFCCCC">
              <netui:hidden dataSource="{container.item.contact_id}" tagId="chbox1" />
              <input type="checkbox" value="false"
              onclick="selectAllEvents('chbox1')">Select ALL
              </td>
              </netui-data:choice>
              <netui-data:choice value="blue">
              <td align="center" nowrap="true" bgcolor="#D8EBFE">
              <netui:hidden dataSource="{container.item.contact_id}" tagId="chbox2" />
              <input type="checkbox" value="false"
              onclick="selectAllEvents('chbox2')">Select All
              </td>
              </netui-data:choice>
              <netui-data:choice value="green">
              <td align="center" nowrap="true" bgcolor="#CCFFCC">
              <netui:hidden dataSource="{container.item.contact_id}" tagId="chbox3" />
              <input type="checkbox" value="false" onclick="selectAllEvents('chbox3')">Select All
              </td>
              </netui-data:choice>
              <netui-data:choice value="yellow">
              <td align="center" nowrap="true" bgcolor="#FFFFCC">
              <netui:hidden dataSource="{container.item.contact_id}" tagId="chbox4" />
              <input type="checkbox" value="false" onclick="selectAllEvents('chbox4')">Select All
              </td>
              </netui-data:choice>
              </netui-data:repeaterItem>
              <netui-data:repeaterFooter></netui-data:repeaterFooter>
              </netui-data:repeater>
              </tr>
              <!-- END Select ALL checkboxes -->
              </table>
              </td>
              <tr align="right">
              <td>
              <netui:button type="submit" value="Cancel" action="begin" styleClass="BlackNorm8"></netui:button>
              <netui:button value="Update" styleClass="BlackNorm8"/>
              </tr>
              </table>
              </netui:form>

    hi ,
    i dont know anything about delphi but from the experience from VB if the connection to oracle in delhpi doesnt recognise object type data field. Then try using OO4O drivers from oracle.if u use these drivers then u can access the sdo_geometry field !
    Hope this helps
    Vikesh

  • How can i use Firefox as my default browser but still use/see my original MSN email account without having to go through hotmail?

    I would like to sign on to the internet using Firefox, MSN Internet Explorer, but still be able to go to my MSN account, not thru Hotmail...

    You can place that bookmark on the Bookmarks Toolbar (View > Toolbar > Bookmarks Toolbar) for easy access.
    See also [[Bookmarks]]

  • Turbo tax says i need ie6 or higher to update. how can i use firefox

    turbo tax says it requires internet explorer 6 or higher to download updates. even if i use a different browser, i need ie6. do you have a solution how i can use firefox ? I don't want ie anything

    You can't. As the-edmeister said it has to do with ActiveX controls. When you go to MS's Updates page it scans for the ActiveX control. If you don't have it you can't update any MS program.
    Just another way MS keeps annoying people.

  • How can i use raw device in oracle 9.2.0.4

    can i use "create tablespace XXX datafile '/dev/raw1' ..." to use raw device for tablespace? Or i should use "ln -s /dev/raw1 /oradata/xxx.dbf"?
    does raw device as same as "xxx.dbf" is limited 4GB ?
    pool english.

    hi,
    as far as windows NT OS is concerned,,there's a utility (OCOPY) to store ur datafiles on to raw devices,,,but u cant directly access that datafiles for runtime databases,,its just for backup purposes..
    umar

Maybe you are looking for

  • How can I STOP mail from syncing with .mac????

    I don't have a .mac account, I will never have a .mac account, I have in mail prefs BOTH boxes under "synchronize with other computers using .mac" unchecked, and yet Mac Mail tries to tie up my entire system "synchronizing with .mac" all the time, es

  • Does the Ipod play Video?

    I am trying to play mpeg 4 video on my ipod and it locks up after 4 to 5 minutes. The video plays perfect under itunes but is fails on the Ipod. I can lock it up very quickly by fast forwarding into the video. The drive will spin as if it is lost. Mo

  • How is the sigma calculated in monte carlo analysis?

    Hi All, I wonder how the Sigma is calculated in Monte Carlo Analysis. I read the User Guide, it said the Sigma is related to Resistence value. But seems the process of calculating the Sigma in User Guide is not correct... Would anyone be able to prov

  • BG image swap won't work - any ideas why not?

    http://designerandpublisher.com/test-bg/test-bg-page01.html Hi - I'm trying to set up a background image swap where when the user is viewing the site and clicking on links, the background image will change.  You'll see the soldier one there now and I

  • ITunes Producer errors for unsupported mime and multiple root file

    I've been working on this for hours and can't seem to find an answer for why these keep coming up: ERROR ITMS-9000: "Unsupported mime type for 9781592996322.epub: null" at Book (MZItmspBookPackage) ERROR ITMS-9000: "META-INF/container.xml in 97815929