Saving an Image to an Oracle Database over the Internet

I would like to know how to transfer an image over the Internet and save that image to an Oracle Database. That is I am trying to make it so that a user can connect to the Internet and select an image file form their PC in TIFF, JPEG, or some other format. Next, I would like to save this image to an Oracle 7.3.4 Database in a LongRaw data type. This image will need to be save into a certain record in a table that I created. In the next few months we will be upgrading to Oracle 8 that uses Blob data type. Any one who knows how this can be done, please let me know.

Yes, that's right. Here is the pertinent code:
In the flax app:
private function captureImg(imgEnc:IImageEncoder):void { 
var ohSnap:ImageSnapshot;ohSnap = ImageSnapshot.captureImage(img, 0, imgEnc);
textArea.text = ImageSnapshot.encodeImageAsBase64(ohSnap);
InsertImage(textArea.text);
In the HTTP service AS module:
private  
function InsertImage(sImageCoded:String):void { var sQry:String;sQry =  
"INSERT INTO image (lImageId, blbBitMap, txtImage, lRecipeId) " sQry +=
"VALUES(0, '" +sImageCoded +"', 'text', 23)"  
//Alert.show(sQry);mysqlQuery(sQry,
"InsertImage");}
As mentioned previously, an HTTPrequest error is generated although I can enter
the string into the blob manually in MySQL.
Scott

