Unable to fax between two ATA 187 attached fax machines

I have two fax machines attached to the VOIP network using ATA 187's using the T38 fax relay.  I am unable to send faxes between the two devices.  Has anybody experienced this issue and if so what did you do to resolve the issue.  Tried fax passthrough with no luck.  Also set the dial peer on the voice gateway to use the T38 fax protocol.  Thanks for any info.

Looks like I just answered my own question.  Since both of these devices are on the internal VOIP network, 4 digit dialing between devices worked.  I am able to send between the two ATA attached fax machines.  Originally I was trying to go outside, using 9xxxxxxx, which did not work.

Similar Messages

  • ATA 187 outgoing fax call issue

    Dear All
    We have a issue in making outgoing fax call from ATA 187 user gets busy tone after dialing the number 
    we tried the latest firmware for ATA 187 and in gateway we tried the command 
    fax protocol pass-through g711ulaw  
    still we are facing the same issue
    Regards
    Vysakh.C.S

    Is your call hitting the gateway at all?  or are you having problems with internal?
    if external, debug voip and q931 and provide output

  • Can i share music and photos between two users on the same machine?

    How can I share my music and photos between two users on the same machine?

    Thank you Joe - I tried this but it's only showing a teensy amount of music - the stuff on the second users account as opposed to the giagntic library on the 'main' account. I actually went to a Genius Bar and they said that apple doesn't really want you to share music between accounts - parents don't want to hear their kids music etc. Which seemed strange, but it might be the case sadly   Thanks anyway!

  • Can a SQL Server Failover Cluster Instance (FCI) be Implemented Between Two Hyper-V Hosted Virtual Machines?

    I haven't had the opportunity to implement a SQL Server Failover Cluster Instance (FCI) for over 10 years and that was done with two physical, identical database servers way back in the day of Windows Server 2003 and SQL Server 2000 (old school).
    Can a SQL Server 2008 R2 Failover Cluster Instance (FCI) be implemented between two Hyper-V hosted virtual machines? The environment in question already has Windows Server 2012 R2 Hyper-V hosts in place, so I'm just looking to see if this is even
    possible and/or supported when utilizing virtual machines.
    The client in question is currently using SQL Server 2008 R2 instances running on Win2008R2, Win2012, and Win2012R2, but I'd also be interested how this can be done or not with SQL Server 2012 or 2014 as well. Thanks in advance.
    Bill Thacker

    Yes, it can be done with Hyper-V guests. In fact, with Windows Server 2012 R2 Hyper-V, guests can use the Shared VHDX feature for shared storage used by Windows clusters. The guests can run Windows Server 2008 and higher provided that the Hyper-V Integration
    Services are installed to support Shared VHDX. The only challenge here is making the Hyper-V hosts highly available as well, running it on WSFC.
    Edwin Sarmiento SQL Server MVP | Microsoft Certified Master
    Blog |
    Twitter | LinkedIn
    SQL Server High Availability and Disaster Recover Deep Dive Course

  • Unable to find line break between two lines in attachment file.

    Dear all I will be very great full if someone help me out,
    I am trying to send mail through SMTP server with an attachment of oracle report, but I am unable to find line break between two lines, when I down load the attachment from mail and open attach.txt file by double click on it. Next line starts right after previous line ends, it should starts with new line.
    In order to send an attachment file, I am reading source file line by line and put MIME protocol’s attachment instance, contain of source file is being properly written into target file if I open that attachment on cmd prompt.
    Following code may help you to understand the case.
    Thanks in advance.
    My code is as follows:-
    create or replace procedure bec_file_test
    v_subject varchar2, -- Subject of the email
    v_body varchar2, -- Body of the email
    v_from VARCHAR2 default 'XYZ.com', -- sender mail id
    v_to varchar2 default 'XYZ.com', -- Field To of the email
    v_cc varchar2 default 'XYZ.com' -- cc address
    ) is
    -- variable to hold the smtp server connection
    v_smtp_connection utl_smtp.connection;
    -- variable to hold the smtp host name
    v_smtp_host varchar2(100) default 'mail.bec-group.com';
    -- variable to hold the smtp port
    v_smtp_port number default 25;
    -- composite of {CR}{LF} caridge return and line feed.
    CRLF varchar2(2):=CHR(13)||CHR(10);
    cursor pr_rec is
    select requisition_no,line_no,release_no,a.contract,
    a.project_id,substr(a.activity_seq,1,11)ACT_SEQ,
    substr(a.part_no,1,12)PART_NO,
    substr(a.description,1,32)DESCRIPTION,
    substr(a.Bal_qty,1,8) BAL_QTY,
    substr(a.unit_meas,1,5)UOM,
    a.wanted_receipt_date WAN_REC_DT,
    a.latest_order_date LAT_ORD_DT
    from bec_pr_line_rep a
    where a.Bal_qty>0 and a.header_state not in 'Closed'
    and upper(a.state1) like 'RELEASED' and a.contract not in ('U1ENG','ULENG','U1FND','U2FND')
    and a.buyer_code='70306'
    order by a.part_no;
    begin
    declare
    fHandle UTL_FILE.FILE_TYPE;
    v_msg_line varchar2(2000);
    -- v_buffer varchar2(20000);
    --ALTER SYSTEM SET utl_file_dir = 'D:\Database\temp'
    --COMMENT='Temporary change on Dec 14'
    --SCOPE=SPFILE;
    SELECT name, value
    FROM gv$parameter
    WHERE name = 'utl_file_dir';
    --drop directory my_directory
    --CREATE or replace DIRECTORY my_directory AS 'D:\database\temp';
    --GRANT read,write ON DIRECTORY my_directory TO PUBLIC;
    begin ---writing data into a file.
    fHandle := UTL_FILE.FOPEN('MY_DIRECTORY', 'pending_pr_summry.txt', 'w');
    UTL_FILE.put_line(fHandle, ' Pending PR to process (detail report)');
    UTL_FILE.put_line(fHandle,TO_CHAR(SYSDATE,'MM-DD-YY HH:MI:SS AM'));
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    UTL_FILE.put_line(fHandle, 'Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt' );
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    for pr_temp in pr_rec loop
    begin
    v_msg_line:=to_char(rpad(pr_temp.requisition_no,12,' ')||'|'||
    lpad(pr_temp.line_no,3,' ')||'|'||
    lpad(pr_temp.release_no,3,' ')||'|'||
    rpad(pr_temp.contract,7,' ')||'|'||
    lpad(nvl(pr_temp.project_id,' '),7,' ')||'|'||
    lpad(nvl(pr_temp.act_seq,' '),12,' ')||'|'||
    lpad(pr_temp.part_no,12,' ')||'|'||
    rpad(pr_temp.description,35,' ')||'|'||
    lpad(pr_temp.bal_qty,10,' ')||'|'||
    rpad(pr_temp.uom,6,' ')||'|'||
    lpad(pr_temp.wan_rec_dt,14,' ')||'|'||
    lpad(pr_temp.lat_ord_dt,14,' '));
    UTL_FILE.put_line(fHandle,v_msg_line);
    end;
    end loop;
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    UTL_FILE.put_line(fHandle, ' Regards : IFSAPP ( Application owner ) ');
    UTL_FILE.FCLOSE(fHandle); ------------writing into file is successfuly done here!
    --Reading of file starts here containt will be added in attchment file
    fHandle :=UTL_FILE.FOPEN('MY_DIRECTORY','pending_pr_summry.txt','R' );
    -- establish the connection to the smtp server
    v_smtp_connection := utl_smtp.open_connection(v_smtp_host, v_smtp_port); /** OPEN CONNECTION ON THE SERVER **/
    -- perform a handshake with the smtp server
    utl_smtp.helo(v_smtp_connection, v_smtp_host); /** DO THE INITIAL HAND SHAKE **/
    -- set the 'from' address of the message
    utl_smtp.mail(v_smtp_connection, v_from);
    -- add the recipient to the message
    utl_smtp.rcpt(v_smtp_connection, v_to);
    -- send the email
    utl_smtp.open_data(v_smtp_connection);
    v_msg_line:='Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || CRLF ||
    'From: ' || v_from || CRLF ||
    'Subject: ' || v_subject || CRLF ||
    'To: ' || v_to || CRLF ||
    'Cc: ' || v_cc || CRLF ||
    'MIME-Version: 1.0'|| CRLF || -- Use MIME mail standard
    'Content-Type: multipart/mixed;'||CRLF ||
    ' boundary="-----SECBOUND"'||CRLF||
    CRLF ||'-------SECBOUND'|| CRLF ||
    'Content-Type: text/plain;'|| CRLF ||
    'Content-Transfer_Encoding: 7bit'|| CRLF ||
    CRLF ||v_body|| CRLF;     -- Message body
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    v_msg_line:='-------SECBOUND'|| CRLF ||
    'Content-Type: application/octet-stream;'|| CRLF ||
    'Content-Type: text/plain;'|| CRLF ||
    'name="pending_pr_summry.txt"'|| CRLF ||
    'Content-Transfer_Encoding: 8bit'|| CRLF ||
    'Content-Disposition: attachment;'|| CRLF ||
    ' filename="pending_pr_summry.txt"'|| CRLF || CRLF;     -- Content of attachment
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    -- check file is opened
    IF utl_file.is_open(fHandle) THEN
    -- loop lines in the file
    LOOP
    BEGIN -- Content of attachment
    utl_file.get_line(fHandle,v_msg_line);
    v_msg_line:=concat(v_msg_line,CRLF);
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXIT;
    END;
    END LOOP;
    END IF;
    --end of attachment containt     
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    UTL_FILE.FCLOSE(fHandle);
    utl_smtp.close_data(v_smtp_connection);
    utl_smtp.quit(v_smtp_connection);
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
    when utl_smtp.transient_error then
    dbms_output.put_line(' Temporary e-mail issue - try again');
    when utl_smtp.permanent_error then
    dbms_output.put_line(' Permanent Error Encountered.');
    when others then
    dbms_output.put_line('Exception: SQLCODE=' || SQLCODE || ' SQLERRM=' || SQLERRM);
    RAISE;
    end;
    end bec_file_test;

    Pending PR to process (detail report)01-17-13 12:43:19 PM--------------------------------------------------------------------------------------------------------------------------------------------------Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt--------------------------------------------------------------------------------------------------------------------------------------------------MAT/250370 | 2| 1|ISCSP | 4977| 100004207| 0104000016|Angle 50 X 50 X 6 IS:2062 Grade |500|kg |30-NOV-2012| 20-nov-2012MAT/250370 | 3| 1|ISCSP | 4977| 100004207| 0105000002|Channel 100 X 50 IS:2062 Grade A | 1000|kg | 30-NOV-2012| 20-nov-2012MAT/250579 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 2991|kg | 13-DEC-2012| 03-dec-2012MAT/250606 | 2| |NMDCJ | 6002| 100005860| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | |1|NMDCJ|6001|100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 1500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 3| 1|NMDCJ | 6002| 100005818| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 3939|kg | 29-DEC-2012| 19-dec-2012MAT/250606 | 4| 1|NMDCJ | 6002| 100005860| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 39000|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 4| 1|NMDCJ | 6001| 100005580| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 2| 1|NMDCJ | 6002| 100005818| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 12183|kg | 29-DEC-2012| 19-dec-2012MAT/250606 | 6| 1|NMDCJ | 6002| 100005860| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 9500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 6| 1|NMDCJ | 6001| 100005580| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 6| 1|NMDCJ | 6002| 100005818| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 7| 1|NMDCJ | 6001| 100005580| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 22000|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 7| 1|NMDCJ | 6002| 100005818| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 27060|kg | 29-DEC-2012| 19-dec-2012MAT/251138 | 1| 1|NMDCJ | 6002| 100005825| 3501000001|Cement 50 kg | 1|pkt | 25-DEC-2013| 14-dec-2013--------------------------------------------------------------------------------------------------------------------------------------------------
    where as source file is like that:-
    Pending PR to process (detail report)
    01-17-13 12:43:19 PM
    Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt
    MAT/250370 | 2| 1|ISCSP | 4977| 100004207| 0104000016|Angle 50 X 50 X 6 IS:2062 Grade | 5500|kg | 30-NOV-2012| 20-nov-2012
    MAT/250370 | 3| 1|ISCSP | 4977| 100004207| 0105000002|Channel 100 X 50 IS:2062 Grade A | 1000|kg | 30-NOV-2012| 20-nov-2012
    MAT/250579 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 2991|kg | 13-DEC-2012| 03-dec-2012
    MAT/250606 | 2| 1|NMDCJ | 6002| 100005860| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 1500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 3| 1|NMDCJ | 6002| 100005818| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 3939|kg | 29-DEC-2012| 19-dec-2012
    MAT/250606 | 4| 1|NMDCJ | 6002| 100005860| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 39000|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 4| 1|NMDCJ | 6001| 100005580| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 2| 1|NMDCJ | 6002| 100005818| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 12183|kg | 29-DEC-2012| 19-dec-2012
    MAT/250606 | 6| 1|NMDCJ | 6002| 100005860| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 9500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 6| 1|NMDCJ | 6001| 100005580| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 6| 1|NMDCJ | 6002| 100005818| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 7| 1|NMDCJ | 6001| 100005580| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 22000|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 7| 1|NMDCJ | 6002| 100005818| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 27060|kg | 29-DEC-2012| 19-dec-2012
    MAT/251138 | 1| 1|NMDCJ | 6002| 100005825| 3501000001|Cement 50 kg | 1 |pkt | 25-DEC-2013| 14-dec-2013
    Ignore alignment. It is well formatted in source file.

  • Cannot send/receive fax reliably. ATA 187, CUCM 10.0, 2911

    We have had ongoing issues with not being able to send/receive faxes reliably since we've installed this new phones system (previously we were on a Nortel system).
    We are trying to fax using HP 4345 MFP, HP 3035 MPF, Richo MP 171.
    Often faxes fail to send with a remote disconnect error or when we receive we only get about 1/2 of the page.
    Where do I start looking first?  Is it the ATAs, CUCM, Voice Gateway or a combination?

    rplus-2911-1#show controller t1
    T1 0/0/0 is up.
      Applique type is Channelized T1
      Cablelength is long 0db
      No alarms detected.
      alarm-trigger is not set
      Soaking time: 3, Clearance time: 10
      AIS State:Clear  LOS State:Clear  LOF State:Clear
      Version info Firmware: 20100222, FPGA: 13, spm_count = 0
      Framing is ESF, Line Code is B8ZS, Clock Source is Line.
      CRC Threshold is 320. Reported from firmware  is 320.
      Data in current interval (213 seconds elapsed):
         0 Line Code Violations, 0 Path Code Violations
         8 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins
         8 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 0 Unavail Secs
      Total Data (last 17 15 minute intervals):
         0 Line Code Violations, 0 Path Code Violations,
         551 Slip Secs, 0 Fr Loss Secs, 0 Line Err Secs, 0 Degraded Mins,
         551 Errored Secs, 0 Bursty Err Secs, 0 Severely Err Secs, 6 Unavail Secs

  • Super g3 fax using an ATA 187

                       I can't get this working. I thought at first it was a sip provider issue but switched over to a pri with same result. I can get inbound faxes but cannot get outbound to work. I have tried almost everything I can think os  s3-to-g3, fax rate disable, ecm disable of the dial peers setting the rate to 9600 on the ata all with no success.  thx

                       I can't get this working. I thought at first it was a sip provider issue but switched over to a pri with same result. I can get inbound faxes but cannot get outbound to work. I have tried almost everything I can think os  s3-to-g3, fax rate disable, ecm disable of the dial peers setting the rate to 9600 on the ata all with no success.  thx

  • Sharing between two users on the same machine

    I have read through and tried to find posts about sharing but they are all about doing so via a network. I have a desktop that my wife and I use. Each of us has out own seperate profile so that we can both keep things set the way that works for us and to keep our mail profiles seperate. The problem that I have is that I cant figure out how to have folders that both of us can access and manipulate. I would like to store all our photos on this shared directory and also to be able to have a spot where we keep filees that we both require access to. The iphoto sharing requires the primary acct holder to be logged in to have the othe user be able to access the files. Uggg..

    Don't use the Sharing option in iPhoto. Instead move the iPhoto library outside of the /Users area (something like /Document/Photos) so that everyone can access it. The process is described in KB 93603, iPhoto: How to move the iPhoto Library Folder to a new location.
    For iTunes follow a similar process. It is described in KB 93195, iTunes: How to share music between different accounts on a single computer.
    Any documents that you want to share, place in /Documents instead of the default /Users/userName/Documents.

  • Two ATA s Back to Back

    Hello everyone, i'm just new to this and i'm here to learn how to solve a specific problem:
    Can this combination work:
    <USA PSTN> to <ATA>  <Internet> <ATA> to <EGYPT PSTN> to <Egypt Phone number>
    If yes:
    How? what are the most economic Cisco devices should I buy? do I have to register with a VOIP service provider?
    If No:
    What is the closest approach?

    ahussein wrote:
    Yeah I know that some countries down there block the VOIP, but this won't be a problem if I'm not using a VOIP service provider and just depending on the configuration , is that right?
    I don't know that they block VoIP in Egypt.  I have seen postings by people who were successfully using VoIP where they said they were in Egypt.
    As for blocking it all depends on how the internet network carries out the blocking.  I have read where some blocking discards packets addressed to the standard voip sip signalling port 5060.  It is true that 5060 is pretty standard, however many VoIP providers support other sip signalling ports for sending packets to their server.  I wouldn't agree that blocking is not a problem if you are using direct ip calling if the internet network provider is intent on blocking VoIP.
    Many VoIP installations have the analog terminal adapter or ip phone  behind a NAT router.  Different router brands work differently and there is no standard, there is no technical documentation of how the router works, and there is no one set configuration to overcome NAT problems.  NAT translation problems are often a major problem to overcome.  VoIP Providers deal with this problem with every new installation and often have non-standard tricks up their sleeve and can make their voip work where you tear out your hair trying to make direct ip calling work between two ata's. 

  • How to configure modem connection with GW (H323) and ATA 187

    Hello Community,
    i stock in configuration and need assistance.
    My callflow: Telco – PRI – GW – H323– CUCM – SIP – ATA187 – Modem
    Voicegateway (Version 15.3(2)T) + CUCM (Version= 8.6) + ATA187 (Version= 9.2.3.1)
    The modem connection is still not working.
    What is still to configure on the voicegateway? modem passthrough?
    Regards Michael
    ATA 187 Configuration:
    Fax Mode= T.38 Fax Relay
    Fax Error Correction Mode Override= Off
    Maximum Fax Rate= 14000bps
    Impedance= 900Ohms complex
    Gateway Configuration:
    voice service voip
     ip address trusted list
      ipv4 172.30.50.1
      ipv4 172.30.50.2
      ipv4 172.30.50.3
      ipv4 172.30.50.4
      ipv4 172.30.50.5
     allow-connections h323 to h323
     allow-connections h323 to sip
     allow-connections sip to h323
     allow-connections sip to sip
     no supplementary-service h225-notify cid-update
     fax protocol t38 version 0 ls-redundancy 0 hs-redundancy 0 fallback none
     sip
      bind control source-interface GigabitEthernet0/0
      bind media source-interface GigabitEthernet0/0
      registrar server expires max 600 min 60
    dial-peer voice 1 pots
     translation-profile incoming INCOMING_PSTN
     incoming called-number .
     direct-inward-dial
    dial-peer voice 30 voip
     description OUTGOING_CUCM
     destination-pattern [1-9]..
     session target ipv4:172.20.60.12
     voice-class codec 1
     dtmf-relay h245-alphanumeric
     fax-relay ecm disable
     fax-relay sg3-to-g3
     fax nsf 000000
     no vad

    It is possible T38 isn't playing well with the PRI.  You could try modem pass-through on the gateway and ATA187 if T38 isn't necessary.
    Also, sometimes these commands are needed, but not always, so I would consider whether these fax commands under the dial-peer are necessary:
    fax-relay ecm disable
     fax-relay sg3-to-g3
     fax nsf 000000

  • Sharing iPhoto Library between Two User Accounts

    Is there any way to fully share a single iPhoto library between two user accounts on one machine (iMac 2.0GHz dual core Intel, 10.5.1, iPhoto '08), without using an external drive (because I don't have one)? By share, I mean each user has full rights and priveledges to the entire library, regardless of who uploaded the pics. Holding down the option key on iPhoto startup does not work because my wife can't access the pics I loaded even though she's pointing to the shared library in a shared folder.

    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. then:
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. *You could also use a dmg*.
    (Some people have had success putting the library in the Users/ Shared folder. If you do this make sure the file permissions are set to allow read/write access to everyone. But that's unlikely to work on 10.5 because of the way that the permissions have changed with the new OS.)
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Regards
    TD

  • How do I set Time Machine to alternate between two attached external drives (so that if one fails I will have a separate backup to use)?

    Hi Everyone.
    Thanks in advance for your help.
    Right off the bat let me say I am using Mavericks 10.9.1 on a 2011 Macbook Pro and using all Lacie external hard drives.
    I am trying to get Time Machine to alternate between two attached external hard drives, trying to be safe in case one of the backup drives itself fails.
    I have both drives set in Time Machine.
    From what I gather Time Machine should by default alternate between drives when backing up (I would assume it does one big initial backup on each then subsequent backups are just changes).
    But this is not how it seems to be working and I cannot find a straight answer despite much Googling and Foruming
    Unfortunately it seems to only be backing up to "External Hard Drive 1".
    There have been 4 backups since I set it up, all on "External Hard Drive 1", even though "External Hard Drive 2" is also attached and set in Time Machine.
    I manually clicked "Back Up Now" and it started to work on "External Hard Drive 2" (like I want it to) for a minute but it appears to have stopped and gone back to backing up to "External Hard Drive 1".
    Am I missing something? Does Time Machine only move on to another disk when the first one runs out of space? Do I have to turn one off in order to force it to back up to the other drive (that would be less convenient of course)?
    I am hoping that I am missing something and that it will just alternate between the two. Otherwise it is not the most comforting and thorough backup system as I had hoped when I purchased the additional external hard drive.
    I have a 1TB drive and a 500gig partition on another drive, both dedicated to backups (my Macbook HD is 475gig). It will take awhile for each to fill up and who knows what could happen during that time. Having Time Machine alternate between hard drives would be a nice small bit of security if the worst happened.
    I realize that there are tons of other options for backing up but I just want to use Time Machine if I can.
    Again thank you for your help!

    You cannot use Time Machine in that way. I'm not sure where you heard that Time Machine alternates between drives automatically. What you can do is create a mirrored RAID array for the backup. This automatically duplicates whatever is on one drive onto the other drive.
    Both drives must be the same size, and prefereably, exactly the same make and model. RAIDs can be configured using OS X's Disk Utility.
    RAID Basics
    For basic definitions and discussion of what a RAID is and the different types of RAIDs see RAIDs.  Additional discussions plus advantages and disadvantages of RAIDs and different RAID arrays see:
    RAID Tutorial;
    RAID Array and Server:
    Hardware and Service Comparison.
    Hardware or Software RAID?
    RAID Hardware Vs RAID Software - What is your best option?
    RAID is a method of combining multiple disk drives into a single entity in order to improve the overall performance and reliability of your system. The different options for combining the disks are referred to as RAID levels. There are several different levels of RAID available depending on the needs of your system. One of the options available to you is whether you should use a Hardware RAID solution or a Software RAID solution.
    RAID Hardware is always a disk controller to which you can cable up the disk drives. RAID Software is a set of kernel modules coupled together with management utilities that implement RAID in Software and require no additional hardware.
    Pros and cons
    Software RAID is more flexible than Hardware RAID. Software RAID is also considerably less expensive. On the other hand, a Software RAID system requires more CPU cycles and power to run well than a comparable Hardware RAID System. Also, because Software RAID operates on a partition by partition basis where a number of individual disk partitions are grouped together as opposed to Hardware RAID systems which generally group together entire disk drives, Software RAID tends be slightly more complicated to run. This is because it has more available configurations and options. An added benefit to the slightly more expensive Hardware RAID solution is that many Hardware RAID systems incorporate features that are specialized for optimizing the performance of your system.
    For more detailed information on the differences between Software RAID and Hardware RAID you may want to read: Hardware RAID vs. Software RAID: Which Implementation is Best for my Application?

  • Fax can receive but not send using ATA 187

    Hi, i'm fairly new to the world of voice so please bare with me on this one
    I'm upgrading a customer from analog telephony to VOIP and the customer wants his faxes working.
    Telephone works fine, CUPC works fine, CUBAC works as it should etc but the fax-machines can only receive faxes, not send them.
    The setup is:
    CUCM 8.5.1.12900-7
    CUBE Version 15.1(3)T1
    ATA 187.9-2-1-0
    I'm using T.38 and SIP
    When i put 2 fax machines on the new solution and test them they work. They can send and receive faxes but then the traffic is local and not sendt out over the IP-trunk. When i send a fax to a fax machine (from external) it works but  when the same fax machine tries to send a fax externally it failes.
    It places the call but when it tries to send the fax it gives up.
    I've atteached the "debug voice ccapi inout" and "debug ccsip all" from CUBE for details.
    This is the last issue i have to get this customer flying on Cisco equiptment (i hope).
    /Tony

    Hi
    Sorry for misleading you on that one. I know its on the trunk
    And i believe i found the cause of my problem. The DN wasnt presented the way the the provider wanted it.
    The misleading part was that it failed on media negotioation, not on the call. The log even tell the story of media negotiation being succesful but it also terminates on "cause=64" which is media failure.
    I was able to place calls, receive call and receive faxes but not able to send any fax at all. That through me off thinking there was nothing wrong.
    Thanks for the help

  • Cisco ATA 187 faxing issues

    We have a site (a new site) that has about 50 or so ATA 187's being used for faxing. Were having faxing issues where some fax machines can't fax to external (to the PSTN) fax machines. They seem to be related to Ricoh fax machines that are Super G3. Any one come across similar troubles with the ATA's? Considering going to VG224's.
    Thanks!

    I have around 80 ATAs in production accross 11 sites and they gave me some headaches, a simple google search will produce dozens of similar issues.
    Obviously there is a lot of things that come into play such as your PSTN transport (SIP/ISDN?) and also your media transmission method (t.38 vs pass-through). Here are some questions so we can better help you.
    1.Start basic, make sure the affected ATAs have an external phone number mask properly assigned, sounds easy but this is the most common reason why my clients submit tickets.
    2. Are you using CUCM for call control? 
    3.Collect appropriate debugs and post them, "debug ccsip messages" or "debug isdn q931) depending of your transport. Also provide us a copy of your gw config.
    4. Symptoms: Issues with sending AND receiving? Error message/Busy signal? 
    - Frank

  • How can I communicat​e between two computer via RS 232 port?

    I would like to communicate between two computer in order to servo a motor motion to an acquisition.
    Thank you in advance for your answer an your solutions

    PreScript: I did not rate the above answer!
    Here's a VI I use to test my instruments - if you have it running on both PCs, you should be able to communicate (with the help of a Null modem between them - cross Rx and Tx) - hopefully this will get you started.
    cheers,
    Christopher
    Christopher G. Relf
    Certified LabVIEW Developer
    [email protected]
    International Voicemail & Fax: +61 2 8080 8132
    Australian Voicemail & Fax: (02) 8080 8132
    EULA
    1) This is a private email, and although the views expressed within it may not be purely my own, unless specifically referenced I do not suggest they are necessarily associated with anyone else including, but not limited to, my employer(s).
    2) This email has NOT been scanned for virii - atta
    ched file(s), if any, are provided as is. By copying, detaching and/or opening attached files, you agree to indemnify the sender of such responsibility.
    3) Because e-mail can be altered electronically, the integrity of this communication cannot be guaranteed.
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.
    Attachments:
    Test_RS-232_Serial_Communications.vi ‏118 KB

