Same code giving error in 1 app... not the other

I have the same region of pl/sql content in 2 applications with different themes.
1 works fine... the other is giving me an invalid month, could the theme be affecting what is happening? I'm at a complete loss right now with this.
this is the code
<pre>
declare
a_inv nkw.K_A2KSTD.NumArray;
a_wip1 nkw.K_A2KSTD.NumArray;
a_wip2 nkw.K_A2KSTD.NumArray;
a_wip3 nkw.K_A2KSTD.NumArray;
a_tot nkw.K_A2KSTD.NumArray;
a_sizes nkw.K_A2KSTD.VarArray;
a_eta_date1 date;
a_eta_date2 date;
a_eta_date3 date;
a_count number;
begin
NKW.K_ATS.P_ATS_WIP('100','002','01',a_inv,a_wip1,a_wip2,a_wip3,a_tot,a_eta_date1,a_eta_date2,a_eta_date3);
end;
</pre>
I stripped out the htp.prn tags as this is failing by itself
I'm getting: ORA-01843: not a valid month
... this works fine from sql plus and from another application.
Any ideas

<pre>
0.07:
0.07: S H O W: application="101" page="2" workspace="" request="" session="3382824110138796141"
0.07: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: en-us
0.07: alter session set nls_language="AMERICAN"
0.07: alter session set nls_territory="AMERICA"
0.07: NLS: CSV charset=WE8MSWIN1252
0.07: ...NLS: Set Decimal separator="."
0.07: ...NLS: Set NLS Group separator=","
0.07: ...NLS: Set date format="DD-MON-RR"
0.07: ...Setting session time_zone to -05:00
0.07: Setting NLS_DATE_FORMAT to application date format: MM/DD/RR
0.07: ...NLS: Set date format="MM/DD/RR"
0.07: NLS: Language=en-us
0.07: Application 101, Authentication: CUSTOM2, Page Template: 1671522081762729
0.07: ...Session ID 3382824110138796141 can be used
0.07: ...Application session: 3382824110138796141, user=NKW
0.07: ...Determine if user "GCS" workspace "994320583225810" can develop application "101" in workspace "994320583225810"
0.07: Session: Fetch session header information
0.07: ...Metadata: Fetch page attributes for application 101, page 2
0.07: Fetch session state from database
0.07: Branch point: BEFORE_HEADER
0.07: Fetch application meta data
0.07: Setting NLS_DATE_FORMAT to application date format: MM/DD/RR
0.07: ...NLS: Set date format="MM/DD/RR"
0.07: Computation point: BEFORE_HEADER
0.07: Processing point: BEFORE_HEADER
0.07: ...Process "p2_getdesc": PLSQL (BEFORE_HEADER) select descr into :p2_descr from nkw.costing_m where style = :p2_style;
0.07: Show page template header
0.08: Computation point: AFTER_HEADER
0.08: Processing point: AFTER_HEADER
0.08: Computation point: BEFORE_BOX_BODY
0.08: Processing point: BEFORE_BOX_BODY
0.08: Region: Style Filter
0.08: binding: ":GLOBAL_DIV_NO"="GLOBAL_DIV_NO" value=""
0.08: Item: P2_DESCR DISPLAY_ONLY_HTML
0.08: Item: P2_WHOUSE HIDDEN_PROTECTED
0.08: Item: P2_COLOR_NO COMBOBOX_WITH_SUBMIT
0.10: Item: P2_LINK DISPLAY_ONLY_HTML
0.10: Region: Style Selector
0.10: Item: P2_BASIC DISPLAY_ONLY_HTML
0.10: Region: Style Availability
0.16: Computation point: AFTER_BOX_BODY
0.16: Processing point: AFTER_BOX_BODY
0.16: Computation point: BEFORE_FOOTER
0.16: Processing point: BEFORE_FOOTER
0.16: Show page tempate footer
0.16: Computation point: AFTER_FOOTER
0.16: Processing point: AFTER_FOOTER
0.16: Log Activity:
0.16: Execute Count=0
0.16: End Show:
</pre>

