Schema Level Bidirectional streams - works only in one direction

Hi All,
we are implementing bidirectional streams at schema level(using scott schema for testing).
Our environment and different parameters are:
Source:
OS =Win2003 64bit
DB Version= 10.2.0.5.0 64bit
DB SID=CIBSPROD
log_archive_dest_1 LOCATION=E:\DBFILES\ArchiveLog\CIBSPROD\PrimaryRole VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=CIBSPROD
log_archive_dest_2 SERVICE=CIBSREP LGWR ASYNC NOREGISTER VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=CIBSREP
job_queue_processes=2
Dest:
OS =Win2003 64bit
DB Version= 10.2.0.5.0 64bit
DB SID=CIBSREP
log_archive_dest_1 LOCATION=E:\DBFILES\ArchiveLog\CIBSREP\PrimaryRole VALID_FOR=(ONLINE_LOGFILE,PRIMARY_ROLE) DB_UNIQUE_NAME=CIBSREP
log_archive_dest_2 SERVICE=CIBSPROD LGWR ASYNC NOREGISTER VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=CIBSPROD
job_queue_processes=2
Follow the "Streams Bi-Directional Setup [ID 471845.1]" article
Problem we are facing is changes are propagating from Source(CIBSPROD)  to Destination(CIBSREP) BUT NOT from Destination to Source Database(although archivelogs are shipping from Destination to Source).
Executed below script for configuration:
SET ECHO ON
SPOOL strm-reconfig-scott.out
conn sys/&sys_pwd_source@CIBSPROD as sysdba
EXEC DBMS_STREAMS_ADM.REMOVE_STREAMS_CONFIGURATION;
DROP USER STRMADMIN CASCADE;
CREATE USER strmadmin IDENTIFIED BY strmadmin DEFAULT TABLESPACE streams_tbs QUOTA UNLIMITED ON streams_tbs;
GRANT CONNECT, RESOURCE, AQ_ADMINISTRATOR_ROLE,DBA to STRMADMIN;
EXECute DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE('STRMADMIN');
drop database link CIBSREP;
create public database link CIBSREP connect to strmadmin identified by strmadmin using 'CIBSREP';
conn sys/&sys_pwd_downstream@CIBSREP as sysdba
EXEC DBMS_STREAMS_ADM.REMOVE_STREAMS_CONFIGURATION;
DROP USER STRMADMIN CASCADE;
CREATE USER strmadmin IDENTIFIED BY strmadmin DEFAULT TABLESPACE streams_tbs QUOTA UNLIMITED ON streams_tbs;
GRANT CONNECT, RESOURCE, AQ_ADMINISTRATOR_ROLE,DBA to STRMADMIN;
EXECute DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE('STRMADMIN');
drop user SCOTT CASCADE;
create user SCOTT identified by scott175;
GRANT CONNECT, RESOURCE to SCOTT;
drop database link CIBSPROD;
create public database link CIBSPROD connect to strmadmin identified by strmadmin using 'CIBSPROD';
--Set up 2 queues for Capture and apply in CIBSPROD Database
conn strmadmin/strmadmin@CIBSPROD
EXEC DBMS_STREAMS_ADM.SET_UP_QUEUE( queue_table => 'APPLY_CIBSPROD_TAB', queue_name => 'APPLY_CIBSPROD', queue_user => 'strmadmin'); 
EXEC DBMS_STREAMS_ADM.SET_UP_QUEUE( queue_table => 'CAPTURE_CIBSPROD_TAB', queue_name => 'CAPTURE_CIBSPROD', queue_user => 'strmadmin');
--Set up 2 queues for Capture and apply in CIBSREP Database
conn strmadmin/strmadmin@CIBSREP
EXEC DBMS_STREAMS_ADM.SET_UP_QUEUE( queue_table => 'APPLY_CIBSREP_TAB', queue_name => 'APPLY_CIBSREP', queue_user => 'strmadmin'); 
EXEC DBMS_STREAMS_ADM.SET_UP_QUEUE( queue_table => 'CAPTURE_CIBSREP_TAB', queue_name => 'CAPTURE_CIBSREP', queue_user => 'strmadmin');
--Configure capture,apply and propagation process on CIBSPROD database.
conn strmadmin/strmadmin@CIBSPROD
EXEC dbms_streams_adm.add_schema_rules ( schema_name => 'scott', streams_type => 'CAPTURE', streams_name => 'CAPTURE_CIBSPROD', queue_name => 'CAPTURE_CIBSPROD', include_dml => true, include_ddl => true, inclusion_rule => true);
EXEC dbms_streams_adm.add_schema_rules ( schema_name => 'scott', streams_type => 'APPLY', streams_name => 'APPLY_CIBSPROD', queue_name => 'APPLY_CIBSPROD', include_dml => true, include_ddl => true, source_database => 'CIBSREP');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSPROD', parameter => 'PARALLELISM', value => '5');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSPROD', parameter => '_HASH_TABLE_SIZE', value => '10000000');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSPROD', parameter => 'TXN_LCR_SPILL_THRESHOLD', value => '1000000');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSPROD', parameter => 'DISABLE_ON_ERROR', value => 'N');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSPROD', parameter => '_dynamic_stmts',value => 'Y');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSPROD', parameter => 'COMMIT_SERIALIZATION',value => 'NONE');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSPROD', parameter => '_RESTRICT_ALL_REF_CONS',value => 'N');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSPROD', parameter => 'ALLOW_DUPLICATE_ROWS',value => 'Y');
EXEC dbms_streams_adm.add_schema_propagation_rules ( schema_name => 'scott', streams_name => 'PROP_CIBSPROD_to_CIBSREP', source_queue_name => 'CAPTURE_CIBSPROD', destination_queue_name => 'APPLY_CIBSREP@CIBSREP', include_dml => true, include_ddl => true, source_database => 'CIBSPROD');
--Configure capture,apply and propagation process process on CIBSREP Database
conn strmadmin/strmadmin@CIBSREP
EXEC dbms_streams_adm.add_schema_rules ( schema_name => 'scott', streams_type => 'CAPTURE', streams_name => 'CAPTURE_CIBSREP', queue_name => 'CAPTURE_CIBSREP', include_dml => true, include_ddl => true);
EXEC dbms_streams_adm.add_schema_rules ( schema_name => 'scott', streams_type => 'APPLY', streams_name => 'APPLY_CIBSREP', queue_name => 'APPLY_CIBSREP', include_dml => true, include_ddl => true, source_database => 'CIBSPROD');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSREP', parameter => 'PARALLELISM', value => '5');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSREP', parameter => '_HASH_TABLE_SIZE', value => '10000000');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSREP', parameter => 'TXN_LCR_SPILL_THRESHOLD', value => '1000000');
EXEC DBMS_APPLY_ADM.SET_PARAMETER(apply_name => 'APPLY_CIBSREP', parameter => 'DISABLE_ON_ERROR', value => 'N');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSREP', parameter => '_dynamic_stmts',value => 'Y');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSREP', parameter => 'COMMIT_SERIALIZATION',value => 'NONE');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSREP', parameter => '_RESTRICT_ALL_REF_CONS',value => 'N');
EXEC DBMS_APPLY_ADM.Set_parameter(apply_name => 'APPLY_CIBSREP', parameter => 'ALLOW_DUPLICATE_ROWS',value => 'Y');
EXEC dbms_streams_adm.add_schema_propagation_rules ( schema_name => 'scott', streams_name => 'PROP_CIBSREP_to_CIBSPROD', source_queue_name => 'CAPTURE_CIBSREP', destination_queue_name => 'APPLY_CIBSPROD@CIBSPROD', include_dml => true, include_ddl => true, source_database => 'CIBSREP');
--Import export schema
host exp USERID=SYSTEM/cibsmgr@CIBSPROD parfile=expparfile-scott.txt
host imp USERID=SYSTEM/cibsmgr@CIBSREP parfile=impparfile-scott.txt
--Start capture and apply processes on CIBSREP
conn strmadmin/strmadmin@CIBSREP
EXEC dbms_capture_adm.start_capture (capture_name=>'CAPTURE_CIBSREP');
EXEC DBMS_APPLY_ADM.START_APPLY(apply_name => 'APPLY_CIBSREP');
--Start capture and apply processes on CIBSPROD
conn strmadmin/strmadmin@CIBSPROD
EXEC dbms_capture_adm.start_capture (capture_name=>'CAPTURE_CIBSPROD');
EXEC DBMS_APPLY_ADM.START_APPLY(apply_name => 'APPLY_CIBSPROD');
SPOOL OFF
What we have missed in the configuration?
Regards,
Asim

