Tip: resolve Bootstrap & Animate conflict

I built a wee navigation system for a set of pages showing Edge Animate (EA) compositions. The system was built using Twitter Bootstrap 3.
When I drew circles, they appeared smaller and slightly offset when in the browser as compared to EA.
The issue was a piece of CSS that comes with Bootstrap that has to be overridden:
Original CSS:
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
Override CSS:
*:before,
*:after {
  -moz-box-sizing: inherit;
  box-sizing: inherit;

as this post is rather old, I don't know if it would help original poster, but maybe someone in desperate need for a solution to this issue:
http://www.gwr.no/?p=593

Similar Messages

  • Problem : Cannot resolve the collation conflict between ...

    Hi
    I want select a column from another database base on my current field on current database.
    here is my query :
    select ms.ServiceID, ms.ServiceName, ms.CoefficientFixedService,
    (select Services_Name from MpAdmisson..IAServices_Table where Services_DepartmentID=24 and Services_Name=ms.ServiceName) as N'MpServiceName'
    from MedicalServices ms
    join MedicalCategories mc on ms.MedicalCategorizationID=mc.MedicalCategorizationID
    join Zones z on mc.ZoneID=z.ZoneID
    where z.ZoneID=24
    but I'm facing this error :
    Cannot resolve the collation conflict between "Persian_100_CI_AI" and "Arabic_CI_AS" in the equal to operation.
    Also i changed collation of "MpAdmisson" db to "Persian_100_CI_AI" and even restart msSqlServer service, but i'm facing the same error!
    where is my problem and how to solve it ?
    thanks in advance
    http://www.codeproject.com/KB/codegen/DatabaseHelper.aspx

    although you changed the collation of the database it does not mean that all the objects changed their collation too automatically.
    So far you are correct.
    The change is only done when you change the data within the objects, thus recreating the table and moving data in / out or touching each and every value with doing something on the values themselves (the following will not work UPDATE (..) SET ServiceName
    = ServiceName, the optimizer is smart enough too see that as a noop).
    However, this is flat wrong. This is the story: each character column in a database has a collation tied to it. When you change the collation of a database, you change 1) the collation of the columns in the system tables. 2) The default collation. To change
    the collation on the individual columns, you need to alter the column:
    ALTER TABLE IAServices_Table
    ALTER COLUMN Services_Name <current data type> COLLATE Persian_100_CI_AI [NOT] NULL
    Unfortunately, this only works if the column is not indexed and has no constraints tied to it. Any indexes have to be dropped and recreated after the ALTER statement. If the column is a key column and there are referencing foreign keys, they also have to
    be dropped and recreated. Thus, this is quite a far-reaching operation. And it may not stop there - with some amount of bad luck, constraints may fail with the new collation.
    For this reason, this workaround suggested by Jens, may be your only option in the short term:
    If you cannot do this currently, you can still do the following and collate on a per query basis:
    select ms.ServiceID, ms.ServiceName, ms.CoefficientFixedService,
    (select Services_Name from MpAdmisson..IAServices_Table where Services_DepartmentID=24 and Services_Name=ms.ServiceName COLLATE Persian_100_AS_CI) as N'MpServiceName'
    from MedicalServices ms
    And this part of Jens's post is correct. To note though is that use of the COLLATE clause voids any index on ServiceName. (Since this index is sorted according the rules of Arabic, and not the rules of Farsi.)
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Tip : resolve JSF expressions at runtime

    hi
    Sometimes it might be useful to be able to take a look into your application at runtime.
    One way to do this, is to pass JSF expressions into your application and see how they get resolved.
    The simple ExpressionResolver bean and expressionResolver.jspx page below enable you to do this.
    (*) the ExpressionResolver class :
    package view.util;
    import javax.faces.application.Application;
    import javax.faces.context.FacesContext;
    import javax.faces.el.ValueBinding;
    public class ExpressionResolver
         private String fExpression = null;
         private Object fExpressionResult = null;
         public String resolveButton_action()
              FacesContext vFacesContext = FacesContext.getCurrentInstance();
              Application vApplication = vFacesContext.getApplication();
              try
                   ValueBinding vExpressionVB =
                        vApplication.createValueBinding(getExpression());
                   setExpressionResult("unable to resolve expression : "
                        + getExpression());
                   if (vExpressionVB != null)
                        setExpressionResult(vExpressionVB.getValue(vFacesContext));
              catch (Exception ex)
                   setExpressionResult("error resolving expression : ex = " + ex);
              return null;
         public void setExpression(String expression)
              this.fExpression = expression;
         public String getExpression()
              return fExpression;
         public void setExpressionResult(Object expressionResult)
              this.fExpressionResult = expressionResult;
         public Object getExpressionResult()
              return fExpressionResult;
    }(*) the expressionResolver.jspx page :
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                  doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <html>
          <head>
            <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
            <title>expressionResolver</title>
          </head>
          <body><h:form>
              <h:panelGrid columns="1">
                <h:outputText value="expression resolver"/>
                <h:panelGrid columns="2" rendered="true">
                  <h:inputTextarea id="expression"
                                   value="#{expressionResolver.expression}"
                                   rows="4" cols="50"/>
                  <h:commandButton value="resolve" id="resolveButton"
                                   action="#{expressionResolver.resolveButton_action}"/>
                </h:panelGrid>
                <h:outputText value="#{expressionResolver.expressionResult}"/>
              </h:panelGrid>
            </h:form></body>
        </html>
      </f:view>
    </jsp:root>(*) the configuration in faces-config.xml :
      <managed-bean>
        <managed-bean-name>expressionResolver</managed-bean-name>
        <managed-bean-class>view.util.ExpressionResolver</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>So if you add these to an application, for example the "Oracle ADF SRDemo Application", you could resolve expressions like these at runtime (or any other expression you can come up with):
    #{data.SRPublicFacade.methodResults}
    #{data.SRPublicFacade.methodResults.SRPublicFacade_dataProvider_findServiceRequests_result}
    #{data.SRPublicFacade.methodResults.SRPublicFacade_dataProvider_findServiceRequests_result[0].problemDescription}
    #{resources['srdemo.version']}
    #{userInfo.userName}
    #{userState.searchFirstTime}All suggestions for improvement are welcome of course.
    One more thing ... a page like this should probably not be part of a production deployment of your application or it should be properly secured.
    regards
    Jan Vervecken

    Jan,
    this looks useful to me, especially if you work in support. Do you have a blog where this tip is mentioned, so we can link to it ?
    Frank

  • How to resolve database PSU conflict errors

    Hello:
    I am in process of applying the database PSU Patch 18522512 for 11.2.0.3 and running into conflict issues with other patches, please take a look at the following conflict issues and let me know how to resolve these conflict issues and installed the PSU patch 18522512.
    /cherdb_1/oracle/VIS12/11.2.0/PATCHES/PSU/18522512
    cheron.aarcorp.com:(oracle):> opatch apply
    Oracle Interim Patch Installer version 11.2.0.3.6
    Copyright (c) 2013, Oracle Corporation.  All rights reserved.
    Oracle Home       : /cherdb_1/oracle/VIS12/11.2.0
    Central Inventory : /vol01/app/oraInventory
    from           : /cherdb_1/oracle/VIS12/11.2.0/oraInst.loc
    OPatch version    : 11.2.0.3.6
    OUI version       : 11.2.0.3.0
    Log file location : /cherdb_1/oracle/VIS12/11.2.0/cfgtoollogs/opatch/opatch2014-08-06_10-59-59AM_1.log
    Verifying environment and performing prerequisite checks...
    Composite Patch 18522512 is a bug superset of 16929165,16992075,17468141,13001379,14123213,13931044,9858539,8547978,14237793,14207902,13923995,13544396,13528551,13499128,13477790,13466801,13366202,13259364,13070939,13036331,12971775,12845115,12780983 in OH.
    Composite Patch 18522512 conflicts with installed patch(es) 17875948, 16040940, 19078951, 17693770, 17912217, 13004894, 14649883, 12942119, 16438289, 13040331, 17600719, 13146719, 18116376
    Conflict Description:
    Here are the specific sub-patches of composite patch 18522512 that conflict with 17875948, 16040940, 19078951, 17693770, 17912217, 13004894, 14649883, 12942119, 16438289, 13040331, 17600719, 13146719, 18116376
    Sub-Patch 13696216 conflicts with 19078951 conflicts with 18116376
    Sub-Patch 13923374 conflicts with 19078951
    Sub-Patch 16056266 conflicts with 19078951
    Sub-Patch 16619892 conflicts with 19078951 conflicts with 17912217 conflicts with 17875948 conflicts with 17600719 conflicts with 16438289 conflicts with 13004894
    Sub-Patch 16902043 conflicts with 19078951 conflicts with 17875948 conflicts with 12942119 conflicts with 13146719 conflicts with 13040331
    Sub-Patch 17540582 conflicts with 19078951 conflicts with 17693770 conflicts with 14649883
    Sub-Patch 18031683 conflicts with 19078951 conflicts with 17875948
    Sub-Patch 18522512 conflicts with 19078951 conflicts with 16040940
    Conflict Remedy:
    Refer to My Oracle Support Note 1299688.1 for instructions on resolving patch conflicts.
    UtilSession failed: Composite conflicts with existing oneoffs.
    Log file location: /cherdb_1/oracle/VIS12/11.2.0/cfgtoollogs/opatch/opatch2014-08-06_10-59-59AM_1.log
    OPatch failed with error code 73
    Thanks & appreciated for your help.
    Syed.

    Hi Syed,
    You can raise SR for merging the conflict patches and refer to the MOS document provided to resolve.
    Thanks,
    Uday

  • About Bootstrapping Animate Compositions

    Hello!
    I want to make slideshow with several compositions.
    Problem: animations require more and more system resources and after a moment the ventilation of the client computer is at maximum. After a moment, the animations do not play properly and get blocked.
    I wanted to limit the number of loops that scrolling is not infinite, but it is not so easy to stop the script I use.
    Here is the script I use :
    http://blogs.adobe.com/edge/2012/05/15/bootstrapping-edge-compositions/
    If you have an idea to solve the problem, that would be great. Thank you!
    VO (fr)  : Bonjour! Je souhaite réaliser des slideshow avec plusieurs compositions. Problème : les animations demandent de plus en plus de ressources système et au bout d'un moment la ventilation de l'ordinateur du client est au maximum. Au bout d'un moment, les animations ne se jouent pas correctement et se bloquent. J'ai voulu à limiter le nombre de boucles pour que le défilement ne soit pas infini; mais ce n'est pas si simple de stopper le script que j'utilise. Voici le script que j'utilise : http://blogs.adobe.com/edge/2012/05/15/bootstrapping-edge-compositions/ . Si vous avez une idée pour résoudre le problème, ce serait super. Merci!

    Here is a walkthrough on Adobe Dev Connectings - http://www.adobemarketing.com/devnet/digitalpublishingsuite/articles/enhancing-your-dps-fo lios-with-edge-animations.html
    The only difference in that walthrough is the reference to in the Publish Settings: in Adobe Edge Animate v1, its now called 'Animate Deployment Package' instead of 'Indesign/DPS'.
    Darrell

  • How to resolve m3u player conflict with installed recording applications?

    Greetings,
    On some of my web pages, I include code for the Quicktime streaming audio player. The player source file is an m3u file that retrieves the mp3 file to play. This "player" works fine on any of my machines that don't have specialized recording software installed. One machine, a Toshiba notebook, with XP on it, has an old digital audio recording/editing program on it that I still use a lot: Protracks. After I had installed Protracks, I noticed that my web pages' streaming audio player would play a very distorted version of the mp3 file, slowed and stuttered. When I first acquired my HP with Windows 7, I installed the latest Quicktime plug-in so I could use the streaming player on my web pages. It worked fine, as it did on an old desktop running XP, until I also installed Dragon Premium by Nuance. Now, the Quicktime streaming audio player on my web pages plays in the same distorted way that the ones on the Toshiba does. I tried associating Quicktime with m3u in the mimetpye control panel, but after I did that I still had no success.
    Here's the code for the player:
    <object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="197"
    height="17" codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
    <param name='src' value="audio/Welcome.m3u" />
    <param name='autoplay' value="FALSE" />
    <param name='controller' value="TRUE" />
    <param name='loop' value="FALSE" />
    <EMBED src="audio/Welcome.m3u" width="197" height="18" autoplay="FALSE" controller="TRUE" loop="FALSE" pluginspage='http://www.apple.com/quicktime/download/'>
    </EMBED>
    </object>
    I use m3u for streaming and so my original audio files can't be scraped easily.

    Hi Syed,
    You can raise SR for merging the conflict patches and refer to the MOS document provided to resolve.
    Thanks,
    Uday

  • Resolve File Saving Conflict Dialog Box

    Hi, I developed a new GUI for teststand. The problem is with the executable of the GUI, because at the end of the test it does not closed itself. I have to terminate the process by the TaskManager. 
    When I used the GUI instead of the executable, it appears the dialog box attached. During the test some station globals are overwritten.
    I am afreid that is the dialog box that stop the automatic closure of the exe.
    Does anyone know how is possible to disable that dialog box?
    Thanks a lot. 

    This does not have anything to do with type conflicts.  You likely have two applications that are using the TestStand Engine.  One is completing and modifying the StationGlobals.ini file.  At the same time, your second application also is modifying the StationGlobals in a different way.  If you save the second application, it will overwrite what the first application did.  So you are prompted to decide which version you want to keep.  
    This dialog occurs because there is code that calls Engine.CommitGlobalsToDisk.  This method has a parameter called "promptOnSaveConflicts" that gives the option to display this prompt.  However, I believe this method is likely called internally by the ApplicationMgr control.  I haven't found a way to have the ApplicationMgr call this function with a false parameter value.  Before shutting down your application, you could call Engine.CommitGlobalsToDisk with the false parameter and then shut down, which should make the problem go away.
    However, you do risk overwriting global data so I would examine what you are doing to see if you expect to have multiple applications modifying the globals.   If this is unexpected, you likely have a problem.  I didn't quite understand the different between your GUI and EXE or what you are trying to accomplish, so perhaps there is a better way to implement what you want to accomplish.

  • Resolving the Directly Conflicting Battery Advice

    I have been trying to be a good MBP - Retina owner, and I need to understand the conflicting batter advice.
    A Level 7 (prestige points) in a thread titled, Macbook Pro Retina batter problem states: "They [the battery] do not suffer from the "Memory Effect" of Nickel Cadmium batteries. You need to let it run down ONCE so that it can calibrate where the endpoints of battery capacity are."
    But then, in a thred titled, Can I leave my MacBook charged at night, a Level 9 says, quote: "You should avoid ever draining the battery completely, if you can. That's far harder on it than draining it down to 50% twice, recharging in between."
    While the quote above says you avoid EVER draining the battery completely, another guy in the same thread says let it run flat ONCE A MONTH, quote: "Let the battery completely discharge and then fully charge it and leave it charging another hour or so after it says it's fully charged.  Repeat this process perhaps once a month if you notice the battery not charging properly.  This process helps the battery calibrate."
    Then in direct contradiction to the paragraph immediately above, another post says, "If your MBP was made after June 2009, its battery never needed calibration or "conditioning" in the first place."
    Okay.  Some are saying run it flat once a month for conditioning, another says after 2009 running it flat is just about the only thing you can do to hurt a modern MBP battery?
    What are the actual battery practices to follow for a healthy modern battery, because I sure as heck am confused now.  Assuming you never want to run it flat if possible, what are the best discharge practices in terms of percentage of battery charge?
    Thanks!

    Love it.  I saw your order of a fully loaded machine discussed with your buddy in BC.  I couldn't be more happy with mine.  I understand that driving this screen make long battery life a challenge.  I have also decided to get the larger Flash memory, so I'll be swapping this one out.  Here's a what I e-mailed a co-worker after my company got me mine:
    Not as distinct looking as I thought unless you're looking from the side, but very wellexecuted.  It did draw a crowd at the set up table Tues at the Apple Store.   Turns out they sold a few they had gotten for display models by accident, so they told me and another guy really lucked out.  So far, I think they're right.  There's a new Apple Business manager at this store now.
    Keyboard seems to have additional rebound in the key stroke, I like it.
    Weight loss makes a much bigger difference than I had imagined.  Much more comfortable to use and move around.  You can easily hold it with one hand by it's corner open.
    The screen doesn’t flop anymore!  Used to make me nuts.  If I used the open 15” MacBook Pro at certain angles, particularly if I was laying back in bed or on a plane reclined, the screen could  fall forward some under it’s own weight (or move slightly in turbulence on a plane).  Now the retina screen no longer has the glass cover, the hinges function much more stiffly and it holds it’s angle!!
    Screen is gorgeous.  Did not seem to be such a huge difference at first, but that is because I have been duly spoiled by Apple using the Retina iPad for a while now.  When you do get a graphic like a detailed high res photo, and oh my goodness, it is indeed spectacular.  Text is like a magazine.
    Screen Glare!  What happened?  I guess when Apple dropped the glass cover on the screen.  Anyway, a major issue in certain settings is no longer an issue.
    Crazy fast.  Loads faster.  Once an update is downloaded the install time is spectacular.  Sucked up files I was transferring by high capacity thumb drive (USB 2) incredibly quick.  Can't wait to use thunderbolt, I ordered a Lacie with two 3 Terra drives I'll run mirrored.
    Does not appear to run any warmer than my last generation 15" Mac Book Pro.  Perhaps cooler, hard to say this early on.  Fan is much quieter.
    Seems that Apple's claim of 7 hour battery may be optimistic - not sure.  We'll see.  This is an issue for us because, for example, the flight from Atlanta to Johannesburg is sixteen hours on Delta, and unless I’m in business class, I can’t recharge.  When my laptop goes down, I have to switch to iPad with Bluetooth keyboard.  Delta only has wi-fi on U.S. flights as far as I know, even on their regional jets.
    Charger chord not attached as firmly, but not a problem either.  Bought a second to permanently reside in my office.
    Very surprised at the speakers - much improved.  I would never compare these new speakers with the Bose Blue Tooth portable; however, it is worth noting that the new speakers in the computer stopped me from buying said Bose speakers as the on-board new ones are enough for the hotel rooms I frequent with my high travel job and I won't be lugging something else around.  At home I have even gone to bed with these speakers whereas I used to go through that little black TV box Apple sells to my stereo.
    Next machine we buy I'll get the next step up as I need the extra 250 gigs but not the speed.  I'm at 62% full with this because I left most of our promotional videos off the machine, and just loaded around 5 key ones.
    HDMI worked great in a presentation Wednesday, you have to tell the sound to go to the T.V. speakers via the System preferences.  No problems, nice to just take an HDMI chord and no data projector!
    My daughter is the most happy - she went from a Vista based laptop to my previous MacBook Pro Tuesday.  When I set up her profile, I learned there’s some very cool parental settings available, she’s not as happy about that (set it not to operate between 12a and 6a.
    I have ordered a LaCie Thunderbolt 6 Ter two drive external memory - I will run it mirrored.

  • How to resolve intra role conflicts

    Deal All,
    Need your help on approach that needs to be taken to remediate the intra role SOD conflicts arising for users in the system,
    I have explained them the details on how they can resolvewhich requires redesign of roles but client is not at all willing to do a redesign of roles because they have invested a lot in their current auth design.
    Can you help on how do we go on removing these risks,
    Thanks,
    Uttam

    Hello.
    Last time I heard about this problem, the problem went away after the number of GRC rules used for the check was lowered from all their millions of rules to the most important ones that pose a real risk. There are companies where it is not possible to do anything about it, because they're too small. And these companies are still in business. Even if you clear the conflicts on the role level, you can land with the same problem on the user assignment level.
    Can you maybe elaborate on these conflicts? How serious are they? How many roles and users are / can be affected? What is the module / area that it is touching?
    Cheers Otto

  • Trying to resolve a DHCP conflict involving Airport Extreme

    I have my LAN set up so that the router hands out addresses with DHCP in the 192.168.1 range. Also on the network is an Airport Extreme (an older 11g model running the 5.7 firmware). I am having a terrible time trying to configure it so that it hands out addresses to its clients in the 10.0.1 range. No matter what I try, the Airport DHCP server is overridden by the DHCP server on the main router and a 192.168 address is assigned.
    On the first configuration page of Airport Utility under the Internet tab, I have chosen Connect using Ethernet and DHCP. And I have chosen "Share a public IP address." Under the DHCP tab I've indicated beginning and ending IP addresses from 10.0.1.10 to 10.0.1.20. Why then when I connect to the airport with, say, my laptop, do I get a 192.168 address?
    Any advice would be much appreciated.

    What you are trying to do is quite common, but perhaps the key is that the LAN with the DHCP router assigning 192.168.1 addresses must be connected to the AEBS via its WAN port.
    In a default (configured from Factory Reset) scenario, the AEBS will request an IP address from the router via DHCP for itself, and will distribute IP addresses for its clients (wireless and via its LAN port) via DHCP from the pool you've specified if you have it set up to "Share a public IP address."
    You can read more about setting up this type of network starting on page 24 of the Apple manual Designing AirPort Networks.
    I suspect what's happening is the router is connected to your AirPort's LAN port, which causes a race condition between the two DHCP servers as to which will provide an address to new network devices.

  • How to resolve multiple font conflicts on startup?

    Monaco, helvetica, keyboard, lucidagrande, Geneva, and last resort

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    As Guest, launch the application(s) and test. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on some Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode.) Post the results of steps 1 and 2.

  • How to resolve software installation conflict

    I used to install free packages from sunfreeware.com on my Solaris 8 box. Now I've downloaded Solaris Software Companion CD 07/01 from SUN. I found that the emacs (v20.7) that comes with the CD is newer than that from sunfreeware.com (emacs-20.4-sol8-sparc-local.gz) So I tried to "pkgrm" the old one and "pkgadd" the new version.
    However, during "pkgadd", there is a message:
    WARNING:
    The <SFWncur> package "ncurses (new curses) library" is
    a prerequisite package and should be installed.
    However, in my box, I've already installed "ncurses-5.2-sol8-sparc-local.gz" from sunfreeware.com and that software resides in /usr/local
    Is there any way that I can install SFWemacs using SMCncurs without installing SFWncurs?
    Thanks for your kind help in advance.
    Rgds
    Steve

    Windows Firewall won't block installations. You can use group policy, check out Using Software Restriction Policies to Protect Against Unauthorized Software
    As well, as a security best practice users who should not be allowed to install applications should not be members of the Power Users or Administrators local machine groups. As members only of the Users local machine group they do not have permission to
    install applications.
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • How to Resolve Bitnami/MAMP Conflict with Profile Manager

    I've been working on a new Lion Server for several weeks, and most of my services work great. However, I want to set up several development environments for WP, Drupal, and Magento, among other things. I prefer to use something like MAMP Pro or, in this case, Bitnami stacks for my various environments. However, this machine currently is used for managing Wiki, Profile Manager, and Device Manager, among other things. Of course, if you activate the Bitnami MAMPstack, that poses an issue for Profile Manager, as both use the 80 and 443 ports, I presume. So, the question is how can I configure Lion Server to run Bitnami (or MAMP Pro, as an alternate possibility) and not break Profile Manager, Wiki, Device Manager, etc.?

    Let me edit the statement a bit. Device Manager is the term that I intuitively have attached to the link https://server/mydevices, which is nothing more than a web interface for adding profiles to your Mac and iOS devices. Apple doesn't call it that, but I have taken to doing so, so when I'm referring to it, that's what it is.
    Anyway, I haven't tried Wiki on its own, but I know that if I activate MAMP, or BitNami, and I run Profile Manager, it is inaccessible. Obviously, there is a conf setup, or something I am missing here, but I'm not finding it in the server documentation, if it exists at all.

  • Resolve conflicts that are there yet not there

    I have a few vi's the when opend popup a box that says:
    One or more dependencies of Bla-Bla.lvproj have changed sinc the project was last saved.
    The following new dependencies conflict with items in the project.
    It gives a list of sub vi's that are being pulled from the wrong directory.
    The help file says to Resolve any new conflicts in the Project Explorer window.
    But no conflicts show up in the project view and "resolve conflicts" is grayed out in teh Project menu.
    But every time I open this VI I get  the same message.

    Try opening the project and then all the folders in it - including "Dependencies" there can be things that show up that don't enable the conflict button.
    Also try opening the VI while the project is open. BTW: I'm assuming that the VI you are having problems with is actually in BlahBlah.lvproj. If it's not you might have something crosslinked.
    MIke...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Resolve conflict in WD project (DTR)

    Hi All,
    I've a local Web Dynpro project in the DTR (not DC).
    I want to get back to a previous version of one of the files.
    Steps I've done:
    1) Right click on file name -> Show in -> Version Graph
    2) Right click on old activity -> Sync to this version
    At this point the file is downloaded to my local machine and I can use it. Also, I've a yellow exclamation mark next to the file in the DTR (meaning a version conflict since the file in my local machine and the file in the DTR are not the same)
    Now I want to sync the file <b>from the client to the DTR</b> but the 'Resolve Conflict' isn't active (see picture)
    http://img155.imageshack.us/img155/8797/dtrya3.jpg
    How do I make it active?
    Thanks,
    Omri

    Omri,
    If I understood correctly, you want to sync a file to its old version, do some changes (editing) and put back the correct version (edited files) back to your DTR.
    If that is the case, simply get back to your older version (by following the steps you've already mentioned in this thread). Then check out all the suitble files under an activity and make the required changes.
    Then, check-in the activity. At this point of time, all the relevant conflicts will be shown in the DTR console. The files having conflicts will not get checked in unless you resolve it.
    So, now, you may right click the required file having the conflict (under the activity) and use the option that helps you to choose use local version (I don't remember the exact name of that option.;-)).That's all. Follow the same procedure to resolve all the conflicts.
    ~ Bala

Maybe you are looking for

  • How do I copy playlists from one pc to another?

    I moved all of the songs from one pc to the other via homeshare. Now, I want to copy the playlists over. How do I do it? I don't want to wipe out the playlists that already exist on the current pc -- I want to add them all together.

  • 3.0 Update not working

    I recently updated my iPod touch 2nd generation with the 3.0 update and it didn't work even after I restored my iPod. Does anyone know what's going on and how I can fix this? I don't want to waste $10.45 for nothing.

  • Issue with logical operator using SetEnvIF in OHS

    We have a requirement to set constant value in ssl.conf (OHS) based on Request_URI & referrer. For example, if (Request_URI=/forms/base/login) and (Referer=http://example.com), then we need to set variable value with 1. Similarly we some more conditi

  • Possible to turn off MBP Sleep Light?

    The sleep light on my MBP is bright. The pulsing can actually wake me up. Is it possible to turn it off? The iMac G5 got a "Sleep Indicator Light" update that turns it off at night. I'm not sure if it's configurable or not, but even if it's not, the

  • Export a file

    Hi.. i've finished up a project in InDesign CS3 (windows) and i'm ready to send the file to a printshop. But i'm affraid of one thing. If i send the *.indd file does it include all the images ? Because the images are linked to a path. Do i need to se