Pacman tries to satisfy dependency of an ignored package, and fails...

sudo pacman -Suy
:: Synchronizing package databases...
core is up to date
extra is up to date
community is up to date
--> Searching for upgradable repo packages...
:: Starting full system upgrade...
warning: awesome: ignoring package upgrade (3.3.4-1 => 3.4.3-2)
resolving dependencies...
looking for inter-conflicts...
error: failed to prepare transaction (could not satisfy dependencies)
:: awesome: requires libev>=3.80
For some reason I cannot install any packages anymore. No matter if I try a system update or try to install any package, the last two lines always appear. I think that's especially weird because as you can see, I'm ignoring awesome.
I don't really know how this happened; the only thing I really did before was trying out bauerbill, but I think that might be more of a coincidence.
Any ideas?

Essentially libev is trying to be updated to 3.9-1 on your system.  But the old awesome you are using requires libev-3.80.  This is stupid numbering upstream so is causing the issue.  If you really want to keep awesome at that old version, do a "pacman -Sd libev" followed by your "pacman -Syu".   Remember, -Sd is dangerous, so do not use it unless you are sure you need it...

Similar Messages

  • I'm trying to download office 365 small business package, and every time I try the website it says there is a runtime service error in the '/' application. Is this my mac or is it the website, and how can I fix it?

    I'm trying to download office 365 small business package, and every time I try the website it says there is a runtime service error in the '/' application. Is this my mac or is it the website, and how can I fix it?

    If a phone is sold from one friend to another and wants to use it on a different carrier the friend can contact the carrier it was sold by to request it unlocked.  I know AT&T, Verizon, and Sprint will give you the steps to unlock it as long as the original contract it was bought under has been completed.  eBay/Craigslist is really not the best place to try to get "unlocked phones" from, if it turns out the phone isn't unlocked then I'm really sorry you got stuck with that one and as stevejobsfan said above I would report them immediately and see if you can recover your money.  I sell phones for a living and this happens a lot

  • Trying to call a stored procedure from C# (and failing)

    Hi;
    Two questions on this. The first is - is there a way to call a stored procedure, including passing paramaters, where the entire request is in a single string? I ask because our app lets users enter any select and so if we have to break out the parameters, then we will have to parse their select string and I worry that we will miss some of the select syntax and not always parse the select correctly.
    Second, the following is telling me:
    System.Data.OracleClient.OracleException was unhandled
    Message="ORA-06550: line 1, column 7:\nPLS-00306: wrong number or types of arguments in call to 'ADD_JOB_HISTORY'\nORA-06550: line 1, column 7:\nPL/SQL: Statement ignored\n"
    Source="System.Data.OracleClient"
    ErrorCode=-2146232008
    Code=6550
    StackTrace:
    at System.Data.OracleClient.OracleConnection.CheckError(OciErrorHandle errorHandle, Int32 rc)
    This is calling ADD_JOB_HISTORY in the XE/HR database. How do I figure out what it is unhappy with? I have tried every variation I can think of for this. Latest is:
                             cmd.CommandType = CommandType.StoredProcedure;
                             cmd.CommandText = "ADD_JOB_HISTORY";
                             OracleParameter param = new OracleParameter("employee_id", OracleType.Number);
                             param.Value = 123;
                             cmd.Parameters.Add(param);
                             param = new OracleParameter("start_date", OracleType.DateTime);
                             param.Value = DateTime.Now.AddMonths(-1).Date;
                             cmd.Parameters.Add(param);
                             param = new OracleParameter("end_date", OracleType.DateTime);
                             param.Value = DateTime.Now.Date;
                             cmd.Parameters.Add(param);
                             param = new OracleParameter("job_id", OracleType.NVarChar);
                             param.Value = "SA_MAN";
                             cmd.Parameters.Add(param);
                             param = new OracleParameter("department_id", OracleType.Number);
                             param.Value = 10;
                             cmd.Parameters.Add(param);
    thanks - dave

    Dave,
    You can pass an entire select statement as single parameter, such as a varchar2. Then, you just have PL/SQL execute the SQL statement for you.
    Here's a code sample using ODP.NET for the same stored procedure that will work for the call to ADD_JOB_HISTORY. It appears you are using MS OracleClient in your code.
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Data;
    using Oracle.DataAccess.Client;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    try
    OracleConnection con = new OracleConnection();
    con.ConnectionString = "User ID=hr;Password=hr;Data Source=xe;";
    con.Open();
    OracleCommand cmd = new OracleCommand();
    cmd.Connection = con;
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.CommandText = "ADD_JOB_HISTORY";
    OracleParameter param = new OracleParameter("employee_id", OracleDbType.Int16);
    param.Value = 123;
    cmd.Parameters.Add(param);
    param = new OracleParameter("start_date", OracleDbType.Date);
    param.Value = DateTime.Now.AddMonths(-1).Date;
    cmd.Parameters.Add(param);
    param = new OracleParameter("end_date", OracleDbType.Date);
    param.Value = DateTime.Now.Date;
    cmd.Parameters.Add(param);
    param = new OracleParameter("job_id", OracleDbType.NVarchar2);
    param.Value = "SA_MAN";
    cmd.Parameters.Add(param);
    param = new OracleParameter("department_id", OracleDbType.Int16);
    param.Value = 10;
    cmd.Parameters.Add(param);
    cmd.ExecuteNonQuery();
    Console.ReadLine();
    catch (Exception ex)
    Console.WriteLine(ex.Message.ToString());
    Console.WriteLine(ex.StackTrace.ToString());
    }

  • Trying to pass arguments into a method call and failing

    Hi everyone, I'm fairly new to programming, and newer to Java. I'm currently working on a project that pulls fields from a database based on a name, and I'm having some trouble getting the connection string set up.
    Statically defined, the database connects and the program logic that follows works just fine. The problem is that to future-proof this application, I need to pass the database URL, port, db instance, username, and password into the program as arguments from the batch file that will then be scheduled to run the program on a job-by-job basis.
    Product Version: NetBeans IDE 6.1 (Build 200805300101)
    Java: 1.6.0_06; Java HotSpot(TM) Client VM 10.0-b22
    System: Windows XP version 5.1 running on x86; Cp1252; en_US (nb)
    Userdir: C:\Documents and Settings\xxxxxxxxxxx.SPROPANE\.netbeans\6.1
    Here's my current working source (with the network addresses obfuscated):
    package processsqrjob;
    import java.io.*;
    import java.sql.*;
    import java.util.Date;
    public class Main {
         * @param args jobname, jobparameters, HYPusername, HYPpassword, HYPservername, HYPport, oracleDBURL, oracleport (default 1512), SID (dbb?), oracleusername, oraclepass
         * @throws exeption
        // jobname [0], jobparams[1], hypusername [2], hyppassword [3], hypservername [4], hypport[5], oracledburl[6], oracleport[7], sid[8], oracleusername[9], oraclepass[10]
        public static void main(String[] args) throws SQLException
            DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver());
            Connection con = DriverManager.getConnection("jdbc:oracle:thin:@oracleserver.local.intranet.com:1521:dbname", "username", "pass");
            Statement stmt = con.createStatement();
            Date date = new Date(); //get the system date for output to both the error log and the DB's lastrun field
            System.out.println(date); //print the date out to the console
            System.out.println(args[0]); //print the job name to the console
            String sourcefolder=""; //we're going to load the job source folder into this variable based on the job's name
            String destfolder="";//same with this variable, except it's going to get the destination folder
            try {
                ResultSet rs = stmt.executeQuery("SELECT * FROM myschema.jobs WHERE NAME =\'"+args[0]+"\'");
                while ( rs.next() ) {
                    sourcefolder = rs.getString("sourcefolder");
                    destfolder = rs.getString("destfolder");
                stmt.executeQuery("UPDATE myschema.jobs SET lastrun ='"+date+"' WHERE name ='"+args[0]+"'");//put this after hyp code
    //            System.out.println(sourcefolder);
    //            System.out.println(destfolder);
    //            System.out.println(description);
                stmt.close(); //close up the socket to prevent leaks
            }catch(SQLException ex){
                System.err.println("SQLException: " + ex.getMessage());
                logError(args[0], ex.getMessage());
    }That works, and it connects to the database and everything. But when I pass the variables in from the project properties run settings, I get the following exception:
    Exception in thread "main" java.sql.SQLException: invalid arguments in call
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:111)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:145)
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:207)
            at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:235)
            at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:440)
            at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:164)
            at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:34)
            at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:752)
            at java.sql.DriverManager.getConnection(DriverManager.java:582)
            at java.sql.DriverManager.getConnection(DriverManager.java:207)
            at processsqrjob.Main.main(Main.java:42)
    Java Result: 1That is with Connection con = DriverManager.getConnection("jdbc:oracle:thin:@oracleserver.local.intranet.com:1521:dbname", "username", "pass"); changed to Connection con = DriverManager.getConnection("jdbc:oracle:thin:@"+args[6]+":"+args[7]+":"+args[8]+"\", \""+args[9]+"\", \""+args[10]+"\"");{code}, with args 6 7 8 and 9 set to url, port, dbinstance, username, and password respectively.
    Perhaps it's the way I'm escaping the quotation marks, but I put that same line inside a System.out.println() and it output it exactly as I had typed it in statically before, so I don't know what it could be.
    I would really appreciate any advice. Thanks in advance for your time.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I think you're mixing up SQL and Java. The Java method expects the user name and password as separate parameters, not encoded in one String. So you shouldn't be concatenating args[9] and args[10] at all, they should remain as separate parameters.
    The call should be:DriverManager.getConnection("jdbc:oracle:thin:@" + args[6] + ":"+ args[7] + ":" + args[8], args[9], args[10]);
                                                     parameter 1                                  2         3

  • JRE 7u25 ignores Proxy and fails attempting OCSP Direct

    We were running JRE 7u17 on Windows 7 with Firefox 17.0.8 without an issue. We upgraded to JRE 7u25 and now Java does not run at all. In reviewing the console logs we noticed that entries such as the following that seem to suggest that the JRE is not following the proxy configuration from IE:
    network: Connecting http://ocsp.verisign.com/ with proxy=DIRECT
    We hard coded the proxy in the Java control panel application, but that has not helped.  We have also configured the advanced Java control panel settings so that certificate revocation checking is disabled. Nothing we seem to try appears to have any impact on this problem. We do not allow internal systems to directly connect to the internet, so if certificate revocation checking does not use the proxy, the certificate revocation list is not going to be accessible. This seems like a bug. We also want to stand up private networks from time to time. How can we put java on a none internet connected system if it is going to require certificate revocation checking from Verisign?
    Are we missing a step in the configuration for 7u25? This doesn't appear to be working correctly.

    It has been my experience that JRE does not respect any sort of method of forcing it to use a proxy in 1,7 for specific sites.
    I can't find the article but the JRE will look at deployment.config before even looking at what the specific java control panel settings are.
    Try setting the console to reload the config and then display what configuration it is actually using.  That way you could at least tell where it is pulling it's settings from.
    I had no luck unfortunately

  • Bing Bar 7.0 (KB2626804) Keeps trying to install itself on my HP and Fails.

    Hello, I have upgraded my system to Windows 10 Pro, and ever since it has been trying to install the Bing Bar 7.0 and failing. I dont need it. Dont have it. Didnt have it on my Windows 7 Pro. So I have no idea why it is trying to install it on my system. I have looked everywhere on my computer, and it is not in the programs to be installed. I have even looked in all of my browsers, to make sure that it wasn't hidden in any of those. It isnt. So I did a DxDiag on my system to see what it had to say, and when it uploads and fails, the Diagnosis says: +++ WER2 +++:
    Fault bucket , type 0Event Name: WindowsUpdateFailure3Response: Not availableCab Id: 0 Problem signature:P1: 10.0.10240.16397P2: 80246013P3: F7C086A0-F7E8-486A-9167-9A09707BF1ECP4: InstallP5: 101P6: 0P7: 80246013P8: UpdateOrchestratorP9: {7971F918-A847-4430-9279-4A52D1EFE18D}P10: 0 So I have no idea what to do. This Bing Bar will keep trying to install itself over and over and over, and fail; and I wont be able to stop it. Does anyone have any idea what I can do? Tim  

    Hello , Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More. I have read your post on how a recent Windows update keeps trying to install itself on your desktop computer and fails, and I would be happy to assist you in this matter! To correct this issue, I recommend following the steps in this document on How to block automatic reinstall of a driver or update from Windows Update. This should help prevent the updating of KB2626804 on your system. Please re-post with the results of your troubleshooting, and I look forward to your reply!
    Regards

  • Suggest: pacman should have an option to ignore package chk

    I am a new Archlinux user. I have tried to install Archlinux in my computer several times. To avoid additional network access, I always backup the pkg.tar.gz files from my cache folder before installing Archlinux and restore them after first boot into the new system and before running "pacman -Syu".
    Last time I tried to use the ABS system to build my own packages with customized CFLAGS & CXXFLAGS. I was using srcpac to build some system packages without any problem.
    However, next time when I try to reinstall my system the pacman complains about "corrupted" .pkg.tar.gz files. Because I can use "pacman -U " to install them (but not "pacman -S"), I recon the files are not corrupted and the only problem is that they are not downloaded from archlinux.org (or any other mirror sites) but compiled in the previous Archlinux system installed in the same computer.
    I have tried to find out options available in the menu of pacman but I have not found any option to avoid this problem.
    Here is my SUGGESTION: add an option (say "--nocheck") which ignores the integraty check of the files.
    Last edited by earthengine (2009-07-26 00:51:14)

    Stefan Husmann wrote:
    So, what should I do to for the new installation? How to restore the my repo in the new installation? And if I replaced some packages in "core" repo or even "base" group with some compiled packages in my local repository, which checksum will be detected first?
    It depends what repo comes first in your pacman.conf. If you put your personal repo at first place (or exactly, before the official repos), pacman will use your self compiled packages and so prevent updates. You have to take care for that yourself. In the opposite case your selfmade packages will be overinstalled with next update.
    If you only want to install one specific package, you can use the syntax "pacman -Sy <repo>/<package>" to install from a specific repo.
    As you can see, if I use a local repo I have to worry about the update of repos, and it is not a solution good enough.
    I am not sure whether "pacman -Sy <repo>/<package>" is working or not, because when you are installing a package all the dependents has to be installed first. If the dependent packages is also customised and have another version (with SAME version number), can pacman check the same repo before checking the "core"/"extra"/"community" repos? If the answer is yes I recon this is a good solution.

  • Why is pacman trying to upgrade arts?

    I'm having a problem with pacman -Syu. It says:
    :: arts conflicts with kdemod-arts. Remove kdemod-arts? [Y/n] n
    But I don't even have arts installed. Why is it doing that?
    Thanks,

    I did the --debug thing and didn't find anything useful. Here is the output:
    debug: check targets vs targets
    debug: package 'coreutils' conflicts with 'mktemp'
    debug: 'mktemp' is already elected for removal -- skipping
    debug: package 'qt' conflicts with 'qt4'
    debug: 'qt4' is already elected for removal -- skipping
    debug: package 'arts' conflicts with 'kdemod-arts'
    debug: found package 'arts-1.5.9-1' in sync
    debug: resolving package 'arts' conflict
    :: arts conflicts with kdemod-arts. Remove kdemod-arts? [Y/n]
    Didn't say who requires arts really. qt4???
    I even tried to say Y to all the questions but in the end pacman give up saying cannot satisfy dependency.  dependency hell? Haven't had that in a long time.

  • [SOLVED] Pacman trying to install 64-bit packages on 32-bit system

    I was upgrading my Arch Linux i686 install, and I got the following error:
    error: The mirror 'http://mirror.rit.edu/archlinux/$repo/os/$arch' contains the $arch variable, but no Architecture is defined.
    I added Architecture = i686 to /etc/pacman.conf under [options], and when I run pacman -Syu, I get these errors:
    error: failed to prepare transaction (package architecture is not valid)
    :: package clucene-2.3.3.4-2-x86_64 does not have a valid architecture
    :: package filezilla-3.5.3-1-x86_64 does not have a valid architecture
    :: package lshw-B.02.16-1-x86_64 does not have a valid architecture
    :: package yajl-2.0.4-1-x86_64 does not have a valid architecture
    Why is pacman trying to install x86_64 packages on my i686 system?
    Last edited by nticompass (2012-01-13 03:24:43)

    Got errors
    :: Retrieving packages from community...
    error: failed retrieving file 'virtualbox-modules-4.1.8-1-x86_64.pkg.tar.xz' from mirrors.kernel.org : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'virtualbox-modules-4.1.8-1-x86_64.pkg.tar.xz' from archlinux.supsec.org : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'virtualbox-modules-4.1.8-1-x86_64.pkg.tar.xz' from cake.lib.fit.edu : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'virtualbox-modules-4.1.8-1-x86_64.pkg.tar.xz' from mirrors.cat.pdx.edu : Not Found
    error: failed retrieving file 'virtualbox-modules-4.1.8-1-x86_64.pkg.tar.xz' from mirror.ece.vt.edu : Not Found
    error: failed retrieving file 'virtualbox-modules-4.1.8-1-x86_64.pkg.tar.xz' from ftp.gtlib.gatech.edu : File unavailable (e.g., file not found, no access)
    warning: failed to retrieve some files from community
    error: failed to commit transaction (File unavailable (e.g., file not found, no access))
    Seems to be looking for 64 bit packages still. Had a similar issue when installing another prog as well

  • I just tried to open my last Soundtrack Pro Projet and I got this message :  "NS InternallnconsistenceException Invalid parameter not satisfying:m_splitViewer". Curiously, I can't open any other project. Help! Please!

    I just tried to open my last Soundtrack Pro Projet and I got this message :  "NS InternallnconsistenceException Invalid parameter not satisfying:m_splitViewer". Curiously, I can't open any other project. Help! Please!

    Did this just happen after upgrading to 10.9?
    Try using Preference Manager by Digital Rebellion (it's free) to delete your preference files for Soundtrack.
    x

  • I am trying to install the newest version of Itunes and it fails with the message "Program cannot start MSVCR80.dll is missing from your computer. Try reinstalling program to fix this program.I have tried reinstalling several times but get same results

    I am trying to install the newest version of Itunes and each time I repeatedly get the message "Program cannot start MSVCR80.dll is missing from your computer Try reinstalling to fix this problem". I have tried reinstalling several times and I get the same message . Any ideas? I am most appreciative. I am using Windows 7.

    Hi 49balf,
    Thanks for visiting Apple Support Communities.
    I recommend removing and reinstalling iTunes using these steps:
    Check for .dll files
    Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
    If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
    Reboot your computer.
    Note: Depending on your operating system, you may only have one of the listed paths.
    Uninstall and reinstall iTunes
    Uninstall iTunes and all of its related components.
    Reboot your computer. If you can't uninstall a piece of Apple software, try using the Microsoft Program Install and Uninstall Utility.
    Re-download and reinstall iTunes 11.1.4.
    You can find the article with these steps and more information here:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Best,
    Jeremy

  • I am trying to make a pdf of a file and I need to get the file size to be no bigger than 10MB. What is the best way to do this

    I am trying to make a pdf of a file and I need to get the file size to be no bigger than 10MB. Even when I save it, the image quality at minimum the file size is 10.9 MB. What is the best way to do this

    @Barbara – What purpose is that PDF for? Print? Web?
    If web purpose, you could convert CMYK images to sRGB. That would reduce the file size as well.
    A final resort to bring down file size is:
    1. Print to PostScript
    2. Distill to PDF
    That would bring file size down even more. About 20%, depending on the images and other contents you are using, compared with the Acrobat Pro method. If you like you could send me a personal message, so we could exchange mail addresses. I could test for you. Just provide the highres PDF without any downsampling and transparency intact. Best provide a PDF/X-4.
    I will place the PDF in InDesign, print to PostScript, distill to PDF.
    Uwe

  • Trying to get mail but keeps coming up connection failed

    Trying to get into my mail on iPad and keeps saying connection failed

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say “Cannot Connect to Server”?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    Gmail Account Will Not Connect to Gmail Server
    http://support.apple.com/kb/ts3058
    How to Delete Email on the iPad
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Delete-Email-On-The-Ipad.htm
    How to Mass Delete Emails from iPhone and iPad Inbox (with video)
    http://suiteminute.com/how-to-mass-delete-emails-from-iphone-and-ipad-inbox/
    How to delete ALL mail messages from iPhone/iPad in one step
    http://www.conferencesthatwork.com/index.php/technology/2014/01/how-to-delete-al l-mail-messages-from-iphoneipad-in-one-step/
    How to add, send and open iPad email attachments
    http://www.iskysoft.com/apple-ipad/ipad-email-attachments.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    Importing a Contact List CSV to the iPad
    http://techchannel.radioshack.com/importing-contact-list-csv-ipad-2235.html
    iOS: ‘Mailbox Locked’, account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
    How to delete an email account on your iPad
    http://www.shoppepro.com/support/knowledgebase/228/How-to-delete-an-email-accoun t-on-your-iPad.html
     Cheers, Tom

  • I'm trying to sync my phone to my computer and keep getting error message "1140" just when it's about to finish.  My updates are current.  Thoughts?

    I'm trying to sync my phone to my computer and keep getting error message "1140" just when it's about to finish.  My updates are current.  Thoughts?

    Hi hannijin,
    What version of the Mac OS X do you have on your computer?  The version of iTunes that you can install is dependent on the operating system that you have.  For example, the current version of iTunes requires OS X version 10.7.5 or later.
    Finding the OS X version and build information on your Mac - Apple Support
    https://support.apple.com/en-us/HT201260
    Apple - OS X Yosemite - How to Upgrade
    https://www.apple.com/osx/how-to-upgrade/
    Hope that helps ...
    - Judy

  • Deployment Wizard ignores package tree

    Hi,
    I've just started using JDev 3.0 and I've noticed some strange behaviour of the new deployment wizard.
    If I specify a package tree to include, but NOT a library or an archive, the package tree is ignored.
    I can only get the wizard to pay attention to my package tree if I specify something in the libraries tab and the archive tab.
    Is this working as designed?
    Has this changed in JDev 3.1??
    Thanks,
    Lachlan

    Hi,
    The behavior you are observing is as designed. The Advanced dialog in the deployment wizard is used to configure the dependency analyzer that runs when you are deploying your profile. In general, more specific settings override less specific settings. However, this rule can only be applied to classes that are on the dependency analyzer's classpath. The dependency analyzer's classpath is set through the Libraries and Archives panels,
    and the settings on the remaining panels (Package Trees, Single Packages, and Classes) are applied as customizations to the classpath.
    Because of this arrangement, specifying "included package trees" doesn't do anything, whether or not you have included any Libraries or Archives. What it is useful for is to override a less specific "excluded package trees" setting. So if you have excluded the package tree "javax" but you include the package tree "javax.accessibility", then only classes within the "javax.accessibility" tree will be included; all other classes in the "javax" tree are excluded. Of course, you would need the Swing classes to be on the dependency analyzer's classpath to begin with for this to apply.
    Thus, if you try to include a package tree that isn't on the dependency analyzer's classpath, that package tree won't be included because it was not found. An error message is not printed because not finding a class during dependency analysis is interpreted to mean that the class was excluded; if there really was an error that would cause your class not to run, you should have gotten an error during compilation.
    Jojo - JDeveloper Team (deployment)

Maybe you are looking for

  • Help for a query

    Hi, Oracle 10g r2. I have a page with a listbox item, and a "cart" that can contains values from the listbox (user can add values from the listbox to the cart). I want to filter a report depending on the values in the cart and the value selected in t

  • Consoles in AS 10.1.2

    I'm restarting a server that was used by another person and i have been able to get up and running the infrastructure and the middle tier, however for some reason i cant get into the Database Control Console i have looked under the install folder in

  • Turning off autofill? Maybe using keychain?

    Hello! I'm selling my mac to a friend and have been altering preferences and files for him. But every time I go to change preferences it says "System Preferences requires that you type your password." and then prompts me to enter in Name and Password

  • How JBO Tester can find non-Oracle JDBC driver?

    1.JD 3.2(BC4J 3.2) can build bc4j application on foreign database. 2.download Informix JDBC 2.11 Driver and modify jdeveloper.ini to add the dirver classpath 3.successfully create a bc4j projects (informix jdbc url: jdbc:informix-sqli://myhost:1533:i

  • How do i turbo boost my 2.7 i7 macbook pro 15" retina to 3.7?

    Hello everyone... ...can someone tell me how to turbo boost my 2.7 i7 macbook pro 15" retina to 3.7? Being quite new to laptops (my G4 lasted me 9 years!) I'm not quite sure what to do or look for. Any advice much appreciated! Glenn