**SOLVED DELETE****

Hi,
I'm new to oracle, so im trying to connect a simple JSP to my oracle db but i keep get this error message
"No suitable driver found for jdbc:oracle:thin:@localhost:1521:orcl"
The weird thing is it was working yesterday and now it has stopped working. These are the steps im taking to create my program using netbeans 6.1 and oracle 9i
1. Create new web app
2. add ojdbc14.jar to project library
3. write this code below (forgive the mess)
4. IE open up "No suitable driver found for jdbc:oracle:thin:@localhost:1521:orcl" java.sql.SQLException: No suitable driver found for jdbc:oracle:thin:@localhost:1521:orcl
Thanks for any help
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ page import="java.sql.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<link rel="stylesheet" type="text/css"
href="GameCSS.css" />
</head>
<body>
<img src="Images\gameTrade.png" width="800" height="100" align="center">
<p>ghf</p>
<p>
<%
String url = "jdbc:oracle:thin:@localhost:1521:orcl";
String id ="scott";
String pass = "tiger";
String sql = "SELECT gameid, gamename, genre, IMGLoc from gamedescript";
// DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
// Class.forName("oracle.jdbc.driver.OracleDriver");
Connection conn = DriverManager.getConnection(url, id, pass);
Statement stmt = conn.createStatement();
ResultSet rset = stmt.executeQuery(sql);
rset.next();
String gameID = rset.getString(1) ;
String gameName = rset.getString(2) ;
String genre = rset.getString(3) ;
String IMGLoc = rset.getString(4) ;
%>
<table width="800" border="0" align="center">
<tr>
<td width="251" rowspan="4"><img src="<%= IMGLoc%>" width="251" height="350"></td>
<td width="267" height="48">Name <%= gameName%></td>
<td width="260">Game ID <%= gameID%></td>
</tr>
<tr>
<td height="49" colspan="2">Genre <%= genre%></td>
</tr>
<tr>
</tr>
<tr>
<td height="194" colspan="2">6</td>
</tr>
<tr>
<td height="194" colspan="3"><p align="center"><img src="Images\prev.png"> <img src="Images\next.png">
<img src="Images\buy.png"></p> </td>
</tr>
</table>
<br>
</p>
</body>
</html>
Edited by: user10403452 on 05-Nov-2008 06:41

oooops commented out class.forname

