An error with the 7.7 ODBC on the Linux

Dear Gentlmen,
I have some problems with a new version (7.7.06.09) of the MaxDB database.
My application is a web application on the ExtJSApachePHPZendFrameWorkMaxDB platform.
The MaxDB and other parts are installed on the  Fedora Core Linux  server.
The PHP is connecting to the MaxDB via ADO+unixODBC interfaces (unixODBC 2.2.14).
I had no problems with the 7.6 version of the database.
But, the problems are appear then I was install the 7.7 version.
A sample query for  selecting all children for the current parent have an error now.
In my PHP application I have no answer from the database. If I execute this query
via isql program (DSN with 7.7 ODBC) (from unixODBC) then I see a segmentation fault error.
But, if I connect to the MaxDB 7.7 via  ODBC 7.6 driver (from Version = 7.6.06 Build 003-121-202-135)
I have no problem in my PHP application and isql too.
If I execute this query from another computer with Database Studio and Winodws, I have no error too.
Install info:
INSTALLER_INFO: Version = 7.7.06 Build 009-121-202-944
INSTALLER_INFO: Changelist = 202944
INSTALLER_INFO: MakeId = 360684
INSTALLER_INFO: Type = kit
SYS_INFO: Host name = myhost.com
SYS_INFO: System = Linux
SYS_INFO: Architecture = I386
SYS_INFO: Version = 2.6.15
SYS_INFO: Subversion = 1.2054_FC5smp
SYS_INFO: C Runtime = GLIBC 2.4
/root/.odbc.ini
[DSN6]                                                                               
ServerDB=NTL                                                                               
ServerNode=127.0.0.1                                                                               
Driver=/opt/sdb/interfaces/odbc/lib/libsqlod.so                                                                               
[DSN7]                                                                               
ServerDB=NTL                                                                               
ServerNode=127.0.0.1                                                                               
Driver=/opt/sdb/programs/lib/libsdbodbc.so  
table fr_form
create table "NADMIN"."FR_FORM"(
     "ID" FIXED (10) not null default SERIAL (1),
     "ID_TYPE" INTEGER not null,
     "ID_GROUP" INTEGER,
     "ID_USER" INTEGER not null,
     "ID_PARENT" INTEGER,
     "SORTORDER" INTEGER default          10,
     "PNAME" VARCHAR (36) ASCII,
     "NAME" VARCHAR (512) ASCII,
     "REMARK" VARCHAR (1024) ASCII,
     "RVALUE" VARCHAR (1024) ASCII,
     "ISARCH" INTEGER default           0,
     "ISCPAQ" INTEGER,
     "RCOUNT" INTEGER,
     "ISSUBACCESS" INTEGER,
     "SUBTYPE" INTEGER default           0,
     "ISNUMBER" INTEGER default           0,
     "IS_HAVE_CHILD" SMALLINT default      0,
constraint SYSPRIMARYKEY primary key ("ID"),
     foreign key "SYS_USER_FR_FORM" ("ID_USER") references "NADMIN"."SYS_USER" ("ID") on delete restrict,
     foreign key "FR_FORM_FR_FORM" ("ID_PARENT") references "NADMIN"."FR_FORM" ("ID") on delete restrict,
     foreign key "FR_GROUP_FR_FORM" ("ID_GROUP") references "NADMIN"."FR_GROUP" ("ID") on delete restrict,
     foreign key "FR_TYPE_FR_FORM" ("ID_TYPE") references "NADMIN"."FR_TYPE" ("ID") on delete restrict)