Similar Messages

  • Why the error in one, but not the other

    Why does this code Generate the error:
    Complex object types cannot be converted to simple values.
    The expression has requested a variable or an intermediate
    expression result
    as a simple value, however, the result cannot be converted to
    a simple
    value. Simple values are strings, numbers, boolean values,
    and date/time
    values. Queries, arrays, and COM objects are examples of
    complex values.
    The most likely cause of the error is that you are trying to
    use a complex
    value as a simple one. For example, you might be trying to
    use a query
    variable in a <CFIF> tag. This was possible in
    ColdFusion 2.0 but creates an
    error in later versions.
    The error occurred in
    C:\Inetpub\wwwroot\2onboard\kBookList.cfm: line 40
    38 : <tr>
    39 : <td colspan="6">
    40 : <cfif showList IS NOT "yearly"><a class="nav"
    href=""> Yearly  </a>  </cfif>
    41 : <cfif showList IS NOT "complete"><a class="nav"
    href=""> Complete  </a>  </cfif>
    42 : <cfif showList IS NOT "wish"><a class="nav"
    href=""> Wish
    List  </a>  </cfif>
    CODE.........
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>2onboard.com - Kevin's Korner - Book
    List</title>
    <!--- SET DEFAULT VARIABLES --->
    <cfparam name="showList" default="complete">
    <cfparam name="showOrder" default="title">
    <cfparam name="showStatus" default="own">
    <!--- QUERIES --->
    <cfquery name="showList" datasource="2onboard">
    SELECT
    title,author,status,completed,pages,queue,rating,cover,series,book,link
    FROM books
    WHERE status = '#showStatus#'
    ORDER BY '#showOrder#'
    </cfquery>
    </head>
    <body>
    <div id="container"> <!--- GRAY ALL ENCOMPASING BOX
    --->
    <cfinclude template="header.cfm"> <!--- HEADER
    --->
    <cfinclude template="explanation.cfm"> <!---
    EXPLANITION OF SCREEN BOX --->
    <div class="raised"> <!--- CONTENT OF - HOME PAGE
    --->
    <b class="top"><b class="b1"></b><b
    class="b2"></b><b class="b3"></b><b
    class="b4"></b></b>
    <div class="boxcontent">
    <div class="boxcontenttext">
    <table cellspacing="0">
    <tr>
    <td><span class="title">Kevin's
    Korner</span><b> - Reading</b></td>
    <td colspan="5"
    align="right"><cfoutput> Library contains
    <b>#showList.recordCount#</b>
    books</cfoutput></td>
    </tr>
    <tr><td colspan="6"><span
    class="spacetext"> </span></td></tr>
    <tr>
    <td colspan="6">
    <cfif showList IS NOT "yearly"><a class="nav"
    href=""> Yearly  </a>  </cfif>
    <cfif showList IS NOT "complete"><a class="nav"
    href=""> Complete  </a>  </cfif>
    <cfif showList IS NOT "wish"><a class="nav"
    href=""> Wish
    List  </a>  </cfif>
    </td>
    CODE CONTINUES ON FROM HERE….
    BUT, if I take just the bare minimum and test it as the
    following, it works fine - WHY?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <cfparam name="showList" default="complete">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title> </title>
    </head>
    <body>
    <cfif showList IS NOT "yearly"><a class="nav"
    href=""> Yearly  </a>  </cfif>
    <cfif showList IS NOT "complete"><a class="nav"
    href=""> Complete  </a>  </cfif>
    <cfif showList IS NOT "wish"><a class="nav"
    href=""> Wish
    List  </a>  </cfif>
    </body>

    > <cfparam name="showList" default="complete">
    This line creates showList as a simple string variable
    containing
    "complete".
    > <cfquery name="showList" datasource="2onboard">
    This line redefines showList as a recordset containing the
    data returned
    from the database which is not a simple variable and can not
    be accessed
    with code such as <cfoutput>#showList#</cfoutput>
    > <cfparam name="showList" default="complete">
    This line does NOT redefine showList back to a simple string
    because a
    <cfparam ...> only fires if the variable does not
    exist. The previous
    two lines would create the variable, thus it exists.
    jkgiven wrote:
    > Why does this code Generate the error:
    >
    > Complex object types cannot be converted to simple
    values.
    >
    > The expression has requested a variable or an
    intermediate expression result
    > as a simple value, however, the result cannot be
    converted to a simple
    > value. Simple values are strings, numbers, boolean
    values, and date/time
    > values. Queries, arrays, and COM objects are examples of
    complex values.
    >
    > The most likely cause of the error is that you are
    trying to use a complex
    > value as a simple one. For example, you might be trying
    to use a query
    > variable in a <CFIF> tag. This was possible in
    ColdFusion 2.0 but creates an
    > error in later versions.
    >
    > The error occurred in
    C:\Inetpub\wwwroot\2onboard\kBookList.cfm: line 40
    >
    > 38 : <tr>
    > 39 : <td colspan="6">
    > 40 : <cfif showList IS NOT "yearly"><a
    class="nav"
    >
    href=""> Yearly  </a>  </cfif>
    > 41 : <cfif showList IS NOT "complete"><a
    class="nav"
    >
    href=""> Complete  </a>  </cfif>
    > 42 : <cfif showList IS NOT "wish"><a
    class="nav" href=""> Wish
    >
    List  </a>  </cfif>
    >
    >
    > CODE.........
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    > <title>2onboard.com - Kevin's Korner - Book
    List</title>
    >
    > <!--- SET DEFAULT VARIABLES --->
    > <cfparam name="showList" default="complete">
    > <cfparam name="showOrder" default="title">
    > <cfparam name="showStatus" default="own">
    >
    > <!--- QUERIES --->
    > <cfquery name="showList" datasource="2onboard">
    > SELECT
    title,author,status,completed,pages,queue,rating,cover,series,book,link
    > FROM books
    > WHERE status = '#showStatus#'
    > ORDER BY '#showOrder#'
    > </cfquery>
    >
    > </head>
    >
    > <body>
    >
    > <div id="container"> <!--- GRAY ALL ENCOMPASING
    BOX --->
    > <cfinclude template="header.cfm"> <!--- HEADER
    --->
    > <cfinclude template="explanation.cfm"> <!---
    EXPLANITION OF SCREEN BOX --->
    >
    > <div class="raised"> <!--- CONTENT OF - HOME
    PAGE --->
    > <b class="top"><b class="b1"><b
    class="b2"><b class="b3"><b
    > class="b4">
    > <div class="boxcontent">
    > <div class="boxcontenttext">
    > <table cellspacing="0">
    > <tr>
    > <td><span class="title">Kevin's
    Korner</span>
    - Reading</td>
    > <td colspan="5"
    align="right"><cfoutput> Library contains
    >
    #showList.recordCount# books</cfoutput></td>
    > </tr>
    > <tr><td colspan="6"><span
    class="spacetext"> </span></td></tr>
    > <tr>
    > <td colspan="6">
    > <cfif showList IS NOT "yearly"><a class="nav"
    >
    href=""> Yearly  </a>  </cfif>
    > <cfif showList IS NOT "complete"><a class="nav"
    >
    href=""> Complete  </a>  </cfif>
    > <cfif showList IS NOT "wish"><a class="nav"
    href=""> Wish
    >
    List  </a>  </cfif>
    > </td>
    >
    > CODE CONTINUES ON FROM HERE?.
    >
    > BUT, if I take just the bare minimum and test it as the
    following, it works
    > fine - WHY?
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    >
    > <cfparam name="showList" default="complete">
    >
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    > <title> </title>
    > </head>
    >
    > <body>
    >
    > <cfif showList IS NOT "yearly"><a class="nav"
    >
    href=""> Yearly  </a>  </cfif>
    > <cfif showList IS NOT "complete"><a class="nav"
    >
    href=""> Complete  </a>  </cfif>
    > <cfif showList IS NOT "wish"><a class="nav"
    href=""> Wish
    >
    List  </a>  </cfif>
    >
    > </body>
    >
    >
    >

  • "No connectivity with the server" error for one document but not the other, in the same document library

    We have a number of users all of a sudden getting "No connectivity with the server.  The file 'xxx' can't be opened because the server couldn't be contacted." errors trying to open MS Office docs (Word, Excel, etc.) in SharePoint with IE,
    just by clicking the link and selecting the "Read Only" option.  If they select the "Check Out and Edit" option, they can open the document no problem.  One of my customers gets the error on one document but not the other, in
    the same document library!  The older document (a weekly report) was copied and renamed as per standard procedure.  She can read the older document, but not the new one.
    It is definitely a profile issue, as other people have logged onto the machines of the users with problems and do not get the error.  We have also renamed people's c:\user profile folders and the corresponding Profilelist registry entry and the newly
    created profile does not experience the error for these people.  Renaming the profile back restores all their personal settings but the error reappears.  When we copied the old profile's folder structure into the new profile, many of the user settings
    were restored (but not all, like Dreamweaver settings) but the error did not appear.  We think that the system folders files (like AppData) weren't totally copied over so we're going to run another test using xcopy.  We are rebooting between
    logons to make sure all files are unlocked.
    The laptops and computers are mainly 32bit, Win7 Enterprise running IE9 and Office 2010 Professional Plus, but there's a few 64bit machines as well. The SharePoint farm has 1 WFE, 1 App Server running search and CA, and a shared database server running SQL
    2005 SP4.  SharePoint is 64bit MOSS 2007 with the latest CU.
    We've checked the logs on the client as well as on the server and there aren't any helpful entries.  We've also run Process Monitor, also with no helpful entries.  We're planning to run something like Fiddler next.
    It's not everyone, because there are many people are accessing the SharePoint system and the same files.  It is also not a permission thing, as we've tested by giving the users elevated permissions with no changes.  One person experiencing
    the errors is a Site Collection Admin.  That same person ran a test where I coped a simple Excel file into a Document Library which contained a problem file.  They were able to open it Read Only no problems that day, but the next day, the same
    file gave them an error.   In their case, they usually get a "xxx is not checked out" error and only occasionally get the "No connectivity with the server" error.
    We've tried lots of things including:
    Deleting IE cache
    Deleting SharePoint Drafts and webcache folder contents
    Running IE without add-ons
    Upgrading and Downgrading IE
    Uninstalling and re-installing IE
    Reinstalling our SSL certs
    Repairing Office
    Removing and then adding back in the Microsoft Office "Microsoft SharePoint Foundation Support" Office Tool 
    Deleting all HKLM and HKLU Office registry settings
    Toggling IE Compatibility Settings
    Toggling the IE Automatic Logon option
    Toggling the location of checked out files
    Adding the site in the trusted sites list
    Adding the site to the WebClient\Parameters registry locations
    Making sure the WebClient service is started
    Rebooting the machine (lol :)
    This is becoming a serious issue, not just because of the inconvenience for the users having to check out every document they want to read, but we have some files with macros that open up other documents to run which are now failing.  There aren't
    "check out" workarounds for some of those macros.
    We're planning to open a ticket with Microsoft, but I'm throwing it out here first in case someone has run into this before, or may have some suggestions on what to try next.  Thanks!
    -Richard.
    PS  I think this needs to be in the "General" forum instead?

    It took three days of dedicated troubleshooting, but I have found the cause of the errors, and a couple of fixes.  It helped tremendously that my own machine was throwing the error.  I have scheduled a couple of users to work with me to test the
    various fixes, to see which one works best, so the story isn't over yet.
    I had backed up my c:\users profile folder and HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList registry key so I could restore my profile after I was done.  I made a copy of the profile folder and was using that for awhile,
    but then made another copy where I had deleted a lot of content out of it so that the copies would go faster.  Since a newly created profile did not have errors, I was trying to copy back as much of the profile as possible to make it easier for our users
    to get back to work.  Instead of blowing away their profile and starting from scratch (which we know worked) I wanted to narrow down what was causing the error and just skip that from the restore.  The concept was to keep as much as the users profile
    in tact (application settings, etc.) not just restoring their desktop and My Documents folders.
    When we first tested a few weeks ago, simply copying the folder contents didn't reproduce the error.  I then tried xcopy, but got the "can't read file" error.  Then I tried robocopy, and ran into the "junction" problem. 
    I went back to xcopy, and found that placing the excludes.txt file in the windows/system32 folder eliminated the error.
    So the process went as follows: 
    Reboot and log into the machine as another user
    Delete the profile and associated registry key
    Reboot and log into the machine as the affected user, creating a new profile, and there is no error
    Reboot and log in as the other user
    xcopy the contents of the skinned-down backed-up profile to the newly created profile
    Reboot and log in as the affected user, and the error occurs
    Repeat the above, but add items in the excludes.txt file to see what, when eliminated, causes the error not to appear in the last step
    I eventually found that skipping the c:\users\<profile folder>\appdata\local\Microsoft\office\14.0 folder allowed the entire profile to be copied over without the error occurring.  That was strange, because we've cleaned out the cache folders
    before which didn't fix the issue. 
    So I went about it the opposite way, and tried to delete the 14.0 folder from the restored profile, and after reboot, the error still occurred.
    What eventually worked was deleting the 14.0 folder and copying over a 14.0 folder from a newly created profile!
    One way to do this was to:
    Reboot and log in as another user
    Rename the c:\users profile folder
    Rename the appropriate [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList] registry key
    Reboot and log in as the affected user, confirm that there is no error
    Reboot and log in as the other user
    Copy the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder to the other user's desktop
    Delete new profile folder, and rename the backup to be the production folder
    Delete the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder and then paste the 14.0 copy from the desktop
    Reboot and log in as the affected user, confirm that there is no error
    We've tried this on a couple machines and it works.  I had to run Windows Explorer as Administrator to access the other profile's folders.
    We've also successfully copied a 14.0 folder created by one profile on one affected computer over another profile's folder on another computer, eliminating the error, so we're trying that first, as that is fewer steps.
    We may attempt to script this, but the self-help instructions are only 5 lines long:
    Reboot and log into the affected computer with another account
    Go to <link to location of 14.0 folder on network> and copy the 14.0 folder
    Run Windows Explorer as Administrator
    Go to c:\users\<profile folder>\appdata\local\microsoft\office and delete the 14.0 folder, and paste the copied 14.0 folder (trying to overwrite it makes Win7 want to merge the folders)
    Reboot and log into your normal account, and confirm the error is gone
    I'll come back and report after we go into the field with this fix, but after the few tests, I am cautiously optimistic that this is it.

  • Why am i getting this error? they are not the same?

    1021: Duplicate function definition.
    1021: Duplicate function definition.
    stop();
    import flash.events.MouseEvent;
    // home button definition \\
    // Portfolio button definition \\
    Portfolio_btn.addEventListener(MouseEvent.CLICK, pClick);
    function pClick(event:MouseEvent):void{
        gotoAndStop("getPortfolio");
    // Contact Me button defintion \\
    Contact_btn.addEventListener(MouseEvent.CLICK, cClick);
    function cClick(event:MouseEvent):void{
        gotoAndPlay("contactme");
    why am i getting this error the functions have different names... idk what to do they are for two different buttons I am using action script 3.0

    i did what u said and it said these two lines were the same
    // Portfolio button definition \\
    Portfolio_btn.addEventListener(MouseEvent.CLICK, pClick);
    function pClick(event:MouseEvent):void{                                                         <--------this one
        gotoAndStop("getPortfolio");
    // Contact Me button defintion \\
    Contact_btn.addEventListener(MouseEvent.CLICK, cClick);
    function cClick(event:MouseEvent):void{                                                           <--------and this one
        gotoAndPlay("contactme");
    it gave me the same error but they are not the same

  • FaceTime: I have a iPad, iPhone, iMac all on the same apple Id/account. Without changing id/email address can I use FaceTime between any 2 of my devices? It works from iPad to iPhone but not the other way??? I would like talk/see my kids if am away

    FaceTime: I have a iPad, iPhone, iMac all on the same apple Id/account. Without changing id/email address can I use FaceTime between any 2 of my devices? It works from iPad to iPhone but not the other way??? I would like talk/see my kids if am away.
    Hope you can help.
    I have added a new email address but kept my Id, but I get busy when trying from iPhone to iPad as they are clashing. Like find my iPhone app hence trying to keep them all on one account

    IOS: using facetime http://support.apple.com/kb/ht4319
    using an ipad will use the email address since you can't make a phone call.  see the link.
    Your basically calling/emailing yourself that's why your getting a busy signal.

  • Encrypted message on one Mac, but not the other, from same server

    I run Mail.app on two Macs, both getting mail off the same Exchange server. Multiple times in the last few weeks, a message will download to one Mac and be fine, and then the other Mac will retrieve the message, and it will suddenly be encrypted. Before a bunch of garbled text, something like the following always appears:
    --000_25539419161D7744ABC322B480ED5DA507650F7Acmhprdexc04netj
    Content-Type: text/plain; charset="utf-8"
    Content-Transfer-Encoding: base64
    If you go to Webmail on the server, the message reads fine. And it is readable on the other Mac. I tried going to View/Message and choosing "next best alternative" but those options are grayed out. Could there be anything else set locally that is making the email unreadable on one machine but not the other? The unreadable version is always on this Mac (a Mac Mini) and not the other one (a MacBook), even though both are running the same OS version and Mail.app version.

    Navigate to your Applications folder.
    Right Click on iTunes and select Show Package Contents.
    Navigate to Contents/MacOS/
    Double-click on iTunes Helper(to get it running). This allows iTunes to start when you plug in your iPhone.
    Open System Preferences and go to Users & Groups.
    Select the Login Items tab to view the list.
    Drag iTunes Helper from the Finder into the Login Items to get it to run at login.
    Delete it from Login Items on the Mac you don't want it to start iTunes on.

  • I have 2 iPads, I can only download some apps to one device not the other one?

    I have 2 iPads, but can only download some apps to one and not the other?. How can I get the same app on both iPads?
    Thanks

    1. Make sure iPad is using the latest software
    2. Settings>General>Date and Time>Set Automatically>On
    3. Make sure Time Zone is correct
    4. Reset iPad. Hold the Sleep and Home button down until you see the Apple Logo.

  • How do I set upmy Imac to allow using both my computer speakers and a Bose SoundLink system as outputs at the same time.  I can use one or the other, but not both.

    how do I set up my Imac to allow using both my computer speakers and a Bose SoundLink system as outputs at the same time.  I can use one or the other, but not both.  From systems Preferences I must select one or the other.  I want both to work all the time.

    Hi,
    I would recommend you to use 0FI_AP_4 rather using both, particularly for many reasons -
    1. DS: 0FI_AP_4  replaces DataSource 0FI_AP_3 and still uses the same extraction structure. For more details refer to the OSS note 410797.
    2. You can run the 0FI_AP_4 independent of any other FI datasources like 0FI_AR_4 and 0FI_GL_4 or even 0FI_GL_14. For more details refer to the OSS note: 551044.
    3. Map the 0FI_AP_4 to DSO: 0FIAP_O03 (or create a Z one as per your requirement).
    4. Load the same to a InfoCube (0FIAP_C03).
    Hope this helps.
    Thanks.
    Nazeer

  • TS2570 doesn't work, still the same problem when using Rapidweaver software. NOT with other software.

    i tried everything in this article, but still have the same problem when using Rapidweaver software. NOT with other software. I am converting my iWeb site  to Rapidweaver, whenever there is a calmer period in my office. I have 16 Gb RAM on my NEW iMac and have Parallels desktop, mail, safari, iWeb and Rapidweaver running simultanious.
    I never have the problem if i don't use Rapidweaver, but after i have added several pages to Rapidweaver, the problem begins. my iMac won't start up. the only thing that works is re-installing Macos OS X 10.8. i tried even whiping the completeharddrive, and reinstalling with a complete new user, the same problem.
    I had it on my previous iMac also, and bought a new one because i thought the problem was in the iMac first. i hadn't noticed it only happens with using rapidweaver.
    i sent my complete rapidweaver project to the programmers from rapidweaver at Realmacsoftware, but they couldnt reproduce my problem, there macs started up without any problem.
    i deleted all the rapidweaver addons and extra stacks, and started a complete new project.
    saterday i had the problem again, after adding about 5 new pages to my rapidweaver site.
    i think i have reinstalled Macos OS X 10.8.2 20 or 30 times by now
    does anyone have a sollution?

    Type '''about:support''' in the URL bar and hit Enter.
    Scroll down almost to the bottom of that listing and see if you have '''user.js Preferences''' just above the '''''Graphics''''' category.
    If you do have that, click on '''user.js file''' in this sentence. <br />
    ''Your profile folder contains a user.js file, which includes preferences that were not created by Firefox.''
    Does that "different homepage" appear in that user.js file?

  • Is it possible to transfer video to iMovie from video app (not the library)

    Is it possible to transfer video to iMovie from video app (not the library)
    IPAD-IOS

    If you're asking if you can import video fror the iOS Videos app to iOS iMovie, the answer is no. You can only import what is in the camera roll.

  • I want to de-install mac-excel test version and get the error message: you have not the privileges to de-install. Please login with the Mac-OS account you have installed mac-excel originally'. I don't know this account anymore. I am sysadm

    I want to de-install mac-excel test version and get the error message: 'You have not the privileges to de-install. Please login with the Mac-OS account you have installed mac-excel originally'. I don't know this account anymore. Possibly it does not exist anymore. anybody out there who can help ?

    Hi, I may suggest to activate the root account and try the uninstall process from that account. To do so, you have to:
    Go to System Preferences a open up the Users pane;
    On the left side of the pane, you shuold see Login Options;
    Enabled editing option clicking on the lock (it will ask your password);
    Once the pane is enabled, you should see something like Server Account Network (sorry my OS is in italian, so I don't exactly know the right translation), and right next to it a button;
    Click on that button, and a new pane shows up. Click on Open Directory Utility, and on the upper bar of OS X click on Edit;
    Select Enable Root Account (you can set a password, or not);
    Done that, you should log out and when the login window show up, type on the user field "root" and the password you choose;
    Theorically, from this account you will be able to unistall the application.
    After completing your task, I reccomend you to disable the root account, just by loggin in your personal account and repeating the steps I described before. Hope it helps

  • Users with same configurations - one has access not the other

    Hi all,
    I have a real mysterious problem.
    On the same computer, installed with "Cisco VPN Client v5.0.07.0410", one user can connect to the VPN and not the other. Both users uses the same Dynamic Access Policies on our ASA firewall. We are certain that the users entered the correct name and password. But one can enter in our network and the other gets an "Authentication failed" message directly in the "User Authentication" window.
    Has someone an idea to help us solve this problem ?
    I provide you here a log file of the problem (IKE.log level 3), if you think you need an other, please ask.
    In this log, I have the feeling that the cause (and maybe the solution) is around event 293, but......not sure.
    Thanks in advance

    Hi Balthazer,
    Please send us the following outputs from the ASA. Run a conditional debug for the specific user who is facing the issue.
    debug                      crypto                      condition [username                  string]
    debug cry isa sa 200
    deb cry ips sa 200
    Also, you have mentioned that you are using DAP policy. Can you share the DAP policy with us.
    Regards,
    Abhishek Purohit
    CCIE-S- 35269

  • HT2731 I have 2 apple iPods on the same account, And they have the Same songs on them. How can I get a new account for one of them but not the other? Can I wipe the memory of 1? How would I do that?

    I have 2 iPods one I don't use anymore. I would like to make a new account for one but not the other. Is that possible? If I wipe the memory in one will the other wipe out too? How can I do all of this?

    You don't have to do anything with the first iPod that you don't use anymore. If you are planning on keeping it, put in a drawer in your house and forget about it.
    You don't need a second account to use with the new iPod. I use one Appl e ID and iTunes library for two iPods, and two iPad. I have different content on all four devices. You can select exactly what you want to sync to each device and it can be different content on all devices.

  • Request for advice: TM/TC fails on one Macbook Pro, but not the other?

    Dear All- looking for some advice.
    Background: I installed a 1TB TC about 3 months ago to improve the wireless connectivity around the home/small business and to act as 1 stop backup- primarily for 2 main Macbook Pro’s. Everything seems to work fine, with the exception that the time machine will only successfully back up one Macbook Pro (my wife's) and not the other (mine). In fact I have NEVER been able to get a full successful backup for my machine since I bought my TC.
    Scenario: My wireless router from my TC services 2 Macbook Pro’s, 1 iMac, iPhone, Sony PSP, Sony PS3 etc. All successfully and at a good speed. The TC also runs time machine for backups on the 2 Macbook Pros. One MBPro (my wife’s), has worked like a charm and flawless (pre Oct 2008 model 4.1, 2.5Ghz Intel core 2 Duo, 4GB (667MHz)DDR2 SDRAM, OSX 10.5.8, 250GB HD, 512MB video). TM Backup over wireless to my TC works great. While the other (mine) I have NEVER been able to get a successful backup once (MBPro post Nov 2008 model 5.1, 2.8GHz Intel Core 2 Duo, 4GB (1067MHz) DDR3 RAM, OSX 10.5.8, 300GB HD, 768MB Video).
    Problem: I have tried a number different combinations of backup without success. I have diligently read numerous posts before coming here. My attempts include, preferences resets, full disk erases (re-named the disk several times), wireless connectivity, hardwired connectivity (i.e no other devices connected), some software running/ no software running, in sleep mode/without sleep mode, all at once backup or intermittent backups.
    All provide me with the same message that it is not able to complete a full backup due to a writing error ‘Backup Failed’. At this stage I would not be convinced that the TC is actually working properly, with the exception that it works flawlessly with my wife’s Macbook Pro (yes every time I erase the drive) and that the wireless connectivity is great. My account preferences and setup/access for the TC/TM are identical to the machine that works. The volume I am trying to backup on my machine is ~258GB, while my wife’s machine that works is only around 78GB. I thought this may still be the source of the failure, but cannot see a work around or why.
    Considering I bought the TC to allow a solid reliable backup, I am still unhappy and would like to continue to work for a resolve. Does anyone have any suggestions?
    Thanks in advance.
    SDP

    Welcome to the discussions, xSDP!
    Apologies if you have already tried this, but I couldn't find it in your detailed list of prior actions.
    Note the exact name of your hard drive on your computer. If you haven't changed this, it will be named Macintosh HD
    Open Hard Drive > Applications > Utilities > Disk Utility
    Click on the icon on the left side of the window that has the exact same name as your hard drive on the desktop
    Click Repair Disk Permissions
    It will probably take several hours to do this, so allow plenty of time.
    Once the process is complete, see if you can backup now.

  • Two email accounts, one password for both. will check one but not the other. Have had no problems before

    I have 2 email accounts for 2 people. TB will download mail for one but not the other. It can't authenticate the password. Passwords are both the same. Worked fine until today.

    The amount of information makes it somewhat hard to give a specific answer. I could only recommend:
    * Can you log into the account using the webmail service from your provider?
    * Have you verified the settings for the account to be correct (protocol, port number, password encoding)?
    The following page gives you a good start with resolving this issue:
    https://support.mozilla.org/en-US/products/thunderbird/fix-slowness-crashing-error-messages-and-other-problems/fix-problems-email-providers-gmail-yahoo-etc
    Hope this helps!

Maybe you are looking for