Find error SRC database "ORA-26687: no instantiation SCN provided fro SCOTT.STRMTEST in source database CIBSREP"
SCOTT.STRMTEST is heartbeat table used from streams replication on Source and Destination database

Similar Messages

  • Avaya IP Office 500 V2 R9 SCN Trunk Call Works only in one direction.

    I'd check your NAT rules at the gateway on each end to verify all traffic is allowed on the necessary ports.  

    Hi, 
    I have a problem with the Avaya platform IP Office, the issue is establish an SCN Trunk but the calls only works in one direction, I recreate the SCN twice but the result are the same. any advice for troubleshooting?
    This topic first appeared in the Spiceworks Community

  • AIR to AIR localconnection working only in one direction

    I have two simple air applications and i need to be able to send a message to the opposite app on the click of a button. My code works fine from app1 to app2 but i am getting the following error when trying to send a message from app2 to app1: Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.LocalConnection was unable to invoke callback returnMessageHandler. error=ReferenceError: Error #1069: Property returnMessageHandler not found on flash.net.LocalConnection and there is no default value.
    Here is my code:
    App1
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" initialize="initConn();">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import flash.net.LocalConnection;
                public var conn:LocalConnection;
                public function initConn():void
                    conn = new LocalConnection();
                    conn.allowDomain("app#app2");
                    conn.addEventListener(StatusEvent.STATUS, onStatus);
                    //Alert.show(conn.domain);
                    try
                        conn.connect("returnConnection");
                    catch (error:ArgumentError)
                        trace("Can't connect.");
                private function onStatus(event:StatusEvent):void
                    switch (event.level)
                        case "status":
                            //Alert.show("LocalConnection.send() succeeded");
                            break;
                        case "error":
                            //Alert.show("LocalConnection.send() failed");
                            break;
                public function returnMessageHandler():void
                    Alert.show("Recieved return message from app2");
                public function sendMessage():void
                    conn.send("app#app2:taskConnection", "localconnectionHandler");
            ]]>
        </mx:Script>
        <mx:Button x="10" y="10" label="send message" click="sendMessage();"/>
    </mx:WindowedApplication>
    App2
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" initialize="InitConn();">
        <mx:Script>
            <![CDATA[
              import mx.controls.Alert;
              import flash.net.LocalConnection;
              public var conn:LocalConnection;
              public function InitConn():void
                    conn = new LocalConnection();
                    conn.addEventListener(StatusEvent.STATUS, onStatus);
                    conn.allowDomain("app#app1");
                    conn.client = this;
                    //Alert.show(conn.domain);
                    try
                        conn.connect("taskConnection");
                    catch (error:ArgumentError)
                        trace("Can't connect.");
                public function onStatus(event:StatusEvent):void
                    switch (event.level)
                        case "status":
                            Alert.show("LocalConnection.send() succeeded");
                            break;
                        case "error":
                            Alert.show("LocalConnection.send() failed");
                            break;
                public function localconnectionHandler():void
                    Alert.show("Recieved message from app1");
                public function sendReturnMessage():void
                    conn.send("app#app1:returnConnection", "returnMessageHandler");
            ]]>
        </mx:Script>
        <mx:Button x="10" y="10" label="send return message" click="sendReturnMessage()"/>
    </mx:WindowedApplication>
    If anyone can plese help me figure this out I would greatly appriciate it I'm tearing my hair out!
    Thanks
    Adam
    Flexchief

    I figured out what my problem was...
    app1 needed the following line: conn.client = this;
    in order to receive the return message from app2.
    Flexchief

  • I have loaded Lion on my MacBook and the new trackpad functions work only on one ordinary account or user and not on the admin account. The trackpad preferences are well set. What can I do?

    I have loaded Lion on my MacBook and the new trackpad functions work only on one ordinary account or user and not on the admin account. The trackpad preferences are well set. What can I do?

    iCloud should still help you reduce some hard drive space. Just select "optimize" in the icloud tab in Mac Photo App preferences.
    Granted, not the same as completely offloading your library to a back-up drive at your location.
    Good Luck!

  • Ichat video not working only to one person

    I've read most of the post on "i chat not working"; but has anyone had it to not work only to one individual. This is my case. I can video i chat with my son in FWB FL. with no problem. He has an Apple also. I can take my laptop to his location and video i chat with my sister-in-law in Jefferson Ga. But, I cannot video i chat with my sister-in-law from my location, Valrico, Fl. to her location in Jefferson Ga. I have had a 3 way phone conversation going with Apple, My internet provider and her internet provider and no one can solve the problem. Does anyone have any assistance they can provide. I'm not computer savy; so be patient and go slow and detail with me; thanks. Norm

    More often than not this is about the way a modem or router or combo at either end use NAT.
    NAT is Network Address Translation.
    It is the way a device shares an Internet connection with several devices/computers.
    However NAT means different things to different devices and not all devices therefore are doing what is called NAT the same way.
    See here for further mind boggling
    So what you may have is a device at either end that does not or will not play nicely with another device.
    This can be particularly the case if the device has to use Port Forwarding or Port Triggering or is using the DMZ to open ports.
    Using UPnP reduces the problem in many cases.
    http://www.ralphjohns.co.uk/page15.html#CertainBuddy
    Telling us what devices in the way of Modems and routers each end is using may help us pint to what can be changed.
    Makes and models please with what they are doing to open the ports for iChat.
    As Defcom has pointed out with certain connection it can be the Speed difference in the Internet connection both up and down that can be a factor.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    9:58 PM Monday; April 28, 2008

  • EM DB console works only from one node?

    In my 2 node RAC the enterprise manager database console works only from one node i.e the url shows login page only from one node.
    http://NODE2:5500/em------>WORKS, SHOWS LOGIN PAGE AND CAN MANAGE ALL INSTANCES FROM HERE
    http://NODE1:5500/em------>DOES NOT WORK, DOES NOT SHOW THE LOGIN PAGE.
    Please clarify.
    Kadhim

    I have to guess ... (because you tell neither OS nor database version). Assuming it's 10gR2 or higher, that's expected behaviour, dbconsole runs on one node only, the so-called master node. You can change that, see the documentation or this metalink note:
    How to manage DB Control 10.2 for RAC Database with emca
    Doc ID: NOTE:395162.1
    Werner

  • ONLY SYNCS ONE DIRECTION

    ONLY SYNCS ONE DIRECTION
    Syncs from computer to phone only...not from phone to computer
    WHAT'S UP WITH THAT??

    Syncs what in one direction only?
    With the iTunes sync process, some data is transferred in one direction only such as iTunes content - music, movies, tv shows, 3rd party apps, and photos from your computer, and some data is kept synchronized with a supported application on your computer such as with contacts, calendar events, notes, and Safari bookmarks.
    With Sync Music, Sync Movies, Sync TV Shows, and Sync Apps selected under these tabs for your iPhone sync preferences with iTunes, after downloading music, a movie, a tv show, or a 3rd party app direct with your iPhone, it will be copied to your iTunes library automatically the first time you sync your iPhone with iTunes after doing so.

  • Authorization will not work only have one computer.

    I have 100 songs that no matter how many times I try to authorize, my itunes will not play the song even though after I put my password in it comes back machine authorization was succesful. Then nothing happens. Also only have one computer that I have always had with itunes. Need Help.

    Try getting rid of the SC Info folder mentioned in this article
    http://support.apple.com/kb/TS1389
    If that doesn't work, try DLing the free single of the week. You might need to agree to the new Apple store license agreement.

  • Can't synch calendar appts with outlook 2007 but only in one direction?

    i have the verizon iphone and aside from this one MAJOR glitch, i'm loving the phone. no dropped calls, and well, i had a palm centro, so this is a major upgrade in every way except for this one MAJOR glitch...
    i'm synching my iphone with my work pc and using outlook 2007 on my company's exchange server. i first synched an ipad last month and now this iphone to my laptop and exchange and i'm having the problem with both actually.
    i can add an appointment on my laptop and it pushes to my calendar on my iphone and ipad. BUT if i add an appointment on my iphone or ipad, it doesn't update to my calendar on my laptop. this is very strange!! i can see the added appointment from either one of the idevices on the other, BUT it never pushes to my laptop calendar. however, at the time i add the event, i'm looking at my laptop calendar and in the lower right corner where the exchange status bar is, i can see it quickly switch to say "waiting to update folders" and then it goes back to "all folders are up to date." so it appears that the devices and laptop outlook are communicating in some capacity, but the appointment doesn't make it to it's final destination on the calendar.
    it gets even more strange. if i even EDIT an existing event from either one of my idevices, it will ERASE the event on my laptop calendar. to be clear, i don't know if this problem began with the initial intro of the ipad last month as i had never used it to edit calendars and only discovered it when i decided to test all scenarios.
    so basically my i devices are communicating and pushing updates between each other, but my laptop updates are only pushing in one direction. if i do anything from either idevice it either doesn't push or it ERASES IT??!!
    this is a major problem, but what i'm not certain of is where the origin is. is it iphone related, pc related, exchange related, software, firmware, hardware?
    oh and otherwise everything else pushes fine in both directions with outlook exchange: contacts, email, even notes (although iphone notes are useless)
    sorry for the lengthy explanation, but i am just stumped.
    thanks in advance for any help!! if no luck, guess i'll have to try bellying up to the genius bar...

    Found the problem. The iMac G5 that I couldn't connect to (but could connect from) was actually connected to another company's wireless network that is on our floor. After switching back to our network all problems were resolved. A relief...

  • Can a CR work only for one aggregation level and not other ?

    Hi Experts,
    I have a real time infocube (RTIC) over which there is a multiprovider, on top of which I have built 2 aggregation levels.
    There are sequence of 2 characteristic relationships (CR's based on exit class) defined for the same RTIC.
    Is it possible that the CR's be functional for one aggregation level and not in case of second aggregation level ?
    Thanks and Regards,
    Pankaj

    Additionally let me explain the scenario in more detail:
    The difference between 2 mentioned aggr levels is that of 0CALMONTH which is checked in second aggr level.
    0CALMONTH is assigned as target char in first CR, hence both the CRu2019s work for input ready report built on first aggregation level and do not function with input ready report built over second aggregation level.
    Therefore I wish to skip the complete execution of CRu2019s for I-R reports based on 2nd aggregation level.
    As CR of type with derivation is functional only if the target char selected is not present in the aggregation level.
    Please let me know if any more details are required.
    Thanks,
    Pankaj

  • Ichat video and audio is not working only with one friend

    Hi there,
    i used to video-chat with my best friend every other day. We both have OSX 10.5.8. Maybe 4 weeks ago suddenly we always get an errorcode when calling each other. Sometimes it says the other one doesnt anwer but he gets an error message. He and me can still video chat with all our other friends!
    Only in between us it doesn't work. Both ways don't work (who ever calls). We both have an iMac 21.' with intel prozessor.
    Text-chat works!!
    If another friend calls both of us, we can chat the 3 of us together!
    Any suggestions?
    desperatly Mike

    Hi,
    This has been an issue now and then for all versions of iChat
    http://www.ralphjohns.co.uk/page15.html#CertainBuddy
    The most common reason is setting Port Forwarding in a router to open the ports and leaving On the DHCP Server.
    This means that now and then the Computer IP may change and the Port Forwarding may require you "point It" at one IP - which the computer no longer has meaning the ports are not open.
    The next is the way some devices actually Do NAT (Network address Translation).
    There are 4 main ways with cross over between them as well.
    This may raise it's head if you or your Buddy have updated the Firmware to your router.
    I would check System Preferences > Quicktime > Streaming is at 1.5Mbps at both ends.
    I would double check the routing settings at both ends.
    UPnP if you have it is "Better" is that it allows Multiple computers (IPs) to use the same Ports so you don't have to turn Off the DHCP Server in the router.
    Thomson-Alcatel can have symptoms like this due to the way they handle SIP data.
    9:18 PM Wednesday; October 6, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Satellite T110-11U - WiFi works only in one room

    Wifi on my LP used to work perfectly in each room of the house, but since I've installed Norton Antivirus it only works in my bedroom (where the router is) and nowhere else.
    However, other laptops work ok in the other rooms. I thought is was because of Norton Antivirus and I reinstalled it, but this didn't help. It's already 3 months since then and my LP only gets the signal in my bedroom. So it's got a problem of getting signal even in about 3 meter distance. I've already checked the wireless router with the supplier and there is no problem with it. The problem is in my laptop. I updated drivers but no luck. I've got Toshiba Satellite T110-11U, Windows 7 Home Premium.
    If anyone can give me any advice regarding this would be highly appreciated!

    Hi buddy,
    Maybe there are still some registry keys of Norton Antivirus stored in Windows registry I would try a registry cleaner like CCleaner. This is really nice freeware tool to clean the registry.
    What WLAN card driver is installed at the moment? Newest WLAN drivers can be downloaded here:
    http://aps2.toshiba-tro.de/wlan/

  • Time Capsule works only on one Mac

    Set up a Time Capsule:
    www
    ->via DSL Modem-> Router with G-WLAN ->via Ethernet-> Time Capsule with N-WLAN
    -> via G-WLAN-> AirportExpress for Airtunes
    I have an iMac connected via g-speed with the main router and want to use TimeCapsule as a N-WLAN-Access point for my new MacBook Air. The main router provides the NAT for internet access.
    The purpose of TC should be:
    1. give N-speed wireless access to MBA
    2. allow Time Machine to backup my MBA on TC
    I configured the TC as a bridge using the Airport Admin Utility and connecting the WAN port of the TC with a LAN port on my router.
    First problem:
    - The Airport Utility shows TC only on the iMac not on my MBA. It does not matter whether I connect the MBA to the network using the main router (G-speed) or directly to the TimeCapsule in N-speed. It just does not show up.
    Second problem:
    Time Machine system preference does not show the TC drive on the MBA but on the iMac.
    Third problem:
    The finder does not show TC as a shared drive
    Everything works on the iMac though. For some strange reason I don't get to mount my iMac's hard drive via File Sharing on the MBA too (or iPhoto library or iTunes for that matter).
    Anyone out there who knows what's wrong? Everything seems to work fine on the iMac but nothing works on the MBA, except for internet access.
    Thanks

    I am having a similar problem. I have my 'old' MacBook backed up on my time machine, since long, and it still backs up on a regular basis.
    Every back I try for my 'new' MacBook fails.
    I wonder if I need to change something in the set up of the time machine, to have two computers backed up on it?
    Anyone can offer me some help?
    Thanks

  • Spry Collapsible content working only on one instance

    Hoping someone can give me some direction on how to fix this issue. I am using the Spry Collapsible to hide job requirements on my employment page. My employment page gets its data from my database. It can have 0 to 25 entries showing at any given time. I am using the collapsible to save on space. With in each collapsible is also grabbing information from my database. The very first widget that appears comes up just fine. The rest all stay open. I was trying to insert my code for viewing, but it kept coming up showing the table instead of the code. Thanks in advance for any help you can give me.

    If you have a look at this example, you will notice that there are 6 collapsible panels each with a unique ID, and there are also 6 constructors, one for each panel.
    This is in contrast to what you have got where you have given the same ID to each of your panels as in
    <div id="CollapsiblePanel1" class="CollapsiblePanel">
    and have a twice repeated constructor as in
    var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1", {contentIsOpen:false, enableAnimation:false});
    What the constructor does in this instance is target the first occurrance of CollapsiblePanel1
    Judging form a repeated error in your markup, I assume that you have a repeat area driven by data from a database of sorts.We need to assign each reapeated area a unique ID with matching constructors.
    Within the repeated region, the markup will look like
    <div id="CollapsiblePanel<?php echo $recordID; ?>" class="CollapsiblePanel">
    where $recordID is the field name of the unique ID of the database record.
    The constructors will need to be placed at the bottom of (but within) each repeated region and will look like
    var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel<?php echo $recordID; ?>", {contentIsOpen:false, enableAnimation:false});
    The repeated error is the non-closure of the TD element as in
    </tr>
          <td rowspan="6" align="left" valign="top" class="supertext">
    </tr>
    Being an empty element, you could probably delete all of the above.

  • PlugIn works only on one computer!

    Hello,
    I have developed and successfully tested an export plug-in for Photoshop CS. I wanted to test the plug-in on another computer, but Photoshop doesn't load it!
    Could somebody help...
    Thanks
    Chavdar

    Most likely you didn't copy the file into the correct location, or you didn't copy the correct build, or it is missing a critical DLL (like the compiler runtime).

Maybe you are looking for