Maybe you are looking for

  • How do I move photos in a Smart Collection and keep folder structure?

    HI there I am on a trial of Lightroom and loving it so far.  One seemingly simple task I would like to try out is moving all my RAW files (which are all mixed up with JPGs and PSDs to a new location and keep the current folder structure. Currently I

  • Disable / Turn off Thumbnail / Icon Preview in Finder?

    Can't find any new/recent posts to solve this issue. I want to disable/turn-off the little icon preview in finder. I have to access a lot of images on a server at work. Image files(jpeg, eps, tiff, psd, ai, ect) that are typically 50MB and higher. So

  • Trio/Triple billings in SAP.

    Hi Billing guruu2019s: I work in SAP FI/CO space and Iu2019ve worked on dual billing scenario, but any one familiar with trio/triple billing scenario? Is it even possible in SAP? In my mind dual billing means: Inventory lies in a plant attached to co

  • User command in hierarchical list

    hi, i have displayed data in hierarchical list using oo prog. i made use of classes like cl_salv_herseq_table i wanted a functionality which in non OO prog using 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' can be done by sending the parameter in I_CALLBACK_USER

  • Limit View of Related Documents

    Is there a way to prevent users from seeing the PO number under Related Documents that is generated on the SAP side if the PO is still on hold in SAP? We are on SRM 7.0 and use the classic scenario.  Our process is that when free text orders are appr