MISP 2.1: SYS. SOURCE$. Conversion of blocking SOURCES

Hello

I currently have a few thousand lines blocking the conversion of Unicode, the column of SYS. SOURCE$. SOURCE.

They all State need (planned) conversion, no representation not valid etc.

However, it is indicated in the documentation and help, the EDR should be able to handle this?

BR,

Kim

I think I found the problem.

It was two types, which contained comments convertible characters in their DDL.

I had to delete the tables of AQ queue that they used in order to remove these types.

Then I was able to proceed with the conversion - all green check marks now.

Note: This is just a test run, in order to get a grip of the tasks ahead.

BR,

Kim

Tags: Database

Similar Questions

  • MISP crashes when connecting after aborted scan

    After a stop of the database at one analysis MISP, our impossible to connect to the database more MISP.
    The GUI says 'connection to the database... ", the Panel of State 'Successful connection' and guard MISP newspapers suspended.

    DMU runs this query to the database: ' select count from sys.source$ ".
    s, o sys.obj$ where s.obj # o.obj # and o.type = # = 13 / * TYPE * / and
    s.ROWID in (select decode (substr (cast (e.row_id as varchar2)))
    (((4000)), 1, 1),'* ', null, e.row_id) of system.dum$ exceptions e, sys.obj$ o,.
    u sys. User$ where e.obj # = o.obj # and o.owner # = # and o.name = u.user
    ('SOURCE$ ' et you.name = 'SYS') ".

    It takes forever.

    Someone else had this problem?

    It will be normal to drop everything in running \dmu\admin\drop_repository.sql?

    I suspect an index on the SYSTEM. DUM$ EXCEPTIONS is missing. Unless you have the results of the analysis of value of many hours of time of scanning, the best approach is indeed to run \dmu\dmu\admin\drop_repository.sql and then connect to the database as if it were the very first connection MISP.

    -Sergiusz

  • SFC reports VistaSP2 corrupt config.sys file

    I got the following message after running SFC.exe: CSI 00000230 [SR] could not reproject corrupted file [ml:520 {260}, l:12 {6}] '------? \C:"\[l:20{10}]"config.sys '; source file in the store is also corrupted

    My Compaq 8710p works well if the question above bother me or can I ignore it? The start is a bit slow and 2 icons in the Notification bar are sometimes missing (Volume and network) but for the rest OK?

    Thank you

    Config.sys is unlikely to be used on your computer. It cannot be read when using MS-DOS or Windows 3.1 programs (prior to 1995). It is not even important for most, but not all, of these old programs.

    Ignore it.

  • Lightroom CC crashes when importing DNG conversion

    All a few times LR crashes my whole computer after importation and I think that during the conversion to DNG. It is not every time, so I don't know what is happening. I copy as DNG on import from my SD card, I turned off to generate intelligent insights to import as well. Usually occurs with a couple hundred pictures or more.

    It seems to import fine and get about 1/3 through conversion and blocking when it does. There are two status bars at the top left. One is the DNG conversion, and I'm not sure what the other is.

    I have a Nvidia of 870 with 4 GB of RAM on it, but I wonder if it is a problem of GPU acceleration. That's the thing I think I could turn and see if it happens again.

    So I think I knew what was causing it. (or one of two things, I guess I should test again one and then the other) I have a program called Infinit which is a file sharing application (a bit like dropbox, but without the storage... in fact I don't know where it stores the files, perhaps locally?). In any case, it runs in the Windows status bar in the background. When I leave, I did have a problem with the conversion of the DNG format since then. Questions of random weird program... The other option would be the application of Windows Home Server Launchpad which again, goes in the bin. I just don't not connect you with it, so it was still on that technically I guess so my money is on Infinit unless otherwise stated.

  • Analytics / requirement model

    It is a puzzle that I put myself after a discussion to make choices between SQL and PL/SQL - is not urgent not important and not serious.

    If I query dba_extents for a given table (e.g. sys.source$) measure information looks like this:

    Select file_id, block_id, blocks

    from dba_extents

    where owner = 'SYS '.

    and nom_segment = '$SOURCE. '

    order of file_id, block_id

    ;

    FILE_ID, BLOCK_IDBLOCKS

    ---------- ---------- ----------

    115048
    181688
    181768
    181928
    182888
    184408
    1100728

    ...

    177568128
    177696128
    177824128
    178080128
    189984128

    ...

    1907521024

    80 selected lines.

    I have a piece of code that bed the exent list, joins a list of numbers to enumerate each block in each scope, sorts the blocks of file_id and block_id, applies to an ntile (12) for the result set, and then selects the first and the last block in each tile to produce an output which is essentially 12 rows (first_file_id first_block_id (, last_file_id, last_block_id)-which I can convert it to a set of coating lines for the table rowid.  (This is essentially what dbms_parallel_execute when you create pieces of rowid - except that it uses the PL/SQL to do).

    My SQL does exactly the necessary work, but is significantly slower than the equivalent PL/SQL - we're talking only a few seconds on the line for very large objects, so the difference is not relevant for the purposes of actual production - largely, I think, because I have to increase the size of the initial result set between the number of extensions and the number of blocks and then narrow down again so that the PL/SQL can simply browse the definitions of making simple arithmetic.

    I'm sure that there is a way of MODEL clause to avoid explosion, and I'd like to see if anyone has the time, but I keep thinking I'm close an analytical solution, but can't quite get there. So if anyone can find a solution that would be even better than a solution of model - failing that someone proves that it can be done effectively in simple analytical SQL.

    UPDATE: I forgot to declare explicitly that point to the explosion of the block and ntile() was that it was a simple strategy to get the same number (+ /-1) block in all ranges of rowid.

    Concerning

    Jonathan Lewis

    Post edited by: Jonathan Lewis

    The solution:

    [Update: Please see https://stewashton.wordpress.com/2015/07/01/splitting-a-table-into-rowid-ranges-of-equal-size/ for an update solution, a bit cleaner.] Thanks Chris227, I learned for the function WIDTH_BUCKET]!

    with data as (
      select (select blocks / 12 from my_segments) blocks_per_chunk,
      object_id
      from my_objects
    )
    , extents as (
      select
      nvl(sum(blocks) over(
        order by file_id, block_id
        rows between unbounded preceding and 1 preceding
      ),0) cumul_start_blocks,
      sum(blocks) over(order by file_id, block_id) - 1 cumul_end_blocks,
      blocks, block_id, file_id,
      data.*
      from my_extents, data
    )
    , extents_with_chunks as (
      select
      trunc(cumul_start_blocks / blocks_per_chunk) first_chunk,
      trunc((cumul_end_blocks) / blocks_per_chunk) last_chunk,
      round(trunc(cumul_start_blocks / blocks_per_chunk)*blocks_per_chunk) first_chunk_blocks,
      round(trunc((cumul_end_blocks+1.0001) / blocks_per_chunk)*blocks_per_chunk)-1 last_chunk_blocks,
      e.* from extents e
    )
    , expanded_extents as (
      select first_chunk + level -1  chunk,
      cumul_start_blocks, file_id, block_id,
      case level when 1 then cumul_start_blocks
          else round((first_chunk + level -1)*blocks_per_chunk)
        end start_blocks,
        case first_chunk + level -1 when last_chunk then cumul_end_blocks
          else round((first_chunk + level)*blocks_per_chunk)-1
        end end_blocks
      from (
        select * from extents_with_chunks
        where first_chunk_blocks = cumul_start_blocks
          or last_chunk_blocks = cumul_end_blocks
          or first_chunk < last_chunk
      )
      connect by cumul_start_blocks = prior cumul_start_blocks
      and first_chunk + level -1 <= last_chunk
      and prior sys_guid() is not null
    )
    select chunk,
    min(file_id) first_file_id,
    max(file_id) last_file_id,
    min(block_id + start_blocks - cumul_start_blocks)
      keep (dense_rank first order by cumul_start_blocks) first_block_id,
    max(block_id + end_blocks - cumul_start_blocks)
      keep (dense_rank last order by cumul_start_blocks) last_block_id,
    max(end_blocks) + 1 - min(start_blocks) blocks
    from expanded_extents
    group by chunk
    order by chunk;
    
  • Interpretation of TKPROF output

    Hello colleagues

    IM reviews the performance of one of our DBs (10.2.0.2 on MS 2003 SP1). I found a table called ACCESS_INAB that was called frequently. This table in the buffer to keep pinning, we improved demand owerall reaction time.
    There is still a question Im fighting with. Still, a specific operation takes a long time (30-45 sec.) to display a comment field. I tried to trace the session and got following the result:


    ********************************************************************************

    Select *.
    Of
    (select rownum rn, a.* (SELECT TL.id, TL.process_id, TL.event_time,
    TL.severity, TL.short_description, TPG.process_group_text, TP.process_text.
    Transaction_Log TL, Transaction_Process_Groups TPG, u.display_user_name
    Transaction_Process TP, u users WHERE TP.process_group_id is
    TPG.process_group_id and TL.process_id = TP.process_id and TL.pguid =
    (u.pguid (+) ORDER BY desc gravity, event_time) a) where rn between 1 and
    10


    call the query of disc elapsed to cpu count current lines
    ------- ------ -------- ---------- ---------- ---------- ---------- ----------
    Parse 1 0.00 0.00 0 0 0 0
    Run 1 0.00 0.00 0 0 0 0
    Fetch 1 5.09 73.06 60248 47768 55 10
    ------- ------ -------- ---------- ---------- ---------- ---------- ----------
    Total 3 5.09 73.07 60248 47768 55 10

    Chess in the library during parsing cache: 1
    Optimizer mode: ALL_ROWS
    The analysis of the user id: 45

    Rows Row Source operation
    ------- ---------------------------------------------------
    10 REVIEWS (cr = 47768 pr = pw 60248 = 14888 times = 62516706 en)
    COUNTY 582169 (cr = 47768 60248 14888 times = en 91625035 = pr = pw)
    VIEW 582169 (cr = 47768 60248 14888 times = en 91042864 = pr = pw)
    582169 SORT ORDER BY (cr = 47768 pr = pw 60248 = 14888 times = 90460690 en)
    582169 HASH JOIN (cr = 47768 pr = pw 52211 = 6851 times = 92165669 en)
    8 TABLE ACCESS FULL TRANSACTION_PROCESS_GROUPS (cr = 7 pr = 0 pw = time 0 = 52 fr)
    582169 HASH JOIN (cr = 47761 pr = pw 52211 = 6851 times = 91000485 en)
    62 TABLE ACCESS FULL TRANSACTION_PROCESS (cr = 7 pr = 0 pw = time 0 = 86 en)
    582169 HASH JOIN RIGHT OUTER (cr = 47754 pr = pw 52211 = 6851 times = 89252852 en)
    618316 MAT_VIEW FULL ACCESS_INAB ACCESS (cr = 12656 pr = pw 10308 = time 0 = 21098797 en)
    582169 TABLE ACCESS FULL TRANSACTION_LOG (cr = 35098 pr 35052 pw = time = 0 = 28542620 en)


    Elapsed time are waiting on the following events:
    Event waited on times max wait for the Total WHEREAS
    ---------------------------------------- Waited ---------- ------------
    file scattered read 3808 db 41.01 0.26
    DB file sequential read 361 0.15 1.78
    trip direct writing temp 616 2.09 0.10
    direct path read 2023 temp 0.34 13.95
    SQL * Net message to client 1 0.00 0.00
    SQL * Net client message 1 0.01 0.01
    ********************************************************************************

    Can you help me to correctly interpret this result?

    Kind regards

    Tony

    PS: I used [this | http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/instance_tune.htm#i34268] reference.

    Published by: TonyDBA on August 26, 2008 02:19

    Tony,

    'so many physical reads' regarding: the most obvious reason is that your pool to KEEP is poorly calibrated. Check the view of BH V$ to find out how many blocks of your objects is actually cached. Note, however, that an indexed as appropriate approach is much better in terms of use of resources and performance.

    With regard to the modification of the SQL: I think you should go and say your software vendor or that their use of ROWNUM is inappropriate and does not work the way it is intended for application developers. You can use a simple query like this to show them the difference that makes it potentially:

    -- any large table will do, sys.source$ is usually among the biggest in a fresh test/demo database
    select * from (select * from sys.source$ order by line) where rownum <= 10;
    
    select * from (select * from sys.source$ order by line) where rownum between 1 and 10;
    
    select * from v$sql_workarea
    where sql_id in (
    select sql_id from v$sql where sql_text = 'select * from (select * from sys.source$ order by line) where rownum <= 10'
    );
    
    select * from v$sql_workarea
    where sql_id in (
    select sql_id from v$sql where sql_text = 'select * from (select * from sys.source$ order by line) where rownum between 1 and 10'
    );
    

    If you carefully check the output taken from V$ SQL_WORKAREA you will find the sort of the first operation query using the "appropriate" ROWNUM<= 10"="" used="" a="" very="" small="" memory="" footprint,="" whereas="" the="" second="" one="" using="" the="" between="" operator="" consumes="" a="" lot="" more="" memory="" and="" quite="" often="" even="" spills="" to="">

    You can also spot the difference in the execution plan, because the first uses the "ORDER of SORTING BY STOPKEY" operation that is using the optimization that only top n rows must be kept in memory and sorted, while the second is a "SORT ORDER BY" ordinary sort the result set.

    If they want to stick to the approach 'between' then an analytical function as ROW_NUMBER() can be used to achieve a similar optimization for sorting of the WINDOW.

    See Tom Kyte notes on how to correctly use top-n queries and pagination with ROWNUM or analytical functions.

    See for example here: http://www.oracle.com/technology/oramag/oracle/07-jan/o17asktom.html
    and here: http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html

    Regarding the index: given that you order by a descending column and the other a growing, I think you need to create an appropriate index composite tree conventional in order to be able to avoid all sorts to take place on the TRANSACTION_LOG table. This means that you need an index on (GRAVITY DESC, EVENT_TIME) and you should have clues on all columns of the other tables join.

    Note, however, that this approach NOSORT works easy if you aren't sorting on columns \*CHAR\*. If you sort by them your current client/session NLS_SORT setting determines the sort order, which is usually not the BINARY sort order used to create indexes on columns of default \*CHAR\*. Despite differently described in the Oracle documentation (where it is said that the use of a NLS_SORT setting! = BINARY will always use a full table scan) there is a solution to this by creating an index based on a function appropriate with the NLSSORT function if most / all clients share the same NLS_SORT setting.

    Kind regards
    Randolf

    Oracle related things:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle:
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

  • Firefox NEVER crashed. 7 Firefox hangs and crashes every five minutes

    I switched to FF a few years ago and never had a wonderful program of the problem. FF wanted to spend to the V7, and very comfortable. Since then, FF lock up every five minutes so bad, that I have to restart. My email locked, yahoo freezes and I can't type more than 5 letters in a conversation without blocking. Somehow, your boring help section trying this blame on other programs!


  • convert I32 U8

    Hello

    I have a problem during the conversion from my table.

    I have a table 1 d of 32-bit integers for a long time.

    I would like to convert a table 1 d of the 8-bit byte unsigned integers.

    I try to use the conversion u8 block, but the result I get is a 1 d table that I accepted, but all my item values are transformed into zero rather than keep the original.

    can someone help me?

    Hi koekie,.

    (1) you will have problems to convert I32 numbers greater than 255 (or smaller than 0) U8 values, both get forced to the U8 line possible!

    (2) you don't say you are trying to convert the values.

    (3) are you really want to convert your table instead of convert? What kind of result data do you really need?

  • results of the sfc/scannow

    bussiness of vista os install all windows updates I ran sfc/scannow returned result 00000216 [SR] cannot repair the military record [l:20 {10}] "config.sys" Microsoft-Windows-NTVDM-System32, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store " hash mismatch

    00000152 [SR] cannot repair the military record [l:20 {10}] "config.sys" Microsoft-Windows-NTVDM-System32, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "
    2011-07-18 17:35:01, info CSI 00000154 [SR] cannot repair the military record [l:20 {10}] "config.sys" Microsoft-Windows-NTVDM-System32, Version = 6.0.6002.18005, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, type neutral, TypeName neutral, neutral to the public key in the store, hash mismatch "

    CSI 00000155 [SR] this element is referenced by [l:160 {80}] "" Package_25_for_KB948465 ~ 31bf3856ad364e35 ~ x 86 ~ ~ 6.0.1.18005.948465 - 113_neutral_GDR ""
    2011-07-18 17:35:01, info CSI 00000158 [SR] could not reproject corrupted file [ml:520 {260}, l:12 {6}] '------? \C:"\[l:20{10}]"config.sys '; source file in the store is also corrupted

    2011-07-18 17:40:22, CSI Info 0000021 d [SR] repair complete
    2011-07-18 17:40:22, Info CSI 0000021e [SR] Committing transaction
    2011-07-18 17:40:23, info CSI 00000222 [SR] check and complete repair operation. All of the files and registry keys listed in this operation were repaired successfully

    I don't know if it shows the files listed above the entrance complete repair were repaired or not. Can someone verify corroupted files have been repaired?

    Thank you

    E-mail address is removed from the privacy *.

    Hello

    Just load config.sys in Notepad or Wordpad and make sure that nothing indicated do not
    (corruption) after file = 80 - move the cursor to the right of the 0 and HOLD the button DELETE
    key down until you know nothing is there (perhaps corruption is not visible), then
    SAVE the file.

    Yes all the other issues that should have been repaired if it had everything he does
    doesn't look like there was.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • IOS - XE 4500: Crash on the ACL configuration

    Hi all

    We have recently migrated from stand-alone to VSS on our switches C4500 with Sup 7 - E.

    but the switch hangs at every time we edit or modify the ACL with the below error message:

    % SYS-3-BADBLOCK: bad block pointer

    % SYS-6-MTRACE: mallocfree: addr, pc

    % SYS-6-BLKINFO: corrupted next pointer blk

    % SYS-6-MEMDUMP: 0X7E043FF8

    We have noticed that there is a new bug for this issue is to say

    CSCun33897 Symptom: 
    A series switch Catalyst 4500 running IOS - XE may restart unexpectedly when the configuration of the ACL is applied to an interface.

    but there is no solution available yet.

    Please let me know if anyone had this kind of issue. Appreciate your suggestion and comments thereon.

    Used current Image: cat4500e-universalk9. Spa.03.05.00.E.152 - 1.E.bin.

    Thanks in advance.

    its seems to be closely related to the bug you mentioned

    If you download crashinfo I can look at it and try to confirm.

    Concerning

    Naveen

    rate if it's useful. *

  • Issues of weird in replication time Point

    I asked questions when you specify until WHAT the clauses in the RMAN clones.

    For example, suppose we have a RMAN full backup of the source database taken Thursday night at 22:00 which is completed by 23:00.

    Then on Friday, I indicate in my RMAN clone one hour Friday from 05:00 UNTIL. Instead of using the backup from Thursday night and roll forward six hours, RMAN uses the full backup on Wednesday night and rolls forward 30 hours.

    Or on other occasions it will cancel the Wednesday and just stop rolling forward, just after midnight.

    This is the script used when cloning

    connect target sys / * @ < SOURCE >

    auxiliary connection.

    Run {}

    DUPLICATE the TARGET < helper > DATABASE

    until time ' TO_DATE (November 22, 2013 02:00 "").

    LOGFILE, GROUP 1 ('+ DATA) 250M, SIZE

    GROUP 2 ('+ DATA') SIZE 250 M,

    GROUP 3 ('+ DATA') SIZE 250 M,

    GROUP 4 ('+ DATA') SIZE 250 M;

    }

    Look at the Notes of the Oracle:

    Bug 11694127 - RMAN DUPLICATE not to honor TIME portion of the date for 'Until' [11694127.8 ID]

    Recovery Rman Duplication time does not Match specified until the time Clause [ID 1300348.1]

    see if they apply.

    Hemant K Collette

  • P2V defective after installation of the Converter Agent, unknown error produced to the customer

    Hello! I need help with that on:

    vSphere Client 4.0.0 build 208111

    vCenter Server 4.0.0 build 208111

    Host ESX 4.0.0 build 261974

    Company agent Converter 4.1.1 build 20617

    Source of Windows Server 2003 SP1 x 86-HP ProLiant ML370 std

    Trying to P2V using "Import Machine" vcenter. After that the converter Agent is installed, the Import Wizard displays an error: unknown error produced to the customer. After you click OK. The VI client ends.

    The source servers and ESX host are on a place other than the vCenter, but on the 'same' network. Other P2V in the same place are passed without problem.

    VMware converter - client.log:

    Journal for VMware Converter Enterprise Client, pid = 4408, version = version 4.1.1 = build-206170, option = release, section = 2

    Current working directory: C:\Program Files\VMware\Infrastructure\Virtual Infrastructure Client\Plugins\Converter Enterprise 4.1.1

    HOSTINFO: See Intel CPU, numCoresPerCPU 2, numThreadsPerCore 1.

    HOSTINFO: This machine has 1 physical CPU, 2 total hearts and 2 logical processors.

    Recorder P2V created

    Initialize SSL

    Using the libcrypto, version 9070CF

    Vmacore::InitSSL: doVersionCheck = true, handshakeTimeoutUs = 120000000

    Created SSL context

    AppInit finished

    Start of the execution of a task

    By ensuring that this interface UFAD version vmware converter - 4.1.1

    SSLVerifyCertAgainstSystemStore: Incompatibility of topic: VMware vs. 172.25.17.19

    SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    • Used to connect host name does not match name the object on the certificate of the host

    • A certificate of the host string comes from an untrusted root.

    SSLVerifyCertAgainstSystemStore: Verification of the certificate is disabled, so connection will continue despite the error

    UFAD interface version is vmware-converter - 4.1.1

    Execution completed the task

    Start of the execution of a task

    SSLVerifyCertAgainstSystemStore: Incompatibility of topic: VMware vs. osl1019

    SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    • Used to connect host name does not match name the object on the certificate of the host

    • A certificate of the host string comes from an untrusted root.

    SSLVerifyCertAgainstSystemStore: Verification of the certificate is disabled, so connection will continue despite the error

    Connecting to host osl1019 on port 443 using the https protocol

    SSLVerifyCertAgainstSystemStore: Incompatibility of topic: VMware vs. osl1019

    SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    • Used to connect host name does not match name the object on the certificate of the host

    • A certificate of the host string comes from an untrusted root.

    SSLVerifyCertAgainstSystemStore: Verification of the certificate is disabled, so connection will continue despite the error

    Execution completed the task

    Start of the execution of a task

    Connection to IPC$ on 172.20.2.10 as domain\user1

    Manager of SMB: host has already had a different share mapped with conflicting credentials.  Could not map share http://\\172.20.2.10\IPC$.

    Task failed: P2VError REMOTE_UFA_CREDENTIAL_CONFLICT_ERROR (172.20.2.10)

    Start of the execution of a task

    Connection to IPC$ on 172.20.2.10 as domain\user1

    Successfully connected to IPC$ on 172.20.2.10

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Unable to connect to
    172.20.2.10\pipe\vmware-converter-VMDB. Reason: The system cannot find the specified file. . Error code: 2.

    From vmware-converter on 172.20.2.10

    Could not open service handle to with 983103:1060 level access

    Failed to start VMware Converter Agent service on 172.20.2.10. Reason: Service control manager error.

    Failed to start the vmware converter service

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Unable to connect to
    172.20.2.10\pipe\vmware-converter-VMDB. Reason: The system cannot find the specified file. . Error code: 2.

    From vmware-converter on 172.20.2.10

    Could not open service handle to with 983103:1060 level access

    Failed to start VMware Converter Agent service on 172.20.2.10. Reason: Service control manager error.

    Failed to start the vmware converter service

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Unable to connect to
    172.20.2.10\pipe\vmware-converter-VMDB. Reason: The system cannot find the specified file. . Error code: 2.

    From vmware-converter on 172.20.2.10

    Could not open service handle to with 983103:1060 level access

    Failed to start VMware Converter Agent service on 172.20.2.10. Reason: Service control manager error.

    Failed to start the vmware converter service

    Give up trying to connect to
    172.20.2.10\pipe\vmware-converter-VMDB

    Task failed: P2VError UFA_NOT_RUNNING()

    Installation UFAD hostname = 172.20.2.10, user name is domain\user, postponeReboot = 1

    Start of the execution of a task

    Connect to ADMIN$ on 172.20.2.10 as domain\user1

    Successfully connected to ADMIN$ on 172.20.2.10

    MakeSafeDirectory: directory exists, skip the security lock

    MakeSafeDirectory: directory exists, skip the security lock

    MakeSafeDirectory: directory exists, skip the security lock

    ہ service args: com.vmware.courier - vntixenubmcaveth

    Could not open service handle to with 983551:1060 level access

    Execution completed the task

    Start of the execution of a task

    Connection to IPC$ on 172.20.2.10 as domain\user1

    Successfully connected to IPC$ on 172.20.2.10

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Connected to the
    172.20.2.10\pipe\vmware-converter-VMDB

    Unknown path: /vmomi/

    Impossible task without error message

    VMware converter - agent.log:

    Journal for the VMware Converter Enterprise, pid = 1396, Agent version = 4.1.1 build = build-206170, option = release, section = 2

    Cannot create the writer console

    Current working directory: C:\Program VMware Converter Enterprise Agent

    HOSTINFO: See Intel CPU, numCoresPerCPU 1, numThreadsPerCore 1.

    HOSTINFO: This machine has 1 UC physical and carrots 1 1 logical processors total.

    TaskMax = 40, IoMin = 1, IoMax = 81

    Try ufa_agent

    Plugin path 0: ufa - agent.dll

    Absolute path of the plugin 0: C:\Program VMware Converter Enterprise Agent\ufa - agent.dll

    Initializing the SSL context

    Using the libcrypto, version 9070CF

    Vmacore::InitSSL: doVersionCheck = true, handshakeTimeoutUs = 120000000

    Plugin initialized

    Try ufa_client

    Plugin path 1: ufa - client.dll

    Absolute path of the plugin 1: C:\Program VMware Converter Enterprise Agent\ufa - client.dll

    UfaClientPlugin Init

    Try ufa_slave

    Plugin path 2: ufa - slave.dll

    Absolute path of the plugin 2: C:\Program VMware Converter Enterprise Agent\ufa - slave.dll

    Microsoft Windows Server 2003,

    Standard Edition

    Service Pack 1 (Build 3790)

    UfaSlavePlugin Init

    Try ufa_sysMigration

    Plugin 3 path: ufa - sysmigration.dll

    Absolute path of the plugin 3: C:\Program VMware Converter Enterprise Agent\ufa - sysmigration.dll

    NFC connection accept timeout: 180000 milliseconds

    NFC request timeout: 180000 milliseconds

    NFC read timeout: 60000 milliseconds

    NFC write timeout: 600 000 milliseconds

    NFC connection accept timeout: 180000 milliseconds

    NFC request timeout: 180000 milliseconds

    NFC read timeout: 60000 milliseconds

    NFC write timeout: 600 000 milliseconds

    SysMigrationPlugin Init

    Try ufa_sysReconfig

    Plugin path 4: ufa - sysreconfig.dll

    Absolute path of the plugin 4: C:\Program VMware Converter Enterprise Agent\ufa - sysreconfig.dll

    SysReconfigPlugin Init

    The data store of reconfiguration of loading XML from C:\Program VMware Converter Enterprise Agent\reconfigurationDataStore.dat...

    ReconfigurationDataStore of filling...

    Action free of charge

    CurrentControlSetKey update the registry: Control\CriticalDeviceDatabase\pci #ven_1000 & dev_0030 patch: C_SYMMPI

    CurrentControlSetKey update of the register: Services\symmpi patch: S_SYMMPI

    Update the filePathInWinDir file: system32\drivers\symmpi.sys source: BASEOS sourceFileName: symmpi.sys

    Action BuslogicMylex of loading

    CurrentControlSetKey update of the register: enum\root\LEGACY_BUSLOGIC patch: L_BUSLOGIC

    CurrentControlSetKey update of the register: services\buslogic patch: S_BUSLOGIC

    Update the filePathInWinDir file: system32\drivers\buslogic.sys source: VMWARE_DRIVERS_CAB sourceFileName: buslogic_for_nt.sys

    Action Buslogic_vmscsi of loading

    CurrentControlSetKey update the registry: Control\CriticalDeviceDatabase\pci #ven_104b & dev_1040 patch: C_VMSCSI

    CurrentControlSetKey update of the register: Control\Class\ {4D36E97B-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_VMSCSI

    CurrentControlSetKey update of the register: Services\vmscsi patch: S_VMSCSI

    Update the filePathInWinDir file: system32\drivers\vmscsi.sys source: VMWARE_DRIVERS_CAB sourceFileName: vmscsi.sys

    Action Buslogic_vmscsi_ACPI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_104B & DEV_1040 & SUBSYS_1040104B & REV_01\3 & 61aaa01 & 0 & 80 patch: E_VMSCSI

    Action Buslogic_vmscsi_NotACPI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_104B & DEV_1040 & SUBSYS_1040104B & REV_01\2 & ebb567f & 0 & 80 patch: E_VMSCSI

    Action Enable_Lsi_Scsi_Driver of loading

    CurrentControlSetKey update of the register: Services\LSI_SCSI patch: S_LSI_SCSI

    Action Mouse_Keyboard_Common of loading

    Update the registry currentControlSetKey: Control\CriticalDeviceDatabase\ * pnp0303 patch: C_PS2KBD

    CurrentControlSetKey update of the register: Control\Class\ {4D36E96B-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_PS2KBD

    Update the registry currentControlSetKey: Control\CriticalDeviceDatabase\ * pnp0f13 patch: C_PS2MOUSE

    Update the registry currentControlSetKey: Control\CriticalDeviceDatabase\ * pnp0f03 patch: C_PS2MOUSE

    CurrentControlSetKey update of the register: Control\Class\ {4D36E96F-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_PS2MOUSE

    Action Mouse_Keyboard_ISAPnP of loading

    CurrentControlSetKey update the registry: Control\CriticalDeviceDatabase\pci #ven_8086 & dev_7110 & cc_0601 patch: C_ISAPNP

    Action Mouse_Keyboard_ACPI of loading

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0303 patch: E_PS2KBD

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F13 patch: E_PS2MOUSE

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F03 patch: E_PS2MOUSE

    Action Mouse_Keyboard_ACPI_Vista of loading

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F13 patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F03 patch: SKUNKWORKS_FILLER

    Action Mouse_Keyboard_NotACPI of loading

    Update the registry currentControlSetKey: Enum\Root\ * PNP0F13 patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: Enum\Root\ * PNP0F03 patch: SKUNKWORKS_FILLER

    Action NT_SVGA_Registry_Updates of loading

    CurrentControlSetKey update of the register: enum\root\LEGACY_VMX_SVGA patch: E_VMX_SVGA

    CurrentControlSetKey update of the register: services\vmx_svga patch: S_VMX_SVGA

    Action Common_SVGA_Updates of loading

    CurrentControlSetKey update of the register: services\vmx_svga patch: S_VMX_SVGA

    CurrentControlSetKey update of the register: Control\Class\ {4D36E968-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_VMX_SVGA

    Update the filePathInWinDir file: INF\vmx_svga.inf source: VMWARE_DRIVERS_CAB sourceFileName: vmx_svga.inf

    Update the filePathInWinDir file: system32\vmx_fb.dll source: VMWARE_DRIVERS_CAB sourceFileName: vmx_fb.dll

    Update the filePathInWinDir file: system32\vmx_mode.dll source: VMWARE_DRIVERS_CAB sourceFileName: vmx_mode.dll

    Update the filePathInWinDir file: system32\drivers\vmx_svga.sys source: VMWARE_DRIVERS_CAB sourceFileName: vmx_svga.sys

    Action SVGA_Registry_Updates_APCI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_15AD & DEV_0405 & SUBSYS_040515AD & REV_00\3 & 61aaa01 & 0 & 78 patch: E_VMX_SVGA

    Action SVGA_Registry_Updates_NotACPI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_15AD & DEV_0405 & SUBSYS_040515AD & REV_00\2 & ebb567f & 0 & 78 patch: E_VMX_SVGA

    Action Restore_i8042_NT5 of loading

    CurrentControlSetKey update of the register: Services\i8042prt patch: SKUNKWORKS_S_I8042

    Update the filePathInWinDir file: system32\drivers\i8042prt.sys source: BASEOS sourceFileName: i8042prt.sys

    Action Deref_vpcsrvc of loading

    CurrentControlSetKey update of the register: Services\1-driver-vpcsrvc patch: SKUNKWORKS_FILLER

    Update the registry CurrentControlSetKey: Services\1-vpcsrvc patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: Enum\LEGACY_1-DRIVER-VPCSRVC patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: patch Enum\LEGACY_1-VPCSRVC: SKUNKWORKS_FILLER

    Action Deref_mrxvpc of loading

    CurrentControlSetKey update of the register: Services\MrxVPC patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_MRXVPC patch: SKUNKWORKS_FILLER

    Action Deref_vpcmap of loading

    CurrentControlSetKey update of the register: Services\VPCMap patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_VPCMAP patch: SKUNKWORKS_FILLER

    Deref_vpc-s3_NT4 of loading action

    CurrentControlSetKey update of the register: Services\vpc-s3 patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_VPC-S3 patch: SKUNKWORKS_FILLER

    Deref_vpc-s3_NT5 of loading action

    CurrentControlSetKey update of the register: Services\vpc-s3 patch: SKUNKWORKS_FILLER

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_5333 & DEV_8811 & SUBSYS_00000000 & REV_00\3 & 267a616a & 0 & 40 patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\s3legacy patch: SKUNKWORKS_FILLER

    Action Deref_vmsrvc of loading

    CurrentControlSetKey update of the register: Services\1-driver-vmsrvc patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: Enum\Root\LEGACY_1-DRIVER-VMSRVC patch: SKUNKWORKS_FILLER

    Update the registry CurrentControlSetKey: Services\1-vmsrvc patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: patch Enum\Root\LEGACY_1-VMSRVC: SKUNKWORKS_FILLER

    Action Deref_netfin of loading

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_NETFIN patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\NetFin patch: SKUNKWORKS_FILLER

    Action Deref_cpqdmi of loading

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_CPQDMI patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\CPQDMI patch: SKUNKWORKS_FILLER

    Action Deref_cpqalert of loading

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_CPQALERT patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\CPQALERT patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\EventLog\System\CPQALERT patch: SKUNKWORKS_FILLER

    Action Deref_cpqagent of loading

    CurrentControlSetKey update of the register: Services\EventLog\System\Snmp patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\Snmp patch: SKUNKWORKS_FILLER

    Action Deref_ipmi of loading

    CurrentControlSetKey update of the register: Services\IPMI patch: SKUNKWORKS_FILLER

    Action RemoveUnwantedKeys of loading

    CurrentControlSetKey update of the register: Services\VPCMap patch: SKUNKWORKS_FILLER

    Action FixSetupLog of loading

    String replace updated filePathInWinDir: repair\setup.log model:
    System32
    value of ntoskrnl.exe.*\.exe:
    System32
    Ntoskrnl.exe = "ntoskrnl.exe".

    String replace updated filePathInWinDir: repair\setup.log model:
    System32
    value of Hal.dll.*\.dll:
    System32
    HAL.dll = "hal.dll".

    Action DeleteInfCacheFile of loading

    FilePathInWinDir delete the file: inf\INFCACHE.1

    Definition of loading GenericWin2k364Bit

    Definition of loading GenericVista64Bit

    Definition of loading GenericWinXP64Bit

    Definition of loading GenericWin64Bit

    Definition of loading NotWin64Bit

    Definition of loading GenericVista

    Definition of loading GenericWinNT5

    Definition of loading GenericWin2k3

    Definition of loading GenericWinXP

    Definition of loading GenericWin2k

    Definition of loading GenericWinNT4

    Definition of loading NotWinNT4

    Definition of loading NotWinVista

    Loading ACPI expression definition

    Definition of loading NotACPI

    Loading definition expression MultiProc

    Definition of loading InstallSVGA

    Definition of loading MustUpdateCoreNTFiles

    Definition of loading BuslogicMylex

    Definition of loading Buslogic_vmscsi

    Loading reconfiguration FixSetupLog

    Action FixSetupLog for reconfiguration of loading

    Loading reconfiguration BuslogicMylex

    Action BuslogicMylex for reconfiguration of loading

    Loading free reconfiguration

    Reconfiguration of loading free action

    Loading reconfiguration Buslogic_vmscsi_ACPI

    Action Buslogic_vmscsi for reconfiguration of loading

    Action Buslogic_vmscsi_ACPI for reconfiguration of loading

    Loading reconfiguration Buslogic_vmscsi_NotACPI

    Action Buslogic_vmscsi for reconfiguration of loading

    Action Buslogic_vmscsi_NotACPI for reconfiguration of loading

    Loading reconfiguration Enable_Lsi_Scsi_Driver

    Action Enable_Lsi_Scsi_Driver for reconfiguration of loading

    Loading reconfiguration Mouse_Keyboard_ACPI

    Action Mouse_Keyboard_Common for reconfiguration of loading

    Action Mouse_Keyboard_ISAPnP for reconfiguration of loading

    Action Mouse_Keyboard_ACPI for reconfiguration of loading

    Loading reconfiguration Mouse_Keyboard_NotACPI

    Action Mouse_Keyboard_Common for reconfiguration of loading

    Action Mouse_Keyboard_ISAPnP for reconfiguration of loading

    Action Mouse_Keyboard_NotACPI for reconfiguration of loading

    Loading reconfiguration Mouse_Keyboard_ACPI_Vista

    Action Mouse_Keyboard_Common for reconfiguration of loading

    Action Mouse_Keyboard_ACPI_Vista for reconfiguration of loading

    Loading reconfiguration SVGA_NT

    Action Common_SVGA_Updates for reconfiguration of loading

    Action NT_SVGA_Registry_Updates for reconfiguration of loading

    Loading reconfiguration SVGA_notNT_ACPI

    Action Common_SVGA_Updates for reconfiguration of loading

    Action SVGA_Registry_Updates_APCI for reconfiguration of loading

    Loading reconfiguration SVGA_notNT_NotACPI

    Action Common_SVGA_Updates for reconfiguration of loading

    Action SVGA_Registry_Updates_NotACPI for reconfiguration of loading

    Loading reconfiguration Restore_i8042_NT5

    Action Restore_i8042_NT5 for reconfiguration of loading

    Loading reconfiguration Deref_vpcsrvc

    Action Deref_vpcsrvc for reconfiguration of loading

    Loading reconfiguration Deref_mrxvpc

    Action Deref_mrxvpc for reconfiguration of loading

    Loading reconfiguration Deref_vpcmap

    Action Deref_vpcmap for reconfiguration of loading

    Loading reconfiguration Deref_vpc-s3_NT4

    Deref_vpc-s3_NT4 for reconfiguration of loading action

    Loading reconfiguration Deref_vpc-s3_NT5

    Deref_vpc-s3_NT5 for reconfiguration of loading action

    Loading reconfiguration Deref_vmsrvc

    Action Deref_vmsrvc for reconfiguration of loading

    Loading reconfiguration Deref_netfin

    Action Deref_netfin for reconfiguration of loading

    Loading reconfiguration Deref_cpqdmi

    Action Deref_cpqdmi for reconfiguration of loading

    Loading reconfiguration Deref_cpqalert

    Action Deref_cpqalert for reconfiguration of loading

    Loading reconfiguration Deref_cpqagent

    Action Deref_cpqagent for reconfiguration of loading

    Loading reconfiguration Deref_ipmi

    Action Deref_ipmi for reconfiguration of loading

    Loading reconfiguration RemoveUnwantedKeys

    Action RemoveUnwantedKeys for reconfiguration of loading

    Loading reconfiguration Delete_InfCacheFile

    Action DeleteInfCacheFile for reconfiguration of loading

    Load patches for WINDOWS4.0

    Load patches for WINDOWS4.0

    Load patches for WINDOWS4.0

    Load patches for WINDOWS4.0

    Try ufa_vmImporter

    Plugin path 5: ufa - vmimporter.dll

    Absolute path of the plugin 5: C:\Program VMware Converter Enterprise Agent\ufa - vmimporter.dll

    VMImporterPlugin Init

    VMDB channel name:
    .\pipe\vmware-converter-VMDB, use the SSL protocol: true

    New format for serialization of VMDB VMOMI

    Plugin has started

    UfaClientPlugin Start

    UfaSlavePlugin Start

    SysMigrationPlugin Start

    SysReconfigPlugin Start

    VMImporterPlugin Start

    vmware converter service started

    IVmdbPipe2Impl operation completed with error: the pipe is closed.

    Thanks in advance for any help provided!

    Cannot find anything on your error. It is sometimes better to install standalone converter locally on the server that you are trying to convert. Then run the converter locally on your virtual infrastructure.

    Best wishes / Saludos

    Por don't favor no olvides calificar las responses that you were should o ayuda valiosos.

    Please, do not forget the points of call of the "useful" or "correct" answers

    ________________________________________

    Nicolas Solop

    VMware vExpert 2010 - VCP 410 - VCP 310 - VAC - VTSP

    My Linkedin profile

    Join the Virtualizacion en Español group in LinkedIn

    ! http://feeds.feedburner.com/WetcomGroup.1.gif!

  • A very basic question about the shared storage

    To implement GR 11, 2 in Sun SPARC 5.10, our sys admins have allocated block devices in the shared storage and they sent us a letter mentioning the disks. This is what looks like their mail

    Storage attached with the Node1
    /dev/rdsk/c4ikdzs3
    /dev/rdsk/c4ikdzs4
    .
    .
    Storage attached to Node2
    /dev/rdsk/c5ikdzj2
    /dev/rdsk/c5ikdzj5
    .
    .
    When I connect with the Node1: / dev/rdsk, I see
    /dev/rdsk/c4ikdzs3
    /dev/rdsk/c4ikdzs4
    .
    .
    as they have said. Same for Node2


    But all raw devices mentioned above should be visible at/dev/rdsk of nodes. Right? Isn't that whole point of CARS; Shared storage ?

    resistanceIsFruitful wrote:

    But all raw devices mentioned above should be visible at/dev/rdsk of nodes. Right? Isn't that whole point of CARS; Shared storage ?

    Not exactly, if you are referring to the names of devices...

    Each core will make a discovery to support when starting. When dealing with the LUN through one HBA (or similar), there is absolutely no guarantee that the nuclei will detect the LUNS in the same order and assign the same scsi device names to them. A LUN can be called device-foo-1 on a single server and device-foo-21 on another.

    In addition, several HBAs will be dual port and dual fiber running channels. So, not only is the same logic unit seen as a scsi device, different number of each core but you can see more than once. Device-foo-1 and device-foo-33 may be the same physical LUN on server 1.

    To solve this logical device name is required. This will be the name of the same device on all servers - and that it will support multiple paths of I/O to the LUN in turn seamlessly. This is done by looking at the unique signature of the SCSI - called WWID or World Wide nameof the software "special driver. With this unique signature, s/w only recognizes a specific LUN, regardless of what server s/w runs on.

    This s/w is called Multipath on Linux, EMC Powerpath and so on. I expect that you will have something similar on your servers.

    Scsi device that is mapped by the kernel to the unit number logic is not used. In the case of multipath , for example, use the + / dev/mpath/mpath+ devices. In the case of Powerpath, these will be + / dev/emcpower+ devices.

    What are the names of device you will use to 11g Grid Infrastructure and Oracle ASM and RAC installation and configuration of shared storage.

  • Populate ComboBox of another Combobox

    I would like to use comboboxes to 'dig deeper' in a multi-layer data system. If you select options in the first combobox and it fills the combobox according to your selection. Here is the script I use:

    fill combobox destination based on the CBC combobox selection
    private void fillComboBox (src:ComboBox, dest:ComboBox): void {}
    var file:String = src.selectedItem.toString ();
    var result: XML = new XML("..) /XML/ "+ line +". XML");

    dest.dataProvider = result. String ^;
    }

    It is a valid file string. Earlier in the code, I fill the first combobox using an XML object, so I don't see why it does not work:

    "< mx:XML id ="sys"source ="... /XML/SystemData.xml"/ >

    < mx:ComboBox id = "mainSys".
    change = dataProvider "fillComboBox (mainSys, subSys)" = "{sys." String}"/ >

    Thanks for any help!

    David, thank you, it's a good start in the right direction. I ended up doing the following and it worked:

    public void fillComboBox (src:ComboBox, dest:ComboBox): void {}
    var file:String = src.selectedItem.toString ();
    xmlLoader = new URLLoader();
    xmlLoader.addEventListener ("complete", parseXML);
    xmlLoader.load (new URLRequest("..) /XML/ "+ line +". XML"));
    changBox = dest;
    }

    private void parseXML(evt:Event): void {}
    var myXML:XML = new XML (xmlLoader.data);
    changBox.dataProvider = myXML.String;
    }

    I got most of this code from another blog: http://www.colettas.org/?p=109

    In any case it seems odd to me that the solution would be so difficult in actionscript, when one line:


    change = dataProvider "fillComboBox (mainSys, subSys)" = "{sys." String}"/ >

    does all in mxml. But I guess that I'm still learning. Thanks again.

  • Block 10 FireFox accesses local files the same source in Ajax? Chrome for this, but the workaround is - disable-web-security.

    I have a few Ajax in a test program that is accessing a local file. It worked well until I updated to Firefox 10. 10 Firefox blocks access to local files, even if they have the same source location? Chrome has this problem but I can overcome it by launching Chrome with the "-disable-web-security" option. Is there a similar to Firefox 10 option?

    A good place to ask for advice on web development is to the 'Web Standards Development/evangelism' MozillaZine forum.

    Aid to this forum are better informed on issues related to web development.

    You must register on MozillaZine forum site to post in this forum.

Maybe you are looking for

  • Moving countries and Apple ID: what are the pitfalls?

    I saw how to change Apple ID information if I change country (which I intend to do, moving from the Netherlands to the France). However, it is difficult to find up-to-date information about what is happening exactly to the goods I bought on my 'old'

  • Get the circular skin trying to download El Capitan on old iMac 10.6.8.  Y at - it a disc?

    I try to upgrade OS 10.6.8 to something higher and keep sent around in circles, literally.  I'd be happy with Yosemite, but App store says is no longer available.  I'd be happy with El Capitan, but can't seem to get there.  Is a disk available?

  • Support &amp; canon ICC Profiles

    I have noriced which for many Canon papers there are two medium-sized possibilities for each document. It ends in 1/2 and the other ends in 3. What is the difference between the two? Thank you. Ed

  • No el intensification password

    Necesito UN entrar has micorreo electronico pero no me already enter as soon as the el pongo password aren't correcto por fabor me help pordian

  • Possible to update BB10 Alpha on Mac?

    Hello The upgrade of the BB10 alpha page seems to ask you to download the last Director of office for Windows (even if you are on Mac). For Mac users, is it possible to upgrade to the new version of BB10? Thank you!