The query for selecting all children for the current parent with id = 1244
declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level)
as ( select name, id, id_parent, 0
from fr_form where id = 1244
union all select name, id, id_parent, node_level+1
from fr_form, tree where tree.node_id = fr_form.id_parent)
select node_id from tree order by node_level desc
The ODBC trace file
SQLGetFunctions 2009-03-17 13:35:55.322085                                                                               
ConnectionHandle [in]    : 0x92b8e7a                                                                               
FunctionId       [in]    : unknown function id: 23                                                                               
SupportedPtr     [out]   : 1                                                                               
SQLRETURN                : SQL_SUCCESS                                                                               
SQLGetFunctions 2009-03-17 13:35:55.322111                                                                               
ConnectionHandle [in]    : 0x92b8e7a                                                                               
FunctionId       [in]    : SQL_API_SQLGETDIAGREC                                                                               
SupportedPtr     [out]   : 0                                                                               
SQLRETURN                : SQL_SUCCESS                                                                               
SQLGetInfo 2009-03-17 13:35:55.322147                                                                               
ConnectionHandle [in]    : 0x92b8e7a                                                                               
InfoType         [in]    : SQL_DRIVER_ODBC_VER                                                                               
BufferLength     [in]    : 20                                                                               
enc                      : ASCII                                                                               
InfoValuePtr     [out]   : 03.51                                                                               
StringLengthPtr  [out]   : (null)                                                                               
SQLRETURN                : SQL_SUCCESS                                                                               
SQLGetDiagRec 2009-03-17 13:35:55.322215                                                                               
HandleType       [in]    : SQL_HANDLE_DBC                                                                               
Handle           [in]    : 0x92b8e7a                                                                               
RecNumber        [in]    : 1                                                                               
BufferLength     [in]    : 512                                                                               
enc                      : ASCII                                                                               
SQLRETURN                : SQL_NO_DATA                                                                               
SQLRETURN                : SQL_NO_DATA                                                                               
SQLAllocHandle 2009-03-17 13:36:09.768751                                                                               
HandleType       [in]    : SQL_HANDLE_STMT                                                                               
InputHandle      [in]    : 0x92b8e7a                                                                               
OutputHandlePtr  [out]   : &(0x92c0290)                                                                               
SQLRETURN                : SQL_SUCCESS                                                                               
SQLPrepare 2009-03-17 13:36:09.768863                                                                               
StatementHandle  [in]    : 0x92c0290                                                                               
StatementText    [in]    : 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( select na
m fr_form where id = 1244 union all select name, id, id_parent, node_level+1 from fr_form, tree where tree.node_id = fr_form.id_\  
parent) select node_id from tree order by node_level desc '                                                                        
TextLength       [in]    : SQL_NTS                                                                               
enc                      : ASCII                                                                               
::PARSE 'SQLCURS_2' 2009-03-17 13:36:09.769094 [0x0x92da5f8]                                                                       
SQL COMMAND:'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( select name, id, id_pare
m fr_form where id = 1244 union all select name, id, id_parent, node_level+1 from fr_form, tree where tree.node_id = fr_form.id_\  
parent) select node_id from tree order by node_level desc '                                                                        
^                                                                               
<CURRENT WRITE POSITION>.
Pavel

