Trouble Getting OOF to work on Project Server 2013

Hey all,
I am working on getting OOF working on Project Server 2013. I have followed the steps on the TechNet guide.
Once I have done this, I get an error from my manage queue jobs stating that it failed, but was not blocked for each resource. What am I missing? What would be the cause of the failure?
Thanks in advance for the help.
Jonathan

Are you referring to following TechNet
http://technet.microsoft.com/en-us/library/dn155802(v=office.15).aspx
Hrishi Deshpande Senior Consultant

Similar Messages

  • Having trouble getting WebDAV to work on OSX Server 10.6.3

    Guys I hope you can help here.
    I've got an OSX 10.6.3 server behind a BT Business Broadband Hub router. I am trying to set up WebDAV on the file shares so that they can be accessed remotely. I have set it up according to various notes I've read but I can't get it to connect remotely. Can you help please?
    This is what I've done:
    On the SERVER:
    Enabled Web service in Server Preferences but not started it
    In Server Admin I've gone to the Web screen then Sites. I've created a new Site called Remote and WebDAV enabled it. I've created a new Realm called WebDAV and set it so that a couple of the users have read/write via WebDAV rights. I've set the Realm to point to one of the file shares. I've set security initially to not run via SSL and set authentication to basic, just at this stage for testing (I'll lock it down later).
    On the ROUTER:
    Set (and paid for) a static IP public facing
    Created a port forward called WebDAV pointing to the internal IP address of the server, port 80
    Enabled firewalling to allow all outbound but block all inbound save for http, https and all specifically port forwarded traffic
    On the EXTERNAL DEVICE
    Tried to Connect to Server pointing to each of the following:
    http://static_public_ip/remote
    http://static_public_ip:80/remote
    http://static_public_ip/webdav
    http://static_public_ip:80/webdav
    http://static_public_ip/path_to_share_set_in_realm
    http://static_public_ip:80/path_to_share_set_in_realm
    Nothing will connect to the server - just keeps saying server not available or not responding or similar.
    What am I missing here?
    Really hope someone can help, I spent hours on this yesterday!
    Many thanks in advance guys

    No answers, just some questions...
    Tried upgrading to OS X Server 10.6.8?
    Are there any relevent diagnostics being logged in the Apache logs?
    "Nothing will connect to the server - just keeps saying server not available or not responding or similar"  — Please post the exact error message text; in this area, there are some similarly-worded error messages from the various layers of OS X Server, so the phrasing matters.
    Does an http or https connection to the web server work?

  • Project Server 2013 - This webpart was unable to load

    Hi all,
    I am getting the following error in project server 2013 project sites:
    This webpart was unable to load. For more information, please contact your server administrator.
    <Guid>
    I only get this error message on 'Project Summary Web Part'.
    Any idea what it could be?
    Thank you,
    SJ

    Hi there!
    I got similar problem in a PDP that was working perfectly even after migration to 2013. On this case, my PDP was showing the webpart that let you to choose what fields and custom fields want to show on a specific PDP.
    I created a copy of the crashed PDP and got the same error. So I bet for remove all the custom fields and add one by one to see what happens. The surprise came up when it started to work when my PDP had just pair of custom fields. With this procedure,
    I found that the problem was on some specific custom fields created that had null values to all the projects created before. Once I forced value on those fields it worked properly!!
    Sometimes EPM2013 has a very strange behavioural and in some cases just clicking on EDIT and SAVE  without any change have solved some of my problems too.
    I hope it helps this to you and feel free to contact me if I can somehow help you :)
    Diego

  • Custom Column for Project Code Number & Search Box to search Content in Project Server 2013

    Hi all,
    I want to add a custom column in Project Center view for showing some Numerical Projects codes like 4523, 5248,8956 like that... Each code will represent Project assigned with that code in Project Server 2013. Also let me now if i can add some search box
    in Project Center page through which i can search Project Code or Project Name. Currently, provided search bar not working in Project Server 2013.
    Need it urgent..Kindly help

    Hi,
    If you want to add this column in a project center view, be careful to choose a project view in the "manage views" views' list. Also it must be a project custom field and not a task field. As Paul said, we assume that the field with the code exists
    and has been previousky created by you.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, MCP |

  • Project Server 2013 licenses in use

    Is there any way to retrieve the exact number of PWA and Project Pro licenses in use for a Project Server 2013 instance?
    In older versions you had the 'About Project Server' page and for 2010 there was a SQL script. But this script does not work for Project Server 2013.

    Thank you Paul! That query works just fine.
    I reworked it a bit to suit my needs: take into account DENY and the fact that a PWA CAL is included in the Project Pro license.
    My query to list the licenses in use is below:
    SELECT
    PERM.Username,
    CASE WHEN PERM.LogonProDeny = 1 THEN 0 ELSE PERM.LogonProAllow END AS [ProLicense],
    CASE WHEN PERM.LogonPwaDeny = 1 THEN 0 ELSE
    CASE WHEN PERM.LogonProDeny = 0 AND PERM.LogonProAllow = 1 THEN 0 ELSE PERM.LogonPwaAllow
    END
    END AS [PwaCal]
    FROM (SELECT
    RES.RES_NAME as Username,
    MAX(LOGON_PRO.WSEC_ALLOW+0) AS LogonProAllow,
    MAX(LOGON_PRO.WSEC_DENY+0) AS LogonProDeny,
    MAX(LOGON_PWA.WSEC_ALLOW+0) AS LogonPwaAllow,
    MAX(LOGON_PWA.WSEC_DENY+0) AS LogonPwaDeny,
    CASE WHEN RES.RES_TYPE > 100 THEN 0 ELSE 1 END AS UserIsActive
    FROM pub.MSP_RESOURCES AS RES WITH (NOLOCK)
    INNER JOIN pub.MSP_WEB_SECURITY_CLAIMS AS SC WITH (NOLOCK) ON SC.ENCODED_CLAIM = RES.WRES_ACCOUNT
    LEFT JOIN pub.MSP_WEB_SECURITY_GROUP_MEMBERS AS GM WITH (NOLOCK) ON GM.WRES_GUID = sc.SECURITY_GUID
    LEFT JOIN pub.MSP_WEB_SECURITY_SP_CAT_RELATIONS AS CR WITH (NOLOCK) ON CR.WSEC_SP_GUID = GM.WSEC_GRP_GUID AND CR.WSEC_CAT_UID IS NULL
    LEFT JOIN pub.MSP_WEB_SECURITY_SP_CAT_PERMISSIONS AS LOGON_PRO WITH (NOLOCK) ON LOGON_PRO.WSEC_REL_UID = CR.WSEC_REL_UID AND LOGON_PRO.WSEC_FEA_ACT_UID = 'D2F88263-31C5-4FF5-BEAE-B98B26C5C116'
    LEFT JOIN pub.MSP_WEB_SECURITY_SP_CAT_PERMISSIONS AS LOGON_PWA WITH (NOLOCK) ON LOGON_PWA.WSEC_REL_UID = CR.WSEC_REL_UID AND LOGON_PWA.WSEC_FEA_ACT_UID = '7C40A2C2-FD15-44E3-8FD3-11B3E0A4E441'
    WHERE RES.RES_TYPE IN (1,2,101,102)
    GROUP BY RES.RES_NAME, RES.RES_TYPE
    ) PERM
    WHERE PERM.UserIsActive = 1

  • How to get timesheet information in a javascript (Project Server 2013)

    Hi all,
    In Project Server 2013, I'm trying to customize the Timesheet ribbon. This far, I've been able to add a new button and tie an event to it. All is working well. This is all done using elements.xml and a javascripts.
    Now the problem is that I want to get some informations about the timesheet (the Guid for example) and, for now, I've got no success. I know that there is an object called PS.TimeSheet, but when I try to use some PS.TimeSheet's methods I get an error.
    Note that i'm in the page http://servername/pwa/timesheet.aspx (there is not Guid in the address) and all the treatments should be done in the javascript (no call to another aspx page)
    Thanks !

    Finally, I've found the solution.
    My goal was to add a button in the timesheet ribbon to launch a special report showing some data about the timesheet. The report has the timesheet Guid as parameter.
    To customize the Sharepoint ribbon, you have to do it via an xml file and a javascript (a lot of explanation is available in the internet that explains how to do it). So I had to call a function in the javascript to launch the report (which is a SSRS report).
    When you are in a javascript you have access to many global variables. When the timesheet.aspx is displayed, there is a global variable called "timesheetComponent".
    Using this variable we can call the method :
    timesheetComponent.m_consumedApi.get_Impl()
    to get an implementation of the current timesheet. This implementation has an attibute that has a lot of nice stuff about the current user and the current time sheet. This attribute is 
    _headerInfo
    _headerInfo is a structure that includes tsUid which contains the timesheet Guid I was looking for.
    Finally, the function attached to the button goes like this :
    function _LaunchReport() {
    var tsUId;
    var rptPath;
    var tsImpl = timesheetComponent.m_consumedApi.get_Impl();
    try
    if (CONST_REPORT_PATH == null || CONST_REPORT_PATH == "" ) {
    alert("Constant CONST_REPORT_PATH is not defined")
    else {
    tsUId = tsImpl._headerInfo.tsUid;
    rptPath = CONST_REPORT_PATH + 'TimesheetDetails&rs:Command=Render&rc:Parameters=false&TimesheetUID=' + tsUId;
    window.open(rptPath);
    catch (Err) {
    alert(Err)
    CONST_REPORT_PATH is the path to SSRS defined elsewhere
    I hope this will help some other poeple !

  • PowerView In Project Server 2013 is not working

    Hi All,
    I am working on environment with Project Server 2013. In report part i am not able to see or view only power view reports.
    I am testing this with default report provided by Microsoft, where other reports (power pivot) are working fine.
    My power view report is not showing any error, it is simply gets opened as blank sheet.
    Quick replies and help will be appreciated. 
    Note: I have installed silver light latest version too.
    Thanks
    Abbas 

    I am also experiencing issues with this.  After the approval task is completed, the Workflow gets cancelled with the following message
    RequestorId: 60d96368-4cb4-b059-8086-604972a92e60. Details: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary. at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context)
    at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager
    bookmarkManager, Location resultLocation)
    All other desired workflow actions work as expected.  Emails are sent, project is moved from stage to stage, however as soon as the workflow approval task is completed, either Approved or Rejected, the Internal Status is changed to Canceled and the
    workflow fails.
    What is interesting is when the Approval task is completed, the approver will receive an email notification that the task was CANCELLED or DELETED....
    not COMPLETED, which is what would be expected.
    Has anyone seen this - any potential resolution?

  • Getting Project Site Provisioning Pop-up even after Operational Policies set as Do not create a sites in project server 2013.

    In Project server 2013, users are getting Project Site Provisioning Pop-up even after Operational Policies set as Do
    not create a sites. 
    We can use “Deny” Global Permission, “Manage SharePoint Foundation”, which controls Project site creation/ delete
    as temporary workaround however want to know is this know defect in Project server 2013? 
    Any suggestion would be highly appreciated.
    Thank you

    Hi Raushan,
    I can reproduce the same behaviour in my environment. It pops-up the dialog box when Project Site Provisioning settings set to 'Do Not Create' in the Central admin for the Project Web App.
    As you mentioned already you can control it via permissions as an work-around.
    Alternatively, you can also ask users to select the check box 'Don't show this again for this project'
    Cheers, Badal

  • Project Server 2013 Task Reassignment Privileges Off? (Works in Timesheet)

    Version: Project Server 2013
    I'm trying to give our users access to reassign tasks.  I turned on "Reassign Task" on the Global Permissions and gave them security to "Assign Resource" on all their categories.
    I've tested this, and the "Reassign" feature is available and working then they are on the "Timesheet" page, but it is grayed out and gives the message:
    "This control is currently disabled.  You might not have the right permission level to use this, you might need to select an object or item, or the control might not work in this context."
    Again, the same task is available to be reassigned in Timesheet though.
    My guess is that this is a Security Permission issue, because my account which I am the Administrator and Owner of the project, I can reassign tasks on both pages.
    Any suggestions?
    Thanks,
    Justin
    It's me

    Hi Justin,
    Just for your information, as far as I know, the "assign resources" is not necessary for using the "reassign task" feature. The "reassign task" global permission is enough.
    To be sure to understand your issue, the "reassign task" button is available for you as admin or project owner, but not for users which you granted the "reassign task" permission to? Am I right?
    You are talking about global permissions but did you add the "reassign task" to the
    groups permission the users belong to?
    Silly question, but do the users have select a task before trying to reassign it?
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Which sharepoint service applications & services are required for Project server 2013 to work fine.

    HI,
    Can any one help me,
    I am planning to install project server 2013,  what are the service applications and Services ( Manage services on server in central admin ) in sharepoint  are required for project server 2013 to work fine, so that i will run only  service
    application and services to increase server performance..i don't want to configure all service applications  when i  am configuring.
    Thanks in Advance..
    vijay kommireddi

    Hi Vijay,
    If you are installing Project Server on SharePoint farm, You need to start the service Project Application Service which would be available after you install project Server 2013.
    For Project Server Reporting you need to start Excel service and Secure Store service.
    http://technet.microsoft.com/en-us/library/ee662106(v=office.15).aspx
    Thanks,
    Phani

  • The Stage Gate Workflow get suspended in project server 2013

    Hi,
    Getting following error when i am trying to create an stage gate project/workflow in project server 2013. The submit button in
    the ribbon gets disabled and when i see the workflow status it is suspended. and getting following error message. 
    RequestorId: d5f04432-bd27-3da1-0000-000000000000. Details: RequestorId: d5f04432-bd27-3da1-0000-000000000000. Details: An unhandled
    exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 401 {"x-ms-diagnostics":["3001000;reason=\"There has been an error authenticating the request.\";category=\"invalid_client\""],"SPRequestGuid":["d5f04432-bd27-3da1-bc57-8ce72d9f5e43"],"request-id":["d5f04432-bd27-3da1-bc57-8ce72d9f5e43"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"SPRequestDuration":["153"],"SPIisLatency":["0"],"Server":["Microsoft-IIS\/8.0"],"WWW-Authenticate":["Bearer
    realm=\"2a5d48f2-f71d-4589-a6ae-ab6c0d30fafd\",client_id=\"00000003-0000-0ff1-ce00-000000000000\",trusted_issuers=\"00000005-0000-0000-c000-000000000000@*,[email protected]0d30fafd\"","NTLM"],"X-Powered-By":["ASP.NET"],"MicrosoftSharePointTeamServices":["15.0.0.4481"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Date":["Thu, 04 Jul 2013 11:20:43 GMT"]} at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    Could anyone help me to fix this issue and reason why the Stage gate workflow isgetting suspended.
    Thanks,
    Sunitha

    Check your User Profiles and make sure that the user's domain is correct. We've seen workflows suspend with 401 errors when the User Profile Service syncs with AD and pulls the wrong domain name - for
    example if your FQDN is corp.company.com and the user logs in with company\username, UPS might have corp\username instead. Hence a 401 error...
    Here is a link that includes the steps to fix this:
    http://social.technet.microsoft.com/wiki/contents/articles/18060.sharepoint-20xx-what-if-the-domain-netbios-name-is-different-than-the-fqdn-of-the-domain-with-user-profile.aspx
    Neall

  • TS1550 What about when using the "Time Capsule" HD as the external disk, especially when it is connected by ethernet cable? I'm having trouble getting it to work at all. Don't need it to work as anything else, other than a ethernet connected Time Machine

    What about when using the "Time Capsule" HD as the external disk, especially when it is connected by ethernet cable? I'm having trouble getting it to work at all. Don't need it to work as anything else, other than a ethernet connected Time Machine backup. Already have a wireless network that works fine so no need to mess with it. We get the internet via cable company and their modem is upstairs and the Time Capsule is downstairs in the basement. The latest error message was about it could not backup as it was already in use (should have written it down before clicking OK and moving on.

    See if this helps...
    http://pondini.org/TM/C12.html

  • Joining Actuals and Planned Work from Project Server

    Hi,
    I have an SQL based query which returns Actuals and Planned work from Project Server; however a number of records (generally generic resources based on the ResourceIsGeneric column) are excluded. I believe this is because my Actuals query does not return
    generic resources as we are joining both sides of the query on ResourceUID. I have included a snippet below - is there a way to join Actuals and Planned work so I can return all Resource data?
    Thanks
    SELECT tl.ResourceUID
    ,tl.ProjectUID
    ,tl.ResourceName AS [ResourceName]
    ,CASE
    WHEN tl.ProjectName = 'Administrative'
    THEN tl.TaskName
    ELSE tl.ProjectName
    END ProjectName
    ,ruv.RBS AS [RBS]
    ,Sum(ta.ActualWorkBillable) ActualWorkBillable
    ,Sum(ta.ActualWorkNonBillable) ActualWorkNonBillable
    ,Sum(ta.ActualOvertimeWorkBillable) ActualOvertimeWorkBillable
    ,Sum(ta.ActualOvertimeWorkNonBillable) ActualOvertimeWorkNonBillable
    ,CASE
    WHEN Sum(ta.ActualOvertimeWorkBillable) > 0
    THEN Sum(ta.ActualOvertimeWorkBillable)
    END [HOURS]
    ,DATEPART(year, ta.TimeByDay) AS [Year]
    ,DATEPART(month, ta.TimeByDay) AS [Month]
    ,DATENAME(month, DATEADD(month, DATEPART(month, ta.TimeByDay), - 1)) AS [MonthName]
    ,puv.[Project Status] AS [ProjectStatus]
    ,ruv.[Primary Role] AS [PrimaryRole]
    ,ruv.[Resource Department] AS [Department]
    ,ruv.ResourceIsGeneric
    ,ruv.[Cost Category] AS [ResourceType]
    ,puv.[SAP Project Code] AS [SAPProjectCode]
    ,CASE
    WHEN tl.ProjectName <> 'Administrative'
    THEN NULL
    ELSE tl.TaskName
    END TaskName
    ,puv.[Project Plan Type] AS [ProjectPlanType]
    ,puv.[GEM Project Manager] AS [GemPM]
    ,ruv.[Rate Code] AS [RateCode]
    ,ruv.[Cost Centre] AS [CostCentre]
    ,ept.EnterpriseProjectTypeName AS [EPT]
    ,puv.[I DO Phase]
    ,puv.ProjectOwnerName AS [ProjectOwner]
    FROM dbo.MSP_TimesheetActual_OlapView ta
    INNER JOIN dbo.MSP_TimesheetLine_UserView tl
    ON ta.TimesheetLineUID = tl.TimesheetLineUID
    INNER JOIN dbo.MSP_EpmResource_UserView ruv
    ON ruv.ResourceUID = tl.ResourceUID
    LEFT JOIN dbo.MSP_EpmProject_UserView puv
    ON puv.ProjectUID = tl.ProjectUID
    LEFT JOIN dbo.MSP_EpmEnterpriseProjectType ept
    ON ept.EnterpriseProjectTypeUID = puv.EnterpriseProjectTypeUID
    WHERE ta.TimeByDay >= @xDate1
    AND ta.TimeByDay < @xDate2
    AND tl.TimesheetStatus IN (
    SELECT ParamValues
    FROM @ParamTable
    AND ta.ActualWorkBillable > 0
    GROUP BY ...
    ) TimesheetActual
    FULL JOIN (
    SELECT ruv.ResourceUID
    ,puv.ProjectUID
    ,ruv.ResourceName
    ,puv.projectname AS ProjectName
    ,ruv.RBS AS [RBS]
    ,Sum(abduv.AssignmentWork) AS [PlannedWork]
    ,DATEPART(year, abduv.TimeByDay) AS [Year]
    ,DATEPART(month, abduv.TimeByDay) AS [Month]
    ,DATENAME(month, DATEADD(month, DATEPART(month, abduv.TimeByDay), - 1)) AS [MonthName]
    ,ruv.ResourceIsGeneric
    ,puv.[Project Status] AS [ProjectStatus]
    FROM dbo.MSP_EpmResource_UserView ruv
    INNER JOIN dbo.MSP_EpmAssignment_UserView auv
    INNER JOIN dbo.MSP_EpmAssignmentByDay_UserView abduv
    ON auv.AssignmentUID = abduv.AssignmentUID
    AND auv.ProjectUID = abduv.ProjectUID
    ON ruv.ResourceUID = auv.ResourceUID INNER JOIN dbo.MSP_EpmProject_UserView puv
    ON auv.ProjectUID = puv.ProjectUID
    AND abduv.ProjectUID = puv.ProjectUID INNER JOIN dbo.MSP_TimeByDay_OlapView tbdov
    ON abduv.TimeByDay = tbdov.TimeByDay WHERE abduv.TimeByDay >= @xDate1
    AND abduv.TimeByDay < @xDate2
    AND ruv.ResourceName <> 'Unassigned Resource'
    AND ruv.ResourceName IS NOT NULL
    AND abduv.AssignmentWork > 0
    GROUP BY ruv.ResourceUID
    ,puv.ProjectUID
    ,ruv.ResourceName
    ,puv.projectname
    ,ruv.RBS
    ,DATEPART(year, abduv.TimeByDay)
    ,DATEPART(month, abduv.TimeByDay)
    ,ruv.ResourceIsGeneric
    ,puv.[Project Status]
    ) TimesheetPlanned
    ON TimesheetActual.ResourceUID = TimesheetPlanned.ResourceUID
    AND TimesheetActual.[Year] = TimesheetPlanned.[Year]
    AND TimesheetActual.[MonthName] = TimesheetPlanned.[MonthName]

    Hi,
    you pasted just part of your query, e.g. is declaration of @ParamTable missing. Without complete query, it is difficult to see, what you are trying to do.
    Could you please provide complete query?
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find
    an appropriate solution faster. Thanks for your support!

  • Having trouble getting Skype to work.  It did when I first got the computer about a yr ago but then quit.  I've trashed and reinstalled the program and set the preferences to allow Skype but nothing is working.  Any suggestions?

    Having trouble getting Skype to work.  It did when I first got the computer about a yr ago but then quit.  I've trashed and reinstalled the program and set the preferences to allow Skype but nothing is working.  Any suggestions?

    all I can suggest is completley unistall as here
    https://support.skype.com/en/faq/FA12073/how-can-i-completely-uninstall-and-then -reinstall-skype-for-mac-os-x
    Then reinstall
    http://www.skype.com/en/download-skype/skype-for-mac/

  • Send email is not working in share point desinger 2013 for project server 2013 workflow

    Hi,
      How to configure email for project server 2013. i have created workflow where i am sending email. It is not sending it.
     i have set outgoing mail setting. Tasks are created in my workflow but mail is not sending.
    Thank you for helping us.
    Thank You
    Vinay

    Hi,
      How to configure email for project server 2013. i have created workflow where i am sending email. It is not sending it.
     i have set outgoing mail setting. Tasks are created in my workflow but mail is not sending.
    Thank you for helping us.
    Thank You
    Vinay

Maybe you are looking for

  • Macbook Pro Video Screen Blank - Transfer Data to New Unit

    My 2008 Macbook Pro went to sleep and woke up with a dead screen.  Same thing with the Pismo 6 years ago; will not go through nor will I throw away my money again with multiple service providers like I did during that episode.  Want to purchase a new

  • Regarding open and close period

    How to search which period is closed and which period is opened??

  • Render a column based on other column value in the same table

    JDev 11.1.1.6.0 This may be a silly question but I am stuck I need to conditionally render a column say A. Condition is like if the value in the other column B of same table is equal to F. I should render column A only when this condition is satisfie

  • Nokia 5610 - the lights are singeing from time to

    Hi On mi Nokia 5610 , the lights are singeing from time to time At the attached doc file , the lights are marked with blue arrows Question 1 : Why does the lights are singeing ? Question 2 :How can I stop it ? thanks in advanced

  • Motion 5 won't install

    Was working,  now doesn't.  If I try to reinstall from app store it will completely download,  then poof....nothing.  Any ideas?