It may be a bug?

My english is very pool, and I'm an archlinux newbie ,but I want to tell something:
It may be a bug?
Because I had to write something like "pppoe-start" and "startxfce4" every time when I login(I use init 3 in my /etc/inittab),so I try to put them into rc.local,but I don't know how to do,and just simply write them down like below:
#!/bin/bash
# /etc/rc.local: Local multi-user startup script.
pppoe-start
startxfce4
When I reboot I found myself login root without password!
When I click "Log Out Dialog" and choose "Shut Down",it can't work,and I had to open terminal emulator then "shutdown -h now".
I "#pppoe-start" and it's the same,so it's because of the "startxfce4"
So,I think it may be a bug.
If you use xfce4,you can try.If it really a bug,let more people know and let archlinux team know.
If you are an chinese,you can see:
https://bbs.archlinux.org/viewtopic.php … 3#p1001933

I think you should be starting pppoe using the pppd daemon as described here: https://wiki.archlinux.org/index.php/PP … _with_pppd
And you should put the "startxfce4" line in your ~/.xinitrc file, not /etc/rc.local : https://wiki.archlinux.org/index.php/Xf … _boot_time

Similar Messages

  • Afraid it may be a bug of some discription

    Afraid it may be a bug of some discription.
    Hi,
    I have a couple problems, maybe someone can help..
    first of all a Box opened on my screen upon startup telling me that it was necessary to down load and reinstall Yosimite as there was a problem. Done this and the next thing that happened was Apertures failure to load pictures from the desktop. I am now plagued with a web site telling me to commit to a 30sec. survey, this occurs at most sites that I try to log into,in either Safari or Firefox.. I have also noticed the latter on my other computer. Can anyone show some light on this problem and what I should do to get rid of this annoyance. I also have been getting warnings from Flash Player. (Attached). The Html site (SURVEY) was not added by me.
    Another question. Is it necessary to install Java Runtime.
    JohnL.
    iMac Late 2009, Yosimite.
    I have some screen shots attached.
    For some reason I have not been able to post the shots as PDF.

    save your screenshots as JPG or PNG - although PDFs appear to be selectable, they are in fact not supported
    without knowing a bit more, it looks like you have some malware and/or adware - perhaps the screens will help identify it

  • HP 6629A Driver for Labview 2009 may have a bug?

    6629A config output.vi that came with the driver may have a bug.  I am pretty new to labview so maybe I am incorrect, but the current range boolean was not wired to the T/F select block with the current limits for the instrument in high current and low current mode.  Instead the voltage range boolean was wired to that block.  Maybe I don't understand the operation of the instrument fully, but this seems like a mistake to me.  Any comments/help would be appreciated.

    Well, I already kind of fixed my version of it.  I will post that for now.  If you want I can post the original version of the vi that came with it when I downloaded the drivers.  The vi in question is called '6629A Config Output.vi'
    This is a link to the operating manual for the instrument:
    http://www.home.agilent.com/agilent/editorial.jspx?cc=GB&lc=eng&ckey=1000000433:epsg:man&nid=-11143....
    I hope that is what you needed.
    Thanks for looking into this.
    Attachments:
    HP662XA.LLB ‏509 KB

  • Find: WARNING: Hard link count is wrong for /proc/1: this may be a bug

    hi all,
    when i 'find / -name abc' , it say:
    find: WARNING: Hard link count is wrong for /proc/1: this may be a bug in your
    filesystem driver.Automatically turning on find's -noleaf option. Earlier
    results may have failed to include directories that should have been
    searched.
    my kernel is 2.6.25, filesytem is ext2/boot ext3/other
    thank you!
    Last edited by wonglaye (2008-05-30 14:34:21)

    I'll highlight the important parts from that link for you:
    Question wrote:I routinely use "find / -name ......", so how do I eliminate /proc from the search path?
    Answer wrote:
    I almost always use the "-xdev" option to prevent 'find' from descending
    into file systems other than the ones I explcitly specified, e.g.,
         find -xdev / /usr /var ...
    It's pretty rare that I actually want to search my entire system, which
    would include a news spool, a seldom used MS-Windows file system,
    possibly a mounted CD or DVD, ..., and of course /proc.
    why_no_proc wrote:The problem with the link count in /proc is that it changes every time a
    process is created or terminates, so the number of directories that
    'find' sees during processing might not agree with the link count that
    it read at the start. I admit that doesn't seem terribly likely unless
    the system is quite busy, but it can certainly happen.
    Last edited by dyscoria (2008-05-31 11:11:19)

  • Documentpreferences.masterTextFrame is not working (may be a bug)

    Hi All,
    var content_Doc = app.documents.add(true, undefined, {documentPreferences:{pagesPerDocument: 5, masterTextFrame:true}});
    alert(content_Doc.documentPreferences.masterTextFrame);
    I need to create a document with master text frame option enabled. I have used the above script to do that. It fails to create a master text frame. But in alert message it gives "true".
    Am I missing some thing, or some other property is need to be included along with that.
    OT: Previously also I had a similar problem in setting textFrame's stroke width. Refer here... http://forums.adobe.com/message/4015292
    Green4ever

    Hi Green,
    It sounds like a bug to me—and we can notice that there is a similar known issue with presetting margins prefs during document construction.
    A workaround is to temporarily adjust the root app.documentPreferences:
    var docPrefs = app.documentPreferences,
        backup = docPrefs.properties;
    docPrefs.properties = {
        masterTextFrame: true,
        pagesPerDocument: 5
    var doc =  app.documents.add();
    docPrefs.properties = backup;
    @+
    Marc

  • May be a BUG: DELETE with same predicate as SELECT fails

    Hi,
    I select a concatenation of rowid and ora_rowscn as
    SQL>SELECT ROWID||ORA_ROWSCN FROM TT;
    OUTPUT:
    ROWID||ORA_ROWSCN
    AAADkOAAEAAAADWAAA1006305
    Now when i select as
    SQL> SELECT * FROM TT
      2  WHERE
      3  ROWID = 'AAADkOAAEAAAADWAAA'
      4  AND
      5  ORA_ROWSCN = 1006305;
    OUTPUT:
    ONE
    A
    but when i try to delete as
    SQL> DELETE FROM TT
      2  WHERE
      3  ROWID = 'AAADkOAAEAAAADWAAA'
      4  AND
      5  ORA_ROWSCN = 1006305;
    OUTPUT:
    0 rows deleted.
    Again, when i try Update as
    SQL> UPDATE  TT SET ONE='PPP'
      2  WHERE
      3  ROWID = 'AAADkOAAEAAAADWAAA'
      4  AND
      5  ORA_ROWSCN = 1006305;
    OUTPUT:
    1 rows updatedWhy this is so?
    If it is BUG then, How can i raise a it for "Oracle Database 10g Express Edition" ?
    Kind Regards,
    Thanks.
    Gurpreet S. Gill

    No,No its a big project( with around 20 GB of
    database)
    we are just migrating our back end only, as the
    client want our application to run on Oracle but the
    current Back end is SQL BASE.Can't say I'm familiar with this product.
    As in our application, we are using 100% of SQL
    statements, which are similar in both SQL Base &
    Oracle.Similiar?
    We had success fully converted the same application
    into SQL Server too( without changing the application
    code)sqlserver and Oracle do differ in several aspects of their architecture.
    this is where the oracle is lacking off.Or the model of said backend, if tracking changes is done by some internal mechanism that can and will be different on different products/patforms.
    C.

  • Command Link doesn't work - may be a bug

    Hi all,
    I'm using JDev 11g. I added two pages to the adfc-config.xml file and a controlFlowCase from one to another. Page1--> Page2 The action name is "aaa".
    And then i added a command link to the Page1 and selected the action name "aaa". Now i'm click the command link, but it doesn't work. I'm shocked. What is the problem? It's so basic thing.
    Erdo

    I'm running just like you said. Here is the error log :
    oracle.jbo.JboException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-29000. Error message parameters are {0=java.lang.NullPointerException, 1=null}
         at oracle.adf.model.binding.DCIteratorBinding.reportException(DCIteratorBinding.java:376)
         at oracle.adf.model.binding.DCIteratorBinding.callInitSourceRSI(DCIteratorBinding.java:1693)
         at oracle.adf.model.binding.DCIteratorBinding.internalGetRowSetIterator(DCIteratorBinding.java:1645)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4395)
         at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:341)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.isAttributeUpdateable(JUCtrlValueBinding.java:1647)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.isAttributeUpdateable(JUCtrlValueBinding.java:1754)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.isUpdateable(JUCtrlValueBinding.java:2610)
         at oracle.adfinternal.view.faces.model.AdfELResolver._isReadOnly(AdfELResolver.java:96)
         at oracle.adfinternal.view.faces.model.AdfELResolver.isReadOnly(AdfELResolver.java:112)
         at javax.el.CompositeELResolver.isReadOnly(CompositeELResolver.java:353)
         at com.sun.faces.el.DemuxCompositeELResolver._isReadOnly(DemuxCompositeELResolver.java:290)
         at com.sun.faces.el.DemuxCompositeELResolver.isReadOnly(DemuxCompositeELResolver.java:319)
         at com.sun.el.parser.AstValue.isReadOnly(Unknown Source)
         at com.sun.el.ValueExpressionImpl.isReadOnly(Unknown Source)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.cacheReadOnly(EditableValueRenderer.java:416)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.beforeEncode(LabeledInputRenderer.java:128)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:340)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeFormItem(PanelFormLayoutRenderer.java:1015)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer.access$100(PanelFormLayoutRenderer.java:46)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1491)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1410)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:170)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:255)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeChildren(PanelFormLayoutRenderer.java:352)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer.encodeAll(PanelFormLayoutRenderer.java:187)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
    ...

  • May be a bug.. please look into this

    Hi,
    for ex:
    there is a table like
    desc trade;
    trade_date date
    day_high number
    day_low number
    day_open number
    day_close number
    there are many records right from trade_date 01-jan-05 to till date. If i want to query records of any perticular date returns no records, here sql query...
    select * from trade
    where trade_date = '&dt';
    No rows returned on any date enetered when i execute in oracle 9.2.0.1.0 - Production
    same query returns rows when i execute in oracle 8.0.4.0.0
    It returns records when i write the same query like
    select * from trade
    where to_char(trade_date,'DD-MON-YY') = '&dt';
    OR
    select * from trade
    where to_date(trade_date) = to_date('&dt','DD-MON-YY');
    please tell me about this.
    Thanks

    What values are you entering, and what range of values do you have on the database? '01-JUN-05' will currently evaluate to 2005 whether you use 'DD-MON-RR' or 'DD-MON-YY'.
    Perhaps you have some dates in the database that are 1905 when they should be 2005?
    It's safer to avoid two-digit years.

  • InetAddress.getByName problem - may be a BUG

    in some case InetAddress doesn't perform reverse DNS resolution.
    I have the following code:
    System.out.println(InetAddress.getByName("216.109.125.71").getHostName());
    System.out.println(InetAddress.getByName("216.140.14.146").getHostName());
    the output is:
    main02.dom.dcn.yahoo.com
    216.140.14.146
    but on the same computer I can perforn nslookup and ping
    E:\Documents and Settings\dima>ping -a 216.140.14.146
    Pinging p8-0.e0.dnvr.broadwing.net [216.140.14.146] with 32 bytes of data:
    Reply from 216.140.14.146: bytes=32 time=229ms TTL=239
    Reply from 216.140.14.146: bytes=32 time=220ms TTL=239
    Any Ideas ?
    Thanks a lot
    Dima

    NS specified by NSLU and adapter binding are different or are in different order.

  • A bug when refreshing a materialized view?

    I am getting "ORA-00603: ORACLE server session terminated by fatal error" upon refresh of a materialized view. I've put together a test case to demonstrate the problem. Is it a bug?
    SQL*Plus: Release 10.1.0.3.0 - Production on Fri Jul 29 13:43:45 2005
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.6.0 - Production
    [email protected]> create table t (
      2  id int primary key,
      3  t_name varchar2(10),
      4  t_date date
      5  );
    Table created.
    [email protected]> create materialized view log on t
      2    with rowid (t_name, id, t_date) including new values;
    Materialized view log created.
    [email protected]> create materialized view t_mv
      2   build immediate
      3   refresh fast
      4   on commit
      5  as
      6   select t_name, max(id) id, max(t_date) t_date, count(*)
      7     from t
      8    GROUP BY t_name;
    Materialized view created.
    [email protected]> create materialized view log on t_mv
      2    with rowid (id) including new values;
    Materialized view log created.
    [email protected]> create table v (
      2  id int primary key,
      3  t_id int references t(id) on delete cascade,
      4  v_name varchar2(10)
      5  );
    Table created.
    [email protected]> create materialized view log on v
      2    with rowid (v_name, t_id) including new values;
    Materialized view log created.
    [email protected]> create materialized view v_mv
      2   build immediate
      3   refresh fast
      4   on commit
      5  as
      6  select v.rowid rowid1, t_mv.rowid rowid2, v.v_name, v.t_id
      7  from v, t_mv
      8  where v.t_id = t_mv.id;
    Materialized view created.
    [email protected]> alter table v_mv
      2  add constraint v_mv_uk1 unique
      3  (
      4  v_name
      5  )
      6   enable
      7  ;
    Table altered.
    [email protected]> insert into t (id, t_name, t_date) values (1, 'A', sysdate);
    1 row created.
    [email protected]> insert into t (id, t_name, t_date) values (2, 'B', sysdate);
    1 row created.
    [email protected]> insert into t (id, t_name, t_date) values (3, 'A', sysdate);
    1 row created.
    [email protected]> insert into t (id, t_name, t_date) values (4, 'A', sysdate);
    1 row created.
    [email protected]> insert into t (id, t_name, t_date) values (5, 'B', sysdate);
    1 row created.
    [email protected]> insert into v (id, t_id, v_name) values (1, 1, 'V_A_1');
    1 row created.
    [email protected]> insert into v (id, t_id, v_name) values (2, 2, 'V_B_1');
    1 row created.
    [email protected]> insert into v (id, t_id, v_name) values (3, 3, 'V_A_2');
    1 row created.
    [email protected]> insert into v (id, t_id, v_name) values (4, 4, 'V_A_3');
    1 row created.
    [email protected]> insert into v (id, t_id, v_name) values (5, 5, 'V_B_2');
    1 row created.
    [email protected]> commit;
    Commit complete.
    [email protected]> insert into t (id, t_name, t_date) values (6, 'A', sysdate);
    1 row created.
    [email protected]> insert into v (id, t_id, v_name) values (6, 6, 'V_B_2');
    1 row created.
    [email protected]> commit;
    commit
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-00001: unique constraint (FESA.V_MV_UK1) violated
    [email protected]> -- ORA-12008 is fine here: that's what was expected
    [email protected]> delete from t where id = 5;
    1 row deleted.
    [email protected]> commit;
    ERROR:
    ORA-03114: not connected to ORACLE
    commit
    ERROR at line 1:
    ORA-00603: ORACLE server session terminated by fatal errorWhy ORA-00603?
    Best regards,
    Maciej

    It may be a bug, or it may be a result of the dependencies between the materialized views. I don't have a 9.2.0.6 instance that I'm willing to trash to test this, but this is what I get on 9.2.0.1.
    If it is a bug they at least changed the behaviour of the bug in 9.2.0.6.
    I ran your script up to the first commit then did:
    SQL> SELECT * FROM t;
            ID T_NAME     T_DATE
             1 A          29-JUL-05
             2 B          29-JUL-05
             3 A          29-JUL-05
             4 A          29-JUL-05
             5 B          29-JUL-05
    SQL> SELECT * FROM t_mv;
    T_NAME             ID T_DATE      COUNT(*)
    A                   4 29-JUL-05          3
    B                   5 29-JUL-05          2
    SQL> SELECT * FROM v;
            ID       T_ID V_NAME
             1          1 V_A_1
             2          2 V_B_1
             3          3 V_A_2
             4          4 V_A_3
             5          5 V_B_2
    SQL> SELECT * FROM v_mv;
    no rows selectedHUH?? But:
    SQL> SELECT v.rowid rowid1, t_mv.rowid rowid2, v.v_name, v.t_id
      2  FROM v, t_mv
      3  WHERE v.t_id = t_mv.id;
    ROWID1             ROWID2             V_NAME           T_ID
    AAAH4QAAIAAAAl1AAD AAAH4MAAIAAAAlFAAA V_A_3               4
    AAAH4QAAIAAAAl1AAE AAAH4MAAIAAAAlFAAB V_B_2               5So, I tried:
    SQL> EXEC DBMS_MVIEW.REFRESH('V_MV');
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM v_mv;
    no rows selectedNow, this is confusing, so:
    SQL> EXEC DBMS_MVIEW.REFRESH('V_MV', 'COMPLETE');
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM v_mv;
    ROWID1             ROWID2             V_NAME           T_ID
    AAAH4dAAIAAAAl1AAD AAAH4ZAAIAAAAlFAAA V_A_3               4
    AAAH4dAAIAAAAl1AAE AAAH4ZAAIAAAAlFAAB V_B_2               5So at least I've got something in the MV. Now, to continue your test:
    SQL> insert into t (id, t_name, t_date) values (6, 'A', sysdate);
    1 row created.
    SQL> insert into v (id, t_id, v_name) values (6, 6, 'V_B_2');
    1 row created.
    SQL> COMMIT;
    Commit complete.I also expected the error but no joy, and look at this:
    SQL> SELECT * FROM v_mv;
    ROWID1             ROWID2             V_NAME           T_ID
    AAAH4dAAIAAAAl1AAE AAAH4ZAAIAAAAlFAAB V_B_2               5Forcing the refresh on v_mv gets:
    SQL> EXEC DBMS_MVIEW.REFRESH('V_MV', 'COMPLETE');
    BEGIN DBMS_MVIEW.REFRESH('V_MV', 'COMPLETE'); END;
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-00001: unique constraint (OPS$ORACLE.V_MV_UK1) violatedVery strange! It gets better:
    SQL> DELETE FROM t WHERE id = 5;
    1 row deleted.
    SQL> commit;
    Commit complete.
    SQL> EXEC DBMS_MVIEW.REFRESH('V_MV', 'COMPLETE');
    PL/SQL procedure successfully completed.
    SQL> select * from v_mv;
    ROWID1             ROWID2             V_NAME           T_ID
    AAAH4dAAIAAAAl1AAF AAAH4ZAAIAAAAlFAAA V_B_2               6 But:
    SQL> SELECT * FROM t_mv;
    T_NAME             ID T_DATE      COUNT(*)
    A                   6 29-JUL-05          4
    B                   5 29-JUL-05          2
    SQL> SELECT * FROM t;
            ID T_NAME     T_DATE
             1 A          29-JUL-05
             2 B          29-JUL-05
             3 A          29-JUL-05
             4 A          29-JUL-05
             6 A          29-JUL-05Obvioulsy, something is not fast refreshing. So lets force it:
    SQL> EXEC DBMS_MVIEW.Refresh('T_MV', 'COMPLETE');
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM t_mv;
    T_NAME             ID T_DATE      COUNT(*)
    A                   6 29-JUL-05          4
    B                   2 29-JUL-05          1
    SQL> SELECT * FROM v_mv;
    ROWID1             ROWID2             V_NAME           T_ID
    AAAH4dAAIAAAAl1AAB AAAH4qAAIAAAAlEAAB V_B_1               2
    AAAH4dAAIAAAAl1AAF AAAH4qAAIAAAAlEAAA V_B_2               6Which looks right to me.
    Then, I blew everything away and did it allagain up to an including the inserts into t, then I inserted into v and commited. Now, both MV's were correct, so I did:
    SQL> insert into t (id, t_name, t_date) values (6, 'A', sysdate);
    1 row created.
    SQL> insert into v (id, t_id, v_name) values (6, 6, 'V_B_2');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> SELECT * FROM t_mv;
    T_NAME             ID T_DATE      COUNT(*)
    A                   6 29-JUL-05          4
    B                   5 29-JUL-05          2Still strange, so blow it all away again insert into t commit, insert into v commit, then:
    SQL> insert into t (id, t_name, t_date) values (6, 'A', sysdate);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> insert into v (id, t_id, v_name) values (6, 6, 'V_B_2');
    1 row created.
    SQL> commit;
    commit
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-00001: unique constraint (OPS$ORACLE.V_MV_UK1) violatedAt least now it sees the error at commit time for v so lets try the delete:
    SQL> delete from t where id = 5;
    1 row deleted.
    SQL> commit;
    Commit complete.
    SQL> SELECT * FROM t_mv;
    T_NAME             ID T_DATE      COUNT(*)
    A                   6 29-JUL-05          4
    B                   5 29-JUL-05          2
    SQL> SELECT * FROM t;
            ID T_NAME     T_DATE
             1 A          29-JUL-05
             2 B          29-JUL-05
             3 A          29-JUL-05
             4 A          29-JUL-05
             6 A          29-JUL-05Still not actually refreshing somehow.
    I may play with this some more, it seems truly strange to me.
    John

  • Error message" The file may be damaged or corrupted -1610153464/ also unable to open projects in the background 26:: 142

    Hello everyone,
    I hope someone can help me.
    I am using AE CC/Windows 7 on a Dell computer, 32 GB RAM, 64 bit op system, processors: Intel (R) Xeon (R) CPU x5670 @ 2.93 Ghz 2.93 Ghz (2 processors).
    So far I had worked on many projects with no problems and then a few weeks ago the project crashed non stop. The problem was overcome when I got rid of all MP3s and converted them to RAM. Again this was an issue I didn't have in the past and I don't recall changing anything.
    Now it seems it is impossible for me to export/render out a project into a Quick time file or even AVI. If its quick time I get this message: After Effects unable to render error  an output module failed. The file may be damaged or corrupted -1610153464 and if I am trying to export with AVI I get this message: AE unable to open projects in the background 26:: 142)
    This is happening with different projects.
    I read the forums and heard that the problem may be a Bug with quicktime and H.264? I never had a problem with it before but again when I try to export AVI I get this error message:
    AE unable to open projects in the background
    I have a feeling it is quick time related. I have uninstalled and reinstalled QT but still get the problem. It will open old QT files no problem. I tried to download a bug fix update as one post suggested but I think I have the latest which is why it didn't work. 
    This particular project has a couple of quick media H.264 files. Do I need to convert them? Are they the cause for all of this?
    I am sorry I really tried to look for answers in the forums before contacting you here but I cannot find a reason for all this mess, which again only appeared a few weeks ago with no problems for months...if someone can point out an area where I can start looking, I would really appreciate it. Thanks in advance.

    update: I converted all the H.264 footage which were in the project to WMV. And I was able to test export with AVI and it turne dout fine (like 10 seconds). However I still got the Error message: "After Effects unable to render error an output module failed, a filme may be corrupted or damaged.  Error-1610153464 " when I tried to export H.264 QT..
    I don't know what to do now, how can a problem which did not exist suddenly come up. How can I export a QT file? with AVI it will be massive!
    Many thanks
    Amanda

  • DUAL MONITOR BUG: One Picture – One Monitor – Different Colors!

    There have been several threads discussing that Photoshop CS4 and OS 10.6. show wrong colors in dual monitor setups.
    The first one to prove this with a screen capture was jb510-LJ0JJQ in August 2009: http://forums.adobe.com/message/2207312#2207312
    Eight months and three OS updates later the problem is still there and makes professional work with more than one monitor a nuisance.
    Here's another actual example: A picture and its 100% identical copy showing different colors on one screen!
    Here's how to repeat it – try this at home ;-)
    1) In the finder make a copy of a rgb picture.
    2) Open one of the two identical pics in photoshop.
    3) Drag it to the other monitor.
    When releasing the mouse button you may see the bug already: the colors will "switch".
    4) To verify this go to system presets - monitors - and change the primary monitor (by dragging the menu bar to the other)
    5) Now open the identical copy you made in step 1) and see the difference!
    Here's a synopsis of suggested workarounds:
    1) disable open GL (which seem to makes no difference on my setup)
    2) click "desaturate monitor colors" but set desaturation to 0 (which prevents visual switching in step 3) (only if openGL is ON) but also leads to a wrong display in step 4+5
    3) make the hardware calibrated monitor your default monitor and strictly avoid changes or dragging pics to the other monitor (which seems to be the only reliable method)
    4) some guys even force both monitors to use the profile of their hardware-calibrated monitor (using color sync) to make sure they see what they should see on at least that one monitor. What a stone-age workaround for the the world's leading imaging program!
    Considering that reliable colors in professional (=multi monitor) settings should be the most basic function of photoshop this mayor malfunction should be solved with CS5! Otherwise we might have to live with it for some more years...
    Have Adobe and Apple realized this bug and on their agenda? Will it be gone with OS 10.6.3? Can anyone explain the reasons for this bad bug? Is there a "officially" recommended workaround?
    Thanks, regards,
    Eric

    There have been several threads dealing with this malfunction. But most faded out in silence or acceptance of the workarounds.
    http://forums.adobe.com/message/2207312#2207312
    http://forums.adobe.com/thread/521483
    http://forums.adobe.com/message/2272192#2272192
    http://forums.adobe.com/thread/311761?start=0&tstart=0
    http://forums.adobe.com/thread/618927?tstart=60
    http://forums.adobe.com/thread/603992?tstart=90
    http://www.wetcanvas.com/forums/showthread.php?t=552977
    http://www.hilfdirselbst.ch/gforum/gforum.cgi?post=368889?search_string=zwei%20monitor#368 889
    But man, this is no minor bug! Consistent colors are the by far most important basic function of photoshop. If you cannot rely on the colors in photoshop you can as well use "Preview" and "Word" for print production ;-)
    Carson, how did Apple react to your complaint? What do you mean with "they don't get it". Do they not see it? Or can't they get it right?
    Shall we open a thread at apple forums to point out that it's not the problem of a single user?

  • A possible bug in the Accordion scripts

    I've encountered what may be a bug in the handling a single
    apostrophe in the tab of an accordion panel. When I use '
    in the tagged element content displayed in the accordion tab, the
    character appears in the tab but any processing of the panels
    stops. When I remove the ' everything is fine. When I swap
    ' for " (or any other special character) this
    also works. So I'm thinking the single quote is affecting the
    javascript somewhere along the line.
    I'm using the 1.4 release of Spry.
    BTW, all special characters in the panel content work just
    fine. It seems to be only the tab that is affected when the content
    there contains this single quote mark special character.
    Unless I'm totally out to lunch or this is one of those magic
    things that self-corrects the minute you ask someone a question
    about it (I hate when that happens).
    Thanks for any help you can give me.

    Hi solsenkp,
    I'm not seeing the problem. Can you post some sample markup?
    --== Kin ==--

  • Ical bug on ipad application exits if I select 1 year ahead

    Anyone else get this.
    If I open the calender app on ipad 3 and select Mar 2013 the application just exits. - May be a bug with the same month one year ahead (Works ok if I select a different month) or just doesnt like Mar 2013

    Not a bug in the app per se. Works fine for me.
    You might consider doing a reset before any additional troubleshooting. Hold the ON and HOME buttons simultaneously until the iPad shuts down. Ignore the off slider if it appears. Takes about 10 - 15 seconds, and will restart on its own.

  • Is this a bug in Numbers?

    Hi,
    I have recently finished my spreadsheet for personal finance tracking, and have just encountered what may be a bug in numbers.
    I have a few sheets in which i collect the relevant data to be used by the appropriate functions.
    This is what I have noticed.
    In one sheet I have spending categories in column 1, and the relevant months in the top row. I have used the SUMIFS function to total transactions by category and month. I wrote the first row of functions and when I was done I merely copied and pasted the functions into the adjacent rows since they are exactly the same, the only variable being the spending category, which I allowed for.
    I have about 10 categories and they all work perfect except for two rows. I find this very unusual since I have copied and pasted the functions, so no room for error, and not only that, all the other rows work perfect - just these two rows don't do the job. Also, it does not give the error sign (the red triangle with the exclamation mark), but the cells simply return the value $0.00. I even re-wrote the functions to try a different method other than and copied version of the function, but I can't get the values to display correctly in the cells.
    Anyways, I just thought that if there is someone else that is encountering the same problem it would be nice to know.
    Thanks
    ST

    Hello
    At last I have responded to the 50 mails received and finished what I had to do in the garden.
    I wish to add that when something doesn't behave as we wish, 99.99% of times, it's because we made a typo.
    Here is a list of common ones :
    (1) Extraneous spaces
    (2) Unwanted duplicated chars
    (3) unwanted or missing parenthesis (or double quotes)
    (4) Error with the parameters separator (semi-colon versus comma)
    (5) add you own common ones
    Case 3 is quite easy to identify because most of the times, it generates a syntax error.
    Case 4 is easier to identify because, as far as I know, it always generates a syntax error.
    I apologizes but I can't describe Case 5's behaviour
    Case 1 and 2 are the more annoying because they may give a formula returning a wrong value without any kind of error message.
    It may be a good idea to keep this list near your machine.
    Yvan KOENIG (VALLAURIS, France) vendredi 26 mars 2010 18:09:36

Maybe you are looking for

  • CPP Assertion Error when navigating in Obiee 11g

    Hi, I have a report which uses SQL filters and I am trying to navigate from this report to another page. And I see the following error : Dashboard Display Error Assertion failure: isXsiTypeSqlExpression(rExpr) at line 67 of C:\ADE\aime_bi\bifndn\anal

  • How to get the next working date?

    Hi, I need to extract data between the 2nd of the month, and second working date of the following month. Here is the code I have to check if the date is a weekend, and check if it is in the Holidays table (for UK Holidays): (This code is to check aga

  • Cannot UN-bold text in a JTextPane

    This is a strange one. I copied the code from my ap into the runable sample below. I can select a portion of text and then click the "Bold" button and the selected text gets turned to bold. Now if I select the bold text and click the bold button agai

  • Remove Mandatory field in Cost center master data

    Dear All,   I want to remove the mandatory person responsible in the cost center master data. How to do this Regards Vasantha

  • Confusion on current version

    I am having a problem on yahoo I believe is JRE related. I have JRE6 install but people keep refering to JRE5 update 11 as the current update. Am I using the wrong program? Yahoo games online is not loading properly, all cache has been cleared.