SQL Studio 7.6.0.21, Windows XP, mode Internal.
1) If not empty result set - result OK
2) If empty result set (condition with ID is not in table) - result OK (null)
SAP MaxDB Database Studio7.7.06.09, Build: 009-123-202-944
1) If not empty result set - result error: Error Executing 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( ...' [-4000]: Unknown result table.
2) If empty result set (condition with ID it not in table) - result: Statement 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( ...' successfully executed in 0 ms.  - No result
BUT, if I set the SQL mode to the Oracle mode, then the query is executed OK:
Statement 'declare c cursor for with recursive tree (node_name, node_id, node_id_parent, node_level) as ( ...' successfully executed in 0 ms.
Regards Pavel

Similar Messages

  • Error with the assosication

    I am getting follwoing error with the Assosiations. Please anybody let me know how to solve.
    Error: oracle.apps.ar.hz.components.contact.server.HzPuiContactCRoleAS: The association end(s) do not specify an attribute.

    See http://forums.adobe.com/thread/771689?tstart=0

  • Error with the Package Request while uploading epub package onto ACS4.

    Hi,
    Error with the Package Request while uploading epub package onto ACS4.
    There was an error with the Package Request::<error xmlns="http://ns.adobe.com/adept" data="E_PACK_DATABASE http://localhost/packaging/Package Incorrect%20string%20value:%20'\x92Apran...'%20for%20column%20'creato r'%20at%20row%201"/>
    Cheers
    Vikas

    See http://forums.adobe.com/thread/771689?tstart=0

  • Error with the Receiver JMS Adapter (Connection On-Demand feature)

    Hi,
    In high volume we are experiencing errors with the Receiver JMS Adapter and the connection On-demand feature:
    Adapter Framework caught exception: while trying to invoke the method com.sap.aii.adapter.jms.api.connector.DisconnectorListener.notifyEvent(java.lang.String) of an object loaded from local variable 'listener'
    Delivering the message to the application using connection JMS_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: while trying to invoke the method com.sap.aii.adapter.jms.api.connector.DisconnectorListener.notifyEvent(java.lang.String) of an object loaded from local variable 'listener'.
    The message status was set to WAIT.
    Looks like the message is successfuly reprocess after the wait period but the ALEAUD/Akcnowledgment are not successful in the sender ECC system. (SAP -> PI - > JMS)
    Any idea?
    PI 7.1 EHP1
    Thanks,
    Martin
    /people/sunil.ojha5/blog/2010/08/31/review-of-sap-pi-jms-adapter-on-demand-connection-feature
    Edited by: Martin Lavoie Rousseau on Jun 3, 2011 3:21 PM

    Please ensure to have specified an User and password to connect to JMS server (don't leave the fields empty).

  • Download error with the iTunes store

    I've been trying to download All the Bird Songs of Britain and Europe from the iTunes store for the past couple days.  I just get a message that says "Error with the iTunes store.  Try again later."  Anyone have any suggestions?

    What steps have you tried to resolved it? Have you tried signing out and back into your account? If that doesn't work, contact Apple.
    https://expresslane.apple.com/

  • Errors with the global conversion rule for the field 0SOURSYSTEM.

    Hello Gurus,
        We are implementing CRM Activities. I enhanced the data source and when I add new info objects to 0SAL_DS01 DSO and trying to activate I'm getting there errors. Can some one please help me out in this problem?
    Error in global conversion rule for InfoObject 0SOURSYSTEM
    Message no. RSAR263
    Diagnosis
    Errors with the global conversion rule for the field 0SOURSYSTEM.
    System Response
    The function module delivers the following error message:
    Field "" is unknown. It is neither in one of t
    Procedure
    Check the definition of the global conversion rule for an InfoObject
    What does this error mean? We are using BI 7.
    Thanks
    RKR

    I have around 9 source systems, do I have to maintain data for all of them for 0SOURCESYSTEM?
    I set data for CRM system and then tried to activate.. but still I'm getting same error.
    I;m getting this warning too...
    InfoObject 0FISCVARNT needs to be in key for DataStore object C_0SAL_D
    Message no. RSDODSO123
    Diagnosis
    Characteristic 0FISCVARNT is included in the data part of ODS object C_0SAL_D.
    System Response
    The fiscal year variant cannot be used in the update rules for calculating business hour characteristics.
    Does this matter???
    Thanks
    RKR
    Message was edited by:
            RKR M

  • Errors with the global conversion rule

    Hi Guys,
    When I activate the DSO,I get an error "Errors with the global conversion rule".I applied OSS note 1387854.But the problem still persists.I did not find any replies on SDN for this error,so posting it again.
    If anyone knows how to proceed,please help! <REMOVED_BY_MODERATOR>
    Thanks,
    Sri
    Edited by: Pravender on Dec 9, 2010 4:51 PM

    the error might show due to which infoobject this error is happening.
    that particular infoobject might conatin a transfer routine. Open the transfer routine in the infoobject, do a dummy change, save the routine and activate the infoobject, then try activating the DSO.
    this might do the trick . Hope this helps.
    rgds, Ghuru

  • Communication error with the LOCAL_EXEC Function BAPI_PTMGREXTATTABS_CHECK

    Hello,
    We use timesheet (CATS) in a separate SAP system from the SAP system in which HR resides.
    I found out how the loosely coupled scenario with CATS works with a SAP HR system. We transfer the workschedule and absence data with report RPTIMEOVERVIEW_REPLICATE to the SAP system in which CATS is used. This data is then available in the PTIMEOV1 table to perform time checks in CATS. The distribution model for ALE takes care of the fact that the data is posted into table PTIMEOV1. With BD97 I set up that the BAPI: PTMGREXTATTABS.CHECK has RFCdestination for synchronous calls  = LOCAL_EXEC.
    When I want to record on an attendance code without clock times then the above works fine. The SAP system in which CATS resides looks into table PTIMEOV1. So far so good.
    However, when I want to record hours WITH clock times then I cannot save the data. The error message HRTIM00CATS667 shows up:
    "Communication error with the LOCAL_EXEC Function BAPI_PTMGREXTATTABS_CHECK is no t available  system"
    Diagnosis
    An error has occured during communication with the HR System. The HR data in the time sheet cannot be validated.
    From the error message description it seems that it wants to check the SAP HR system instead of looking for the check in the SAP system in which CATS resides.....
    When I change the value from LOCAL_EXEC to the system in which HR resides then the error disappears, but then it really checks into the SAP HR system (synchronous check with that SAP HR system) and that is not what the customer wants. The check should be local on the PTIMEOV1 table (in case the SAP HR system is down).
    I did not find any OSS notes on the topic....or other info on SDN.
    Can anyone help me out concerning this starnge error message, at least for me?
    Thanks very much in advance,
    Kind regards,
    Mirko

    "A point to add"
    I just noticed that following message is being continously receiving in the database alert_log:
    Sat Oct 9 16:04:52 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:05:32 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:06:30 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:07:10 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:09:35 2010
    Incremental checkpoint up to RBA [0x1d.1f9928.0], current log tail at RBA [0x1d.1f9a79.0]
    Sat Oct 9 16:11:52 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:29:40 2010
    Incremental checkpoint up to RBA [0x1d.1f9b87.0], current log tail at RBA [0x1d.1f9bf4.0]
    ~
    Please help.

  • Our apologies but there was an unexpected error with the application. This problem has been noted, and an email has been sent to the administrators. Please check back in a few hours to try the download again. What is

    What is going on here. I've waited 4 weeks for my ipad which will not do anything untill I've downloaded the latest version of itunes which I can't do because this message keeps appearing,
    Our apologies but there was an unexpected error with the application.
    This problem has been noted, and an email has been sent to the administrators.
    Please check back in a few hours to try the download again.
    Reading another post, someone is still trying after two days!
    Anyone got a solution to this please, or, if not, does anyone know how to email itunes.
    Thanks, Allan

    Found this
    http://www.v3.co.uk/v3-uk/download-review/1955243/apple-itunes-1011
    Hope it helps

  • Ical won't sync with yahoo calendar. Get error....There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/xyx/Inbox/" is not an inbox.').

    Hello, I get the below error when I start iCal and it tries to sync with my Yahoo Calendar. Any thoughts?
    There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/xyx/Inbox/" is not an inbox.').

    I am having same problem - I've added events to Ical and it's not updating in my Yahoo calendar. Getting this message: There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/mcarthur_c/Inbox/" is not an inbox.').

  • CF11 is crashing ( application pool suffered a fatal communication error with the Windows Process Activation Service)

    I have a cluster of 2 IIS web servers on Windows Server 2008 R2. They had been running on CF10 for over a year (if not two) with no problems. I upgraded one server to CF11 and now that server is crashing while the CF10 servers is still running fine.
    In the Windows event log I'm seeing 4 instances of this error:
    "A process serving application pool '******' suffered a fatal communication error with the Windows Process Activation Service. The process id was '4652'. The data field contains the error number."
    Then finally:
    "Application pool '******' is being automatically disabled due to a series of failures in the process(es) serving that application pool.".
    Looking at the application pool in the IIS admin it is stopped. Restarting will resolve but it will eventually crash.
    What could be the issue?
    -Phil

    I'm seeing in the CF logs leading up to the crash:
    Jun 04, 2014 11:11:31 AM org.apache.coyote.ajp.AjpProcessor getRealPathFromServer
    SEVERE: Error in getRealPathFromConn
    java.net.SocketException: Connection reset by peer: socket write error
      at java.net.SocketOutputStream.socketWrite0(Native Method)
      at java.net.SocketOutputStream.socketWrite(Unknown Source)
      at java.net.SocketOutputStream.write(Unknown Source)
      at org.apache.coyote.ajp.AjpProcessor.getRealPathFromServer(AjpProcessor.java:402)
      at org.apache.coyote.ajp.AbstractAjpProcessor.getRealPath(AbstractAjpProcessor.java:1276)
      at org.apache.naming.resources.FileDirContext.doGetRealPath(FileDirContext.java:202)
      at org.apache.naming.resources.BaseDirContext.getRealPath(BaseDirContext.java:424)
      at org.apache.catalina.core.StandardContext.getRealPath(StandardContext.java:4660)
      at org.apache.catalina.core.ApplicationContext.getRealPath(ApplicationContext.java:432)
      at org.apache.catalina.core.ApplicationContextFacade.getRealPath(ApplicationContextFacade.ja va:333)
      at coldfusion.runtime.ServletContextWrapper.doGetRealPath(ServletContextWrapper.java:184)
      at coldfusion.runtime.ServletContextWrapper._doGetRealPath(ServletContextWrapper.java:116)
      at coldfusion.runtime.ServletContextWrapper.getRealPath(ServletContextWrapper.java:98)
      at coldfusion.filter.FusionContext.getRealPath(FusionContext.java:999)
      at coldfusion.filter.FusionContext.getRealPath(FusionContext.java:937)
      at coldfusion.runtime.RuntimeServiceImpl.resolveTemplatePath(RuntimeServiceImpl.java:866)
      at coldfusion.tagext.lang.IncludeTag.setTemplate(IncludeTag.java:420)
      at cfApplication2ecfc1835967654.runPage(C:\Data\http\domain\apps\Application.cfc:3)
      at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:246)
      at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
      at coldfusion.runtime.TemplateProxyFactory.resolveComponentHelper(TemplateProxyFactory.java: 538)
      at coldfusion.runtime.TemplateProxyFactory.resolveName(TemplateProxyFactory.java:248)
      at coldfusion.runtime.TemplateProxyFactory.resolveName(TemplateProxyFactory.java:159)
      at coldfusion.runtime.TemplateProxyFactory.resolveFile(TemplateProxyFactory.java:120)
      at coldfusion.cfc.CFCProxy.<init>(CFCProxy.java:138)
      at coldfusion.cfc.CFCProxy.<init>(CFCProxy.java:84)
      at coldfusion.runtime.AppEventInvoker.<init>(AppEventInvoker.java:64)
      at coldfusion.filter.PathFilter.resolveApplicationScope(PathFilter.java:195)
      at coldfusion.filter.PathFilter.invoke(PathFilter.java:124)
      at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94)
      at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
      at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
      at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58)
      at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
      at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
      at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
      at coldfusion.CfmServlet.service(CfmServlet.java:219)
      at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:303)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
      at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
      at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:241)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
      at sun.reflect.GeneratedMethodAccessor118.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at com.intergral.fusionreactor.j2ee.filterchain.WrappedFilterChain.doFilter(WrappedFilterCha in.java:97)
      at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doNext(FusionReactorR equestHandler.java:472)
      at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doHttpServletRequest( FusionReactorRequestHandler.java:312)
      at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.doFusionRequest(Fusio nReactorRequestHandler.java:192)
      at com.intergral.fusionreactor.j2ee.filter.FusionReactorRequestHandler.handle(FusionReactorR equestHandler.java:507)
      at com.intergral.fusionreactor.j2ee.filter.FusionReactorCoreFilter.doFilter(FusionReactorCor eFilter.java:36)
      at sun.reflect.GeneratedMethodAccessor117.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at com.intergral.fusionreactor.j2ee.filterchain.WrappedFilterChain.doFilter(WrappedFilterCha in.java:79)
      at sun.reflect.GeneratedMethodAccessor116.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at com.intergral.fusionreactor.agent.filter.FusionReactorStaticFilter.doFilter(FusionReactor StaticFilter.java:53)
      at com.intergral.fusionreactor.agent.pointcuts.NewFilterChainPointCut$1.invoke(NewFilterChai nPointCut.java:41)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
      at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:422)
      at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:198)
      at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.jav a:607)
      at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:313)
      at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
      at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
      at java.lang.Thread.run(Unknown Source)

  • Help, I get error 13019 when trying to sync my 5th generation ipod. I see others have had this error with the touch, but this is not the touch. What can be done?

    Help, I get error 13019 when trying to sync my 5th generation ipod. I see others have had this error with the touch, but this is not the touch. Does anyone have any ideas what can be done?

    follow the steps in this article first
    =http://support.apple.com/kb/HT1451
    after that restore your ipod and resync it
    hope this helps:)

  • I tried updating my iphone 4s to the ios 7 but it said error with the firmware now my phone is stuck in recovery mode and i have no idea how to fix it any suggestions??

    i tried updating my iphone 4s to the ios 7 but it said error with the firmware now my phone is stuck in recovery mode and i have no idea how to fix it any suggestions??

    Try Restoring it 3 times in a row and see if that works.
    If not that error can indicate one of two things: Your iPhone was at one time jailbroken, had the iOS version rolled back, or ran an unauthorized beta and if none of those things are true it is a hardware error.

  • I am unable to burn any info-photo ect on to a disk. I have a 27" I mac mid 2010 version. I put in a disk, hit burn, it runs for about 3 mins and ejects the disk sayiny there was an error with the drive and will not restart.

    am unable to burn any info-photo ect on to a disk. I have a 27" I mac mid 2010 version. I put in a disk, hit burn, it runs for about 3 mins and ejects the disk sayiny there was an error with the drive and will not restart.

    The optical drive has probably failed. It's a fairly common thing with these slim SuperDrives. Does it read any discs you put into it? You can try resetting the SMC and pram but I'll be surprised if it helps.
    To reset the SMC
    Shut down the computer.
    Unplug the computer's power cord.
    Wait fifteen seconds.
    Attach the computer's power cord.
    Wait five seconds, then press the power button to turn on
    Resetting PRAM and NVRAM
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • What is a user parameter list in iMovie? I am trying to sent the movie from imovie to idvd and I keep getting an error with the user parameter list. Help?

    What is a user parameter list in iMovie? I am trying to sent the movie from imovie to idvd and I keep getting an error with the user parameter list. Help?

    Can you give more details?   What exactly is the entire error message text?  there should be an error number too.   Are you trying to finalize this to an external disk?

  • I just tried to install Photoshop 4.0 to my iMac (version 10.9.3) and I was informed that there was an error with the software.  I could not install it.  Where do I go from here?

    I just tried to install Photoshop 4.0 to my iMac (version 10.9.3) and I was informed that there was an error with the software.  I could not install it.  Where do I go from here?

    Photoshop 4.0 is not compatible with MAC 10.9.3 . You will face issues as when Photoshop 4.0 was launched there was no MAC Mavericks and Adobe has not tested the version on new MAC OS.
    If you want you can download the latest version of Photoshop CC 2014 and you can use it as a trial for 30 days and you can plan to switch to the latest version.
    http://www.adobe.com/products/photoshop.html

Maybe you are looking for

  • Video on 2nd Monitor distorted and half sized

    My superintendent has a X300 series laptop that he got when they first came out. We are running Windows XP Pro with SP3 on it. He has always connected a 2nd larger LCD screen on the vga output connector when in his office which has been working great

  • Function Modules for PM

    Hi,       Can any body please tell me what are the function modules available in PM I am particularly interested in following two funcitonal modules 1.Order confirmation 2.Order complition (TECO) Regards Amar

  • My ipod classic will not recharge or restore

    my ipod classic will not recharge or restore

  • Low Battery time after Mountain Lion Update

    I would like to know why the Mountain Lion uses more energy... because i realized that my MBP 2011 is using more battery... before I updated it, it usually take 5 or 6 hours to be empty and now it is taking 3 or 4 hours on it's better time... =x is t

  • TREX connected to CRM through EP

    Hi folks, We’d need to know search capabilities of TREX connected to CRM. Our purpose is to search any CRM data or CRM object (users, notices, applications and so on) using TREX through EP. Is this possible? Could someone provide us documentation on