Similar Messages

  • Connecting to a database over the internet

    Hello ,
    Ok heres an interesting question -
    I would like to have an applet running on my browser which needs to connect to a central server over the internet, which in turn will need to connect to a database and query some results. These results will be stored as flat files within the server.
    At the moment, I have a URL that connects to the database via the
    internet and that is working. However I don't think my applet on my browser will be able to create a flat file on that server direclty.
    Could some one please tell me how to go about this problem?
    Shalini

    Yes, put a servlet in between the applet and database. Let the servlet interace with the database on the applet's behalf and write that file on the server side.
    %

  • Replication Manager - Syncing mdb databases over the Internet

    Hai
    I am new to access replication. I have been given the task of syncing two .mdb access 2000 databases with eachother over the internet using Replication Manager 4.0. I keep getting no or little reference on how to to this and was hoping I can get a full tutorial
    on how to sync over the Internet using Replication Manager.

    I think SQL*Net uses port 1525.

  • Reading/writing to remote database over the internet

    Hi,
    We have a hosted APEX application and have a requirement to be able to query and update our local database. I believe our options are:
    - Set up some web services locally and reference them from our hosted APEX app
    - Create a database link from the hosted instance to local instance and query/update the tables directly
    I'm looking for opinions and advice on the best (secure, reliable) way to approach this.
    Thanks,
    Andrew.

    Yes, put a servlet in between the applet and database. Let the servlet interace with the database on the applet's behalf and write that file on the server side.
    %

  • Not able to connect remote oracle database over VPN

    I can not connect remote oracle database over VPN. tnsping is ok and it shows the server information of remote database. i can also telnet the 1521 port of remote database server. I can connect the same server when it is located in the same LAN. Please help me out this is very urgent.

    6b6c669e-6baa-45c4-a6dc-444aef2d5e7a wrote:
    I can not connect remote oracle database over VPN. tnsping is ok and it shows the server information of remote database. i can also telnet the 1521 port of remote database server. I can connect the same server when it is located in the same LAN. Please help me out this is very urgent.
    First, this is a forum of volunteers.  There is no "urgent" here.
    "Urgent" means one of two things -
    1) people are dying, or
    2) you have a customer-facing, revenue-producing production system that is down.
    (And to get some perspective on the second case, keep the first in mind.)
    For the first, you call whatever civil emergency service seems appropriate.
    For the second, you open an SR with Oracle - which requires a paid-up support contract. For *them* to consider your problem "urgent", you will need to demonstrate that your problem falls under item #2. I seriously doubt your problem fits that criteria.
    You don't have a support contract?  Now you know the exact dollar figure that your company places on the data.
    That said, you need to understand a few things about your specific problem,
    First, port 1521 is only used by the listener to accept a connection request.  Once it gets that request (and finds that it is for a service (sid) that it knows about, it will fork a server process and tell the requesting client that it can communicate with that server process over some other port .. a randomly chosen port number in the "high" range.  It could be your vpn is blocking that other port, whereas your internal firewall is not.
    But this is just an educated guess since I cannot find "can not connect remote oracle database over VPN" in any error message manual. If you had mentioned the VPN along with an actual oracle error message we could be much more precise in our diagnoses and recommendations.
    ---- edit 22 Sep
    It occurred to me that I just assumed you were using the same client machine in both cases ... a laptop that you use both at work (local network) and home (vpn).  If that assumption is false, there are probably problems with your tns setup on the home (vpn) machine.
    But again, it would be much easier to help if you gave us an actual error message.

  • How to insert an image file in Oracle database

    hi
    can you please tell me how to insert an image file into oracle database????
    suppose there is one image file in c:\pictures\rose.jpg. how to insert that file into database? theoretically i know that will be BFILE type but i dont know how to insert that.
    will be waiting for your reply........
    thanks & regards,
    Priyatosh

    Hello,
    The easiest way to load a blob is to use SQL loader.
    This example comes from the utilities guide:
    LOAD DATA
    INFILE 'sample.dat'
    INTO TABLE person_table
    FIELDS TERMINATED BY ','
    (name CHAR(20),
    1 ext_fname FILLER CHAR(40),
    2 "RESUME" LOBFILE(ext_fname) TERMINATED BY EOF)
    Datafile (sample.dat)
    Johny Quest,jqresume.txt,
    Speed Racer,'/private/sracer/srresume.txt',
    Secondary Datafile (jqresume.txt)
    Johny Quest
    500 Oracle Parkway
    Secondary Datafile (srresume.txt)
    Loading LOBs
    10-18 Oracle Database Utilities
    Speed Racer
    400 Oracle Parkway
    regards,
    Ivo

  • How to insert a image file into oracle database

    hi all
    can anyone guide me how to insert a image file into oracle database now
    i have created table using
    create table imagestore(image blob);
    but when inserting i totally lost don't know what to do how to write query to insert image file

    Hi I don't have time to explain really, I did have to do this a while ago though so I will post a code snippet. This is using the commons file upload framework.
    Firstly you need a multi part form data (if you are using a web page). If you are not using a web page ignore this bit.
    out.println("<form name=\"imgFrm\" method=\"post\" enctype=\"multipart/form-data\" action=\"FileUploadServlet?thisPageAction=reloaded\" onSubmit=\"return submitForm();\"><input type=\"FILE\" name=\"imgSource\" size='60' class='smalltext' onKeyPress='return stopUserInput();' onKeyUp='stopUserInput();' onKeyDown='stopUserInput();' onMouseDown='noMouseDown(event);'>");
    out.println("   <input type='submit' name='submit' value='Submit' class='smalltext'>");
    out.println("</form>"); Import this once you have the jar file:
    import org.apache.commons.fileupload.*;Now a method I wrote to upload the file. I am not saying that this is correct, or its the best way to do this. I am just saying it works for me.
    private boolean uploadFile(HttpServletRequest request, HttpSession session) throws Exception {
            boolean result = true;
            String fileName = null;
            byte fileData[] = null;
            String fileUploadError = null;
            String imageType = "";
            String error = "";
            DiskFileUpload fb = new DiskFileUpload();
            List fileItems = fb.parseRequest(request);
            Iterator it = fileItems.iterator();
            while(it.hasNext()){
                FileItem fileItem = (FileItem)it.next();
                if (!fileItem.isFormField()) {
                    fileName = fileItem.getName();
                    fileData = fileItem.get();
                    // Get the imageType from the filename extension
                    if (fileName != null) {
                        int dotPos = fileName.indexOf('.');
                        if (dotPos >= 0 && dotPos != fileName.length()-1) {
                            imageType = fileName.substring(dotPos+1).toLowerCase();
                            if (imageType.equals("jpg")) {
                                imageType = "jpeg";
            String filePath = request.getParameter("FILE_PATH");
            session.setAttribute("filePath", filePath);
            session.setAttribute("fileData", fileData);
            session.setAttribute("fileName", fileName);
            session.setAttribute("imageType", imageType);
            return result;  
         } And now finally the method to actually write the file to the database:
    private int writeImageFile(byte[] fileData, String fileName, String imageType, String mode, Integer signatureIDIn, HttpServletRequest request) throws Exception {
            //If the previous code found a file that can be uploaded then
            //save it into the database via a pstmt
            String sql = "";
            UtilDBquery udbq = getUser(request).connectToDatabase();
            Connection con = null;
            int signatureID = 0;
            PreparedStatement pstmt = null;
            try {
                udbq.setUsePreparedStatements(true);
                con = udbq.getPooledConnection();
                con.setAutoCommit(false);
                if((!mode.equals("U")) || (mode.equals("U") && signatureIDIn == 0)) {
                    sql = "SELECT SEQ_SIGNATURE_ID.nextval FROM DUAL";
                    pstmt = con.prepareStatement(sql);
                    ResultSet rs = pstmt.executeQuery();
                    while(rs.next()) {
                       signatureID = rs.getInt(1);
                    if (fileName != null && imageType != null) {
                        sql = "INSERT INTO T_SIGNATURE (SIGNATURE_ID, SIGNATURE) values (?,?)";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setInt(1, signatureID);
                        pstmt.setBinaryStream(2, is2, (int)(fileData.length));
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
                if(mode.equals("U") && signatureIDIn != 0) {
                    signatureID = signatureIDIn.intValue();
                    if (fileName != null && imageType != null) {
                        sql = "UPDATE T_SIGNATURE SET SIGNATURE = ? WHERE SIGNATURE_ID = ?";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setBinaryStream(1, is2, (int)(fileData.length));
                        pstmt.setInt(2, signatureID);
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
            } catch (Exception e) {
                con = null;
                throw new Exception(e.toString());
            return signatureID;
       }

  • Latency in accessing Citadel Database over the LAN

    Hi! 
    I have two systems running LabVIEW 2013 with DSC 2013 and I am using one of the systems to acquire (using shared variables) and log data internally in the citadel database. I have made an application to visualize this data either locally on the same PC or over the LAN. When I am using the application on the same local machine which is logging the data, its all working fine and very fast. But when I access the same database over the LAN, the application takes a finite amount of time (anything between 2-18 secs everytime) to retrieve and show the data. Since the database size is very small (less than 5MB), logging rate is low (1Hz), number of traces are not much (14 traces), data is boolean, it should not take so much time to show the values over the LAN (the application should be as snappy as it is on the local PC). I am at my wits' end but I am not able to reduce this latency or find any logical reason for it to be present. 
    I specify the logging PC's name whenever I want to retrieve the trace (as shown in the attached picture), I have a feeling that if I replace that with the IP address of the system, things should become fast. But whenever I try this, LabVIEW throws up an error saying that the specified trace/database does not exist.
    I am attaching a pic of the architecture and a simplified image of how I am retrieving the data from the database with this post.
    Any help shall be deeply appreciated.  
    Attachments:
    LAN Architecture.png ‏23 KB
    Accessing database.png ‏14 KB

    To enable external access without VPN, you must assign an external IP address and also map that external IP to the server. Additionally, you must open the associated ports (http) on the firewall (doesnt matter what firewall you use). You will have to map the extranal ip to the internal IP that you have set on the EBS server configuration. In some cases, you have to enable the proxy as well.

  • Oracle over the Internet

    We want to publish Oracle reports on a web site. Oracle database server (8.1.5) is behind the firewall. All necessary ports have been opened in the firewall. 8.1.5 network client files have been installed on the Web server. When trying to connect to a net_service_name, the Oracle server listner.log file reports a successful connection:
    30-MAY-00 16:49:53 * (CONNECT_DATA=(SERVICE_NAME=EDL)(CID=(PROGRAM=C:\Program Files\Oracle\jre\1.1.7\bin\jrew.exe)(HOST=NYM)(USER=pxxx))) * (ADDRESS=(PROTOCOL=tcp)(HOST=20x.20x.xxx.xxx)(PORT=33207)) * establish * EDL * 0
    However, I receive an error at the client end. Here's the entry in sqlnet.log:
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=dataglow)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=EDL)(CID=(PROGRAM=C:\Program Files\Oracle\jre\1.1.7\bin\jrew.exe)(HOST=NYM)(USER=pxxx))(SERVER=dedicated)))
    VERSION INFORMATION:
    TNS for 32-bit Windows: Version 8.1.5.0.0 - Production
    Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 8.1.5.0.0 - Production
    Time: 31-MAY-00 11:07:43
    Tracing to file: D:\orant\network\tools\sqlnet.trc
    Tns error struct:
    nr err code: 0
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 538
    TNS-00538: Message 538 not found; product=NETWORK; facility=TNS
    nt secondary err code: 65
    nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleORCL)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))')))(CONNECT_DATA=(SID=ORCL)(CID=(PROGRA M=C:\Program Files\Oracle\jre\1.1.7\bin\jrew.exe)(HOST=NYM)(USER=pxxx))(SERVER=dedicated)))
    VERSION INFORMATION:
    TNS for 32-bit Windows: Version 8.1.5.0.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 8.1.5.0.0 - Production
    Time: 31-MAY-00 11:07:43
    Tracing to file: D:\orant\network\tools\sqlnet.trc
    Tns error struct:
    nr err code: 0
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Protocol adapter error
    nt secondary err code: 0
    nt OS err code: 0
    Is this a firewall issue? Does anyone have any tips for getting web publishing to work? I've noticed in other postings that Java thin client doesn't work through a firewall. Does jrew.exe referenced in log files imply that we're using Java thin client?
    Thank you.

    You can do this. If I were setting something like this up, I would want Connection Manager installed at the database site to get the connection through the firewall. I would probably want Oracle Advanced Security configured as well to ensure that the data flying over the internet was encrypted.
    Beyond that, I would do a serious security audit of the database. Make sure it's running the latest patchset, that the principle of least privilege has been followed exactly, that data modifications are done through stored procedures and packages, etc.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Using Coherence and Oracle Database as the CacheStore

    We are working on implementing a solution using Coherence and Oracle Database as the CacheStore. We initially implemented the Cache as a distributed-scheme which in turn uses the backing-map-scheme. We are trying to introduce transaction management and I used a scheme-ref in a transactional-scheme to point to an already existing distributed-scheme. However when I bring up the server, my custom coherence-cache-config.xml file is not recognized and Coherence comes up with the default setting. Given below is the snippet of my configuration file.
    1)     I would like to understand why the below configuration doesn’t work and am I doing it the right way? If not, what is the correct way of doing it?
    2)     There are a multiple transaction management options given in the documentation. Which are the ones that will work with a distributed-scheme and read-write-backing-map-scheme?
    3)     If transactional-schemes cannot work with distributed-scheme, what is the best way to have a distributed cache with a oracle database as a cache store?
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>id<cache-name>
    <scheme-name>example-transactional<scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <transactional-scheme>
    <scheme-name>example-transactional</scheme-name>
    <scheme-ref>distributedcustomcache</scheme-ref>
    <thread-count>10</thread-count>
    </transactional-scheme>
    <distributed-scheme>
    <scheme-name>distributedcustomcache</scheme-name>
    <service-name>DistributedCache</service-name>
    <backing-map-scheme>
    <read-write-backing-map-scheme>
    <internal-cache-scheme>
    <local-scheme>
    <!--scheme-ref>categories-eviction</scheme-ref-->
    <scheme-name>inMemory</scheme-name>
    </local-scheme>
    </internal-cache-scheme>
    <cachestore-scheme>
    <class-scheme>
    <class-name>spring-bean:coherenceCacheStore</class-name>
    <init-params>
    <init-param>
    <param-name>setEntityName</param-name>
    <param-value>{cache-name}</param-value>
    </init-param>
    </init-params>
    </class-scheme>
    </cachestore-scheme>
    <!--refresh-ahead-factor>0.5</refresh-ahead-factor-->
    </read-write-backing-map-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>

    Hi,
    If you look at the documentation for transactional-scheme here: http://docs.oracle.com/cd/E24290_01/coh.371/e22837/appendix_cacheconfig.htm#BHCIABHA
    you will see that it says The transactional-scheme element defines a transactional cache, which is a specialized distributed cache. That means that a transactional-scheme is already a distributed-scheme.
    You will see from the same documentation above that there is no way in a transactional-scheme to configure things like cache-stores or listeners or even the backing-map-scheme as these are not supported on a transactional-scheme - so you cannot use a cache store.
    Personally I would not use transactional-scheme unless you have some really big reason to do so - the restrictions far outweigh any perceived advantage of having a transaction. There are better ways to build applications so they do not require transactions, that is what we have been doing for years with Coherence so far, and there is no real reason to change that.
    JK

  • Runinstaller (oracle database) hangs the zone and global zone

    We have recently installed a Solaris 10 (Oracle Solaris 10 8/11 s10s_u10wos_17b SPARC) on the SPARC T4 and create two zones out of it.
    We tried to install oracle database on the zone by running the installer (tried xclock and it works very well so display is not a problem).
    Not only the zone was hang the entire Global zone SPARC server was hang and the only way to bring the system back is to power on and off it.
    -bash-3.2$ ./runInstaller
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 180 MB.   Actual 16058 MB    Passed
    Checking swap space: must be greater than 150 MB.   Actual 16384 MB    Passed
    Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2013-06-18_04-26-04PM. Please wait ...-bash-3.2$ Warning: Cannot convert string "-monotype-arial-regular-r-normal--*-140-*-*-p-*-iso8859-1" to type FontStruct
    [when system hang]
    any ideas?

    Hi,
    Please can you confirm, is it a standalone DB that you are trying to install..
    If yes, What is the DB version?
    The error message is simply unable to obtain the xfont. This link might help you:
    http://answers.yahoo.com/question/index?qid=1006042535728
    Please also refer note:
    Error during Installation of Weblogic Server: Warning: Cannot Convert String "-Monotype-Arial-Regular-R-Normal--*-140-*-*-P-*-Iso8859-1" To Type FontStruct [ID 1361691.1]
    Regards,

  • Where should one install Oracle Database and the Grid Infrastructure in order to adhere to OFA?

    I've downloaded the two zipped install folders for Oracle Database, and the two zipped install folders for the Grid Infrastructure.  The book I'm following for installation says to use one directory for the database, and one directory for the Grid Infrastructure, but it doesn't explain where they should be located in OFA.  Presumably they should both end up somewhere in the same Oracle Base (since everything Oracle related on a single file system should go in the same base, according to my understanding), but it isn't clear where they should be installed in relation to each other.  For example, is the Grid Infrastructure a separate product that gets its own Oracle Home?  Can anyone shed light on this process?
    Also, does it matter to which location the zipped files are unzipped?  For example, are any of these files used after the installation process, or does OFA only care about post-installation location?

    I think this links may be helpful -- ORACLE-BASE - Oracle Database 11g Release 2 RAC On Oracle Linux 5.8 Using VirtualBox, http://www.oracle.com/technetwork/articles/hunter-rac11gr2-iscsi-088677.html.
    OFA -- Optimal Flexible Architecture standard. The standard is a set of configuration guidelines created to ensure well organized Oracle installations that are easier to maintain (http://docs.oracle.com/cd/B28359_01/install.111/b32002/app_ofa.htm#LADBI440).
    It relates to location of the grid and dbms files location. Actually you should specify base directory and follow installer. System will be installed in correct directories.
    It does not matter where you will unzip your distributives. You may delete them after installation to free space.

  • Question about setting the background from an image over the internet.

    Hello ,
    If I want the background of my panel to be set from an image over the internet directly do I just add that URL right away like this :
    protected final static String imagePath = "http://www.engr.wisc.edu/2010/background.jpg";
       icon = new ImageIcon(AuthScreen.imagePath);
            JPanel panel = new JPanel(){
                protected void paintComponent(Graphics g)
              Dimension d = getSize();
              g.drawImage(icon.getImage(), 0, 0, d.width, d.height, null);
              super.paintComponent(g);
              };instead of this :
    protected final static String imagePath = "d:\\javaapps\\bg.jpg";cuz I did that but it isnt working .
    Thanks.

    I don't see how, try it out:
    import java.awt.*;
    import java.awt.image.*;
    import java.net.URL;
    import javax.swing.*;
    import javax.imageio.*;
    public class ForumJunk{
      ForumJunk(){
        JFrame f = new JFrame("Forum Junk");
        JPanel p = new MyJPanel();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.add(p);
        f.pack();
        f.setVisible(true);
      public static void main(String[] args) {
        new ForumJunk();
      class MyJPanel extends JPanel{
        BufferedImage bi = null;
        MyJPanel(){
          try{
            bi = ImageIO.read(new URL("http://www.kodiakfishingbc.com/Editor/assets/chris03resize.jpg"));
            this.setPreferredSize(new Dimension(bi.getWidth(), bi.getHeight()));
          }catch(java.io.IOException e){
            System.out.println(e.toString());
        public void paintComponent(Graphics g){
    //      super.paintComponent(g);
          ((Graphics2D)g).setBackground(Color.green);
          g.clearRect(0, 0, bi.getWidth(), bi.getHeight());
          g.drawImage(bi,0, 0, this);
          super.paintComponent(g);
    }

  • Oracle Developers Over the world

    Hi,
    How many oracle developers over the world using oracle form?
    Regards,

    Well here is one measure - look at the OTN forms and compare the number of active threads or posts - last time I looked Forms was the 5th most active forum....

  • How do I backup my time capsule to another time capsule over the internet

    I have a Time Capsule that I use for backups locally within my own home. My parents have one as well that they use for their backups. Ideally it would be great to have my backups offsite -- if your house burns down it doesn't help that your backups were in the house...
    So is there a way to copy (automatically) the image from one TC to another and vice versa over the internet?

    No, there isn't, and even if there was, it would take forever, or possibly longer. 
    Any backup done over the internet will be quite slow; upload speeds are generally much, much slower than download speeds.  Some of the companies that do internet backups, such as Mozy, Carbonite, etc., actually ship you an external HD for the first backup.  You ship that back, they load it onto their servers, then do "incremental" backups of what's changed over the net.
    In addition, it's not a good idea to back up a backup; any problem with the original will be copied to, and perhaps magnified, on the copy. 
    A much better approach is to get a portable external HD; do backups to it, then take it to a secure off-site location.  See #27 in Time Machine - Frequently Asked Questions for some suggestions, especially the pink box there.
    It still might be a good idea to have some limited data backed-up over the internet, such as relatively-small things and/or things that rarely change.

Maybe you are looking for

  • SE 710a - Can't turn on Sync - Already registered as a USB device?

    My Sony Ericsson S710a was working beautifully until just recently. I can only suspect that the problem has occurred because of a recent software update (I haven't tried to sync the phone for a couple of months). iSync is just plain broke! I've remov

  • Sound no longer works-Audi​o driver not plugged in

    I can't get sound from my computer, (Satellite 115D-S1120) even with a headset. I opened the control panel/ sound and under the playback tab it says: Digital Output Coexant Audio driver for AMD HDMI codec not plugged in I've looked on the net and thi

  • BUG: Mail (GMAIL IMAP) no longer connects over ethernet, only wireless

    I too was puzzled last night when I couldn't get my gmail account to go online. I did a lot of reading, and tried various things (to no avail), but ultimately decided it was just a configuration error, or combination of other programs running...or ma

  • Power Mac G4 FW800 system hangs every 30 to 45 mins.

    Hi everyone, I have a power mac G4 dual 1.25 FW800 machine running OSX 10.4.11. I have installed both Digital Performer 5.13 and Logic Pro 8.02 on this machine. I have also installed a PCI USB card by Allergo. This card is used mainly for all the ilo

  • Auto TO for 102 IM (104 WM)

    I have done production with 101 IM Movt(103 WM Movt) which has crated an entry in WM with st. type 902 and Bin "Production order". After this, I have transffered to bin no S-001 with 999 WM movt. But when I am doing 102 IM movt(104 WM Movt) , system