Similar Messages

  • [SOLVED] Deleted /var/lib/transmission. How do I get it back?

    I was messing around with transmission-daemon, and I tried reinstalling it to solve a different, previous issue. When I deleted the package "transmission-cli" with Pacman, I noticed that there is still a directory "transmission" in /var/lib. Thinking this is just some leftover stupid thing that holds the daemon's config files and other things, I deleted the directory.
    I installed transmission-cli again, but the directory won't reappear and I can't start the transmission-daemon.
    Do you know of a way to regenerate the /var/lib/transmission directory?
    Last edited by tkdncty2 (2013-12-24 01:40:15)

    I believe that karol is referring to this note:
    Note: The above is not created until the daemon is run initially.
    Which suggests that the directory will be recreated when the daemon is run as well.
    If this is not the case, try creating the directory manually. Here's the permissions on mine for reference:
    $ ls -ld /var/lib/transmission
    drwx------ 1 transmission transmission 98 Aug 21 2012 /var/lib/transmission

  • Solved: Delete Using Automatic Row Processing

    See Scott's reply below for the answer.
    Hi there,
    I have an application built in APEX 3.0.1 that I would like to be able to use a button to delete a single row from an underlying database table (owned by the parsing schema).
    My APEX page has a 3 HTML regions on it:
    1. Only a Select List and Go button for User selection (of Debit Note)
    2. Ten display Items (Text Field, Disabled saves state) displaying further information about User selection
    3. Conditional Delete button (region with custom image) - only displays when P73_DEBITNOTEID is NOT NULL
    I'd like this button to be used to Delete the Selected Item and thought I'd be able to use a Data Manipulation Page Process - Automatic Row Processing (DML) page process to do this.
    However, when I go through the wizard the Select item containing primary key column value field has no values in the search list.
    My first question is why was there no values in the list?
    So I manually entered the Item I required (P73_DEBITNOTEID) but when I run the page and click the button I get a PL/SQL missing expression error.
    What is the best practice method to do DML actions on the underlying database tables. The tables are all owned by the parsing schema.
    Your help in resolving this matter would be greatly appreciated.
    Kind Regards,
    Gary.

    Gary,
    The DML processes (and the creation wizards for them) are for use with items having source type Database Column. If your page items don't use this source type, then neither the Automated Row Fetch nor the Automatic Row Processesing (DML) process types will work.
    Scott

  • [SOLVED] Delete recursively all files with certain extensions

    Hi all,
    I am trying to recursively delete files with specific extensions. Many of these files have names containing spaces. The following, that I found googling around, didn't work:
    find /media/TSUNAMI -name '*out' -or -name '*aux' -or -name '*log' -or -name '*.blg' -or -name '*.toc' -or -name '*.bcf' -or -name '*.swp' -or -name '*blx' | rm
    find /media/TSUNAMI -name '*out' -or -name '*aux' -or -name '*log' -or -name '*.blg' -or -name '*.toc' -or -name '*.bcf' -or -name '*.swp' -or -name '*blx' -type f -ok rm '{}' ';'
    find /media/TSUNAMI -name '*out' -or -name '*aux' -or -name '*log' -or -name '*.blg' -or -name '*.toc' -or -name '*.bcf' -or -name '*.swp' -or -name '*blx' -exec rm -f '{}' \;
    find /media/TSUNAMI -name '*out' -or -name '*aux' -or -name '*log' -or -name '*.blg' -or -name '*.toc' -or -name '*.bcf' -or -name '*.swp' -or -name '*blx'| xargs /bin/rm -f
    find /media/TSUNAMI -name '*out' -or -name '*aux' -or -name '*log' -or -name '*.blg' -or -name '*.toc' -or -name '*.bcf' -or -name '*.swp' -or -name '*blx' -exec /bin/rm -f '{}' \;
    find /media/TSUNAMI -name '*out' -or -name '*aux' -or -name '*log' -or -name '*.blg' -or -name '*.toc' -or -name '*.bcf' -or -name '*.swp' -or -name '*blx'| xargs -0 rm
    and I think that it was the following that deleted all the files (except the directories):
    find /media/TSUNAMI -name '*out' -or -name '*aux' -or -name '*log' -or -name '*.blg' -or -name '*.toc' -or -name '*.bcf' -or -name '*.swp' -or -name '*blx' -type f -delete
    What am I doing wrong here?
    Thanks a lot in advance.
    PS. While writing this I realized that I fogot the dot in out, aux, log, and blx
    PS2. I'm experimenting around and don't mind deleting all the files if I do a mistake
    Last edited by geo909 (2014-09-30 06:12:04)

    geo909 wrote:Thanks so much. So  what is different when we group those options with \( \)?
    The implicit "and" operator binds stronger than the "or" (-o) operator. Therefore
    | -name a -o -name b -delete |
    will be grouped like this: 
    | (-name a) -o ( -name b -delete ) | .
    You want to group it like this: 
    | ((-name a ) -o ( -name b )) ( -delete )   | ,
    so you need to add some manual grouping: 
    | ( -name a -o -name b ) -delete |
    Last edited by progandy (2014-09-30 05:52:29)

  • [Solved] Delete files from usb drive connected to wireless router

    Hello,
    I have a home network with Samba for file sharing.
    I have a Netgear router with a Western Digital 2TB external drive attached to the router.
    I installed Samba according to the arch wiki and everything works fine but I cannot delete or access some files from the shared USB drive.
    I access the file as follows:
    $ cd /mnt/smbnet/WORKGROUP/READYSHARE/USB_Storage/
    Here are the permissions:
    $ ls -l /mnt/smbnet
    total 0
    drwxrwxrwx 2 root root 0 Dec 31 1969 DEANSNETWORK
    drwxrwxrwx 2 root root 0 Dec 31 1969 MYGROUP
    drwxrwxrwx 2 root root 0 Dec 31 1969 WORKGROUP
    $ ls -l /mnt/smbnet/WORKGROUP/
    total 0
    lrwxrwxrwx 1 root root 13 Dec 31 1969 READYSHARE -> ../READYSHARE
    $ ls -l /mnt/smbnet/WORKGROUP/READYSHARE/
    total 0
    drwxrwxrwx 2 root root 0 Dec 31 1969 USB_Storage
    $ ls -l /mnt/smbnet/WORKGROUP/READYSHARE/USB_Storage/
    total 0
    drwxr-xr-x 2 edgar users 0 Jul 22 21:04 BACKUPS
    drwxr-xr-x 2 edgar users 0 Jul 15 10:43 WD
    $ ls -l /mnt/smbnet/WORKGROUP/READYSHARE/USB_Storage/BACKUPS/
    total 0
    drwxr-xr-x 2 edgar users 0 Jul 11 22:36 Laurie_Laptop
    drwxr-xr-x 2 edgar users 0 Jul 22 21:04 TRASH
    drwxr-xr-x 2 edgar users 0 Jul 12 09:50 Work_Laptop
    If I try to delete the BACKUPS directory, I get errors:
    $ rm -r BACKUPS/
    rm: cannot remove ‘BACKUPS/Laurie_Laptop’: Permission denied
    rm: cannot remove ‘BACKUPS/TRASH/Documents/C++Prog/2541/BibleTriviaTest’: Permission denied
    rm: cannot remove ‘BACKUPS/TRASH/Documents/C++Prog/2541/HouseTest’: Permission denied
    rm: cannot remove ‘BACKUPS/TRASH/Documents/C++Prog/Bitmanip’: Directory not empty
    rm: cannot remove ‘BACKUPS/TRASH/Documents/C++Prog/CurrentMusicPrograms/Musc110’: Directory not empty
    etc...
    Attempting to change the mode doesn't work:
    $ chmod 777 BACKUPS/
    [edgar@arch USB_Storage]$ ls -l
    total 0
    drwxr-xr-x 2 edgar users 0 Jul 22 21:04 BACKUPS
    drwxr-xr-x 2 edgar users 0 Jul 15 10:43 WD
    Thanks for any help you can provide.
    Last edited by mrgar (2014-07-24 02:11:56)

    Here is the output:
    $ mount | grep /mnt
    smbnetfs on /mnt/smbnet type fuse.smbnetfs (rw,nosuid,nodev,relatime,user_id=1000,group_id=100)
    The USB drive is Western Digital My Book 2 TB drive attached as a NAS to the router that shares it.  I installed Samba on the arch machine so I can access and backup various home computers onto the NAS.
    Here is some info I just found on the Western Digital Support site:
    The Western Digital units mentioned above use a proprietary file system and cannot be reformatted as FAT32, NTFS, or a Mac File System.
    The file system on the WD My Cloud EX2, WD My Cloud EX4, WD My Cloud, WD My Book Live, WD My Book Live Duo, WD ShareSpace, WD ShareSpace, WD TV Live Hub, My Net N900 Central, WD My Book World Edition, WD NetCenter hard drives support access from Windows, Mac and most Linux based computer systems through a SAMBA network sharing connection.
    I thought I would mention that I can access the NAS and write, read and execute from the drive.
    $ cd /mnt/smbnet/WORKGROUP/READYSHARE/USB_Storage/
    [edgar@arch USB_Storage]$ mkdir Test
    [edgar@arch USB_Storage]$ ls
    BACKUPS Test WD
    [edgar@arch USB_Storage]$ cd Test
    [edgar@arch Test]$ vim testfile.txt
    [edgar@arch Test]$ ls -l
    total 1
    -rwxr--r-- 1 edgar users 16 Jul 23 07:47 testfile.txt
    [edgar@arch Test]$ cat testfile.txt
    This is a test.
    [edgar@arch Test]$ rm testfile.txt
    [edgar@arch Test]$ cd ..
    [edgar@arch USB_Storage]$ rm -r Test/
    [edgar@arch USB_Storage]$ ls
    BACKUPS WD
    However I want to copy large files with cp -ruv from my arch machine to the NAS.
    This is where the trouble lies.  Thanks for your help.

  • [SOLVED] Deleted partition table on drive, how to rescue?

    Hello,
    I accidentally dd'd the first 512 bytes using:
    dd if=/dev/zero of=/dev/sdb bs=512 count=1
    and the partition table is now gone. Is there ANY way to re-create the partition table and rescue the still existing partition? I read up on parted's manual, and found the following commands:
    mklabel - to create a new label on the disk (but does it also create a new partition table?)
    rescue - to try and rescue the partition around the given START and END
    My hard drive is 500GB and has only 1 partition on it, in NTFS file format.
    Any help would be much appreciated.
    Silentz0r
    Last edited by silentz0r (2011-03-27 16:17:36)

    Thanks everyone for your help, I have managed to solve this. Here's what I did:
    (I had no backup of the MBR)
    I used:
    parted /dev/sdb
    sdb was my broken drive, and did the following:
    (parted) print
    Error: /dev/sdb: unrecognised disk label
    (parted) mklabel
    (parted) mklabel msdos
    (parted) rescue
    Start? 0
    End? 976773168 // This was just a random guess.
    Information: A ntfs primary partition was found at 32.3kB -> 500GB. Do you want to add it to the partition table?
    Yes/No/Cancel? yes
    (parted) quit
    Information: You may need to update /etc/fstab.
    And everything works now.
    For the record, I am making MBR backups for all my drives while I'm typing this.
    Hope this helps someone in the future! Marked as solved.

  • [Solved] Deleted trash icon in dolphin, how to get it back?

    Hey, I accidently deleted the trash can symbol in the "places" sidebar of dolphin. Now I wonder how you can restore that, because even if you add a new entry leading to the trash, there will be no option that allows you to empty the trash via that icon.
    I used that icon quite a lot and would like it back. As for now I have the trash widget in my bar, but I hope that is only temporary and I can restore the icon in dolphin. So, does anybody know how?
    Last edited by JonathanArcher (2009-06-15 18:07:42)

    1. Open Dolphin
    2. Press Ctrl + L and go to trash:/
    3. Drag the trash icon closest to the 'trash:/' text into Places (it was probably placed above the root folder)
    4. Right click and choose Edit ''
    5. Rename to Trash and choose the user-trash icon in System icons: Places

  • [SOLVED] Deleting installed packages

    What's the best way to view all my installed packages so I can delete the ones I don't need? I don't mind the terminal but I would prefer a GUI method. I use gnome and gtkpacman, but neither seem to give me the list I need directly.[
    Last edited by Csosa (2009-08-01 17:25:09)

    windtalker wrote:Not trying to hijack the thread as my query does apply to the op but,,,
    it's been my understanding for some time it isn't wise to just mass remove orphan packages as some of the packages may be needed by some of the installed apps and aren't true orphans.
    If that was the case, then there needs to be a bug report for that package with missing deps.

  • [SOLVED] Delete Chromium App Desktop shortcut in XFce 4.8

    I just want to ask how I can delete chromium app shortcut from the xfce menu?
    [not the actual chromium icon, but a shortcut of webapp that I created using chromium]
    I am using LXDE Menu Editor, because alacarte does not work for me.
    LXMED can see and do everything I want apart from the fact that it can't see shortcuts to webapps created by chromium.
    Let me put it this way:
    I had created an web - desktop shortcut [to grooveshark] using chromium's tools [Menu > Tools > Create Aplication Shortcut...], it created a new entry called 'Grooveshark' under Internet category in my xfce menu, which I now want to delete.
    How can I do that?
    I was thinking about .desktop files, but since LXMED cannot see this shortcut, I am assuming that this may not be a standard .desktop file.
    Maybe there is even some really easy way of deleting this shortcut directly from chromium, but I can't see one.
    Any ideas?
    Thanks,
    Last edited by MatejLach (2011-10-18 19:32:36)

    R00KIE wrote:Go to ~/.local/share/applications and delete what you don't want.
    Thanks, I have another little question;
    I have a quick access to Web Browser, Mail Reader, File Manager and Terminal using the 'quick access slots' at the top of xfce application menu.
    When I did some of my menu edits using lxde menu editor, I noticed that I 'pulled off' my 'Web browser' shortcut from quick slot - how can I restore it?
    Thanks,
    I am still getting familiar with xfce...
    Last edited by MatejLach (2011-10-18 19:37:49)

  • [solved] Delete pacman by mistake

    I deleted pacman, yaourt, scp .... by mistake. What can I do to rescue my system?:(
    Last edited by kmeng (2010-03-19 20:18:57)

    The problem is I also deleted the related dependencies, such as, libachieve, libcrypto.....  I don't know how many dependencies are needed for pacman.

  • [SOLVED] Deleting Win. How to reorganize partitions?

    Hi all.
    I decided to wipe out my Windows installation, as I haven't boot it for several months and don't really need it.
    My current partition schema on sda disk
    Filesystem 1K-blocks Used Available Use% Mounted on
    /dev/disk/by-uuid/798d5bc2-dd07-4d08-b25e-dfcdb2b70af8
    18577596 14553268 3080512 83% /
    /dev/sda6 4134900 3051412 873440 78% /home
    /dev/sda8 3613056 2388016 1041544 70% /var
    /dev/sda9 4664632 3689272 738404 84% /usr/local/matlab
    /dev/sda1 34603976 32459128 2144848 94% /media/sys
    /dev/sda5 88084360 61574208 26510152 70% /media/install
    Layout is approximately the following
    [sda1] [sda2 [ntfs partition] [home] [/] [var] [matlab] ]
    Windows is on sda1.
    So, as I said I want to remove windows, and then occupy that free space.
    I want to increase my / and /home and leave some space unoccupied (about 4 gigs) for future weblogic dedicated partition.
    Also sda5 can be shrinked a little.
    How would you suggest to reorganise my partitions?
    edit:
    Haven't mention the most importatnt! I would like to keep my current Arch installation alive if it is possible (I believe it is).
    P.S. I have free space on another harddrive sdb, so I can move my data to that hdd while modifying sda, but would like to avoid this.
    Thanks in advance
    Last edited by eDio (2010-11-13 06:27:31)

    I've done Copy-Paste in Gparted to move my / and /home partition to free unallocated space over ntfs partition.
    There seems to be no problems with /home, but / has grown in size. Actually after moving / from 18GB to 33GB partition, it has the same amount of free space
    Does anyone know how to fix this?
    P.S. btw, I've also fixed grub and fstab, and all boots just fine. There is the only issue with partition size

  • Solved-delete please

    When I boot my Touchsmart 600-1160sc (Win7 x64), this kind of errors appear. The second "RegisterDeviceNotification error" appears after I press "OK" to the first one.
    After I press "OK" to the second one, nothing interesting happens, and no other errors or problems appear after booting.
    I just want to know how serious these error are, and mainly, how to fix them?
    Thanks to all repliers.

    I have had probably the same Problem (JAN2OSD: Can't Get UART State) on a HP TouchSmart 600-1220de running Win7 Home Premium 64bit. This occured after applying the MS patches of February 2011. Since then the volume buttons of the keyboard didn't work and the process JAN2OSD ate up 25% CPU time.
    JAN2OSD.exe is launched by c:\program files (x86)\hewlett-packard\buttons & osds control application gen3\fastuserswitching.exe?" (Buttons & OSDs control application gen3, FastUserSwitching MFC Application) on login. As a workaround, I disabled fastuserswitching.exe with autoruns from sysinternals. So, the error messages and the waste of CPU time are gone. The volume control buttons an the keyboard don't work, of course.
    HP Support suggested installing newer/older keyboard and OSD drivers, but this did not help.
    The solution for me was: Shutdown the OS and disconnect the PC from power for a few minutes. Then reboot. With fastuserswitching.exe? re-enabled, no error messages occur anymore and the volume buttons resumed working as supposed.
    The Procedure was suggested by a colleague of mine.

  • Deleting Web Services

    Hi All:
    I have to delete a Web service from a CAF application, but I don´t know what is the supposed  process to follow for  doing it. Sometimes I want to delete it from the application composite perspective but continue appearing.
    regards.

    Hi Martinez
    Before deleting that External service I would suggest you to do following which might solve your problem, looking at your build error it seems
    The web service which you imported as External Service was generated out of another CAF Application Service OrgApp
    and I guess it is in another dc or project because of which you are getting Error: is not a valid return type for
    the web service method getStatus, had the two Application Services been in one project or dc you would not have got this error. so what you can try is if return parameter for the getStatus method is a Java dictionary structure or constructed out of java dictionary simple types in OrgApp Application Service then goto to java dictionary project for that dc and expose it simple type  or return type  structure for getStatus method as public part ( both api & sda should be exposed ) come back to user dc or CAF Application Service
    which want to consume that web service as External Service goto to dc Metadata folder ( development configuration perspective inactive tab for trac CAF Main dc) and in Used DC add the exposed public part( both api and sda ) keep dependencies check box checked for build time and reload and rebuild your project your problem should get solved
    if still problem does not get solved delete web services that are like external services in other component. First ensure that the external service is not added in dependency tab of any other Application or Entity Service then Simply right click on that External service in your CAF Perspective and delete it. and rebuild your dc again
    this should solve the problem & dont forget to award points for previous answer & for this answer if your problem gets solved
    Thanks
    Asif
    Edited by: asif hirani on Jan 21, 2008 7:05 AM

  • [SOLVED] A few problems after installation...

    I installed arch yesterday and I'm trying to iron out all the little niggles, I need a little help as there are a few things that are over my head...
    1. I now have 2 .xinitrc files, one in the root directory (~/) and one in my user directory (/home/jamie)... is this an efficient way of doing it?
    2. I open chromium as a normal user but when it comes to downloading something in my /home/Downloads folders it says that I  have insufficient permission. But I can save in /home ( I presume it's for every directory I create in the /home folder ) - How can I correct this? - On further inspection it seems like I may have done something wrong in regards to setting up the user. I tried 'updatedb' and it returned 'updatedb: can not open a temporary file for `/var/lib/mlocate/mlocate.db' ' - I was hoping this might give someone a little more insight as to what the problem may be.
    Cheers
    Last edited by jpjenkins (2014-03-26 18:30:03)

    Mark it as solved, deleting/blanking your posts is frowned upon here and considered rude. I would provide a link to tde forum ettiqette, which you should read, but I'm on my phone. It is on the wiki though, please search for it and read it.

  • [SOLVED] Fontconfig warning: "local.conf"

    Hello Folks,
    every software I run from the terminal shows me a long list of the same message, before to run.
    Here an example:
    skype
    Fontconfig error: "local.conf", line 82: invalid attribute 'target'
    Fontconfig error: "local.conf", line 85: invalid attribute 'target'
    Fontconfig warning: "local.conf", line 181: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 194: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 213: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 229: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 291: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 426: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 530: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 544: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 558: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 614: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 628: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 635: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 229: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 291: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 426: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 530: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 544: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 558: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 614: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 628: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 635: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 642: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 656: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 663: invalid attribute 'name'
    Fontconfig error: "local.conf", line 687: invalid attribute 'name'
    Fontconfig error: "local.conf", line 706: invalid attribute 'name'
    Fontconfig error: "local.conf", line 730: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 742: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 749: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 756: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 776: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 799: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 806: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 813: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 833: invalid attribute 'name'
    Fontconfig error: "local.conf", line 879: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 903: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 916: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 931: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 943: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 959: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 966: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 973: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 992: invalid attribute 'name'
    Fontconfig error: "local.conf", line 1009: invalid attribute 'name'
    Fontconfig error: "local.conf", line 1026: invalid attribute 'name'
    Fontconfig warning: "local.conf", line 1290: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 1293: invalid attribute 'target'
    Fontconfig warning: "local.conf", line 1316: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 1524: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig error: "local.conf", line 1527: invalid attribute 'target'
    Fontconfig warning: "local.conf", line 1537: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 1654: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 1871: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 1905: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 1937: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "local.conf", line 1985: Having multiple values in <test> isn't supported and may not work as expected
    How could I solve it?
    Last edited by Astroarch (2014-09-11 17:56:30)

    Then , I solved deleting the file and reinstalling fontconfig.
    Byt he way, I do not post in the forum to be joked, if you mean to answer in such a way, better do not post at all.
    Thanks
    Last edited by Astroarch (2014-09-11 17:56:07)

Maybe you are looking for

  • Ipod sync is greyed out after latest update and libary was wiped

    i updated the latest update...2 weeks later opened itunes my libary was gone bar itunes purchases... now when ipod is connected if i go to file/ devices ipod isnt there eg bla blas ipod and the sync is greyed out .. now before i updated the latest up

  • Kindle fire hd 8.9 and skype quality

    How is the video quality for skype on kindle fire hd 8.9

  • Scarey problem when running anything in 3D mode

    Hi, I own a MSI KT4 Ultra motherboard, have done for years and it worked flawlessly with my Voodoo3 3000 PCI graphics card. However, a while ago I retired the old beast in favour of a (then new) Nvidia FX 5950 Ultra AGP card. After a while, I noticed

  • Text in miro tcode

    hai friends,     can u please tell how to store a text in note tab in MIRO transaction usging function module.   please help me. Regards, N.selvamuthukumar

  • Opening File: Why is Pixel Width affected by Resolution?

    Simple code to open an EPS file and wanting to set its width to 500px. If I set the resolution to 72 it works fine. If I leave out the resolution line is ends up being about 7x as big (approx. 3500px). If I set the resolution to 300, the image is abo