Invalid Embed directive in stylesheet -

I have this error randomly appearing in a certain project:
Invalid Embed directive in stylesheet - can't resolve source 'Embed(source = "net/brandonmeyer/assets/images/clear.png")'.    bookingSystem/src    styleold.css    line 437    1254405884097    23832
after a while I goes away. (restarting flex etc, clean)
what could be causing the problem. The location is fine, a reliable external drive.

After applying -keep to the compiler the error at the very bottom of the error pile reads:
The static attribute may be used only on definitions inside a class. [Generated code (use -keep to save): Path: X:\ColdFusion8\wwwroot\CFIDE\FLEX\bookingsystem\src\generated\components\TradeList-genera ted.as, Line: 2061, Column: 13]     ...etc
the only thing is is that I have no static things in my component "TradeList" and the file \TradeList-generated.as does not exist in my server.
Thanks

Similar Messages

  • What's with "Invalid Embed directive in stylesheet - can't resolve source" compile errors

    Hi
    Quite often I notice that I get lots compile errors like "Invalid Embed directive in stylesheet - can't resolve source 'Embed("assets/icons/cancelOnWhite_12x12.png")'. line 165 application.css"
    ONLY when there are other compile errors. As soon as I fix these other errors, all "Invalid Embed directive" errors disappear.
    Obviously these errors should never show in the first place, and I wonder if this is a known problem with an existing bug report?

    No. Will keep you posted if I get anything.
    I also want to clarify one thing: Design view reports embed errors as well. If you are seeing an error from design view, you should be able to see the "problem" go away and come back when you hit refresh in Design view.
    Can you confirm if this is that? If that is so, we've taken care of it in the upcoming release.

  • How to solve "Error: Invalid Embed directive in stylesheet - can't resolve source" while building using mxmlc.exe on command prompt

    Hi,
    Currently, I am developing a powershell script for Flex build automation.
    I found some problem and have been trying to search any references and tried any ways to fix it but It did not work.
    I am using compc.exe for compiling the libraries and it works fine.
    I compiled css files into swf files using mxmlc.exe and it works fine.
    However, I have a problem while building my main application (mxml file).
    It complains about embedded resources.
    I run this command, it works fine:
    "C:\Program Files (x86)\Adobe\Flex Builder 3\sdks\3.2.0\bin\mxmlc.exe" "C:\{somePath}\FlashClient\src\styleLang.css" -output "C:\{somePath}\FlashClient_deploy\styleLang.swf"
    However, when I tried to run these command on cmd for testing:
    "C:\Program Files (x86)\Adobe\Flex Builder 3\sdks\3.2.0\bin\mxmlc.exe" "C:\{somePath}\FlashClient\src\FlashClient.mxml" -load-config "C:\{somePath}\FlashClient\src\dump_config_temp.xml" -output "C:\{somePath}\FlashClient_deploy\flashclient_test.swf"
    I got a lot of this error message:
    this is my folder structure:
      FlashClient
      |
      |---assets
      |---src
          |
          |---FlashClient.mxml
          |---FlashClient.as
          |---FlashClientStyleLoopup.css
          |---styleLang
    Already tried to add / at the beginning of the relative paths but It did not work.
    Also tried to compile one of the image to a swc file and include it on the dump_config, but also did not work. something similar with Tech Diary: Flex : Solution to Error: unable to resolve '/assets/icons/icon.png' for transcoding using Embed tag
    Does anyone know how flex builder resolve the relative path to make the embedded resources work? or how to fix this?
    I've been trying to work on it for days but haven't had any luck.
    Will be really appreciate it if someone could help me with this.
    Many Thanks.

    Hi,
    make sure you are using 32 bit Java JDK. Check that your systems variables CLASSPATH, JAVA_HOME are pointing to correct 32 bit Java JDK folder (e.g. CLASSPATH=C:\Program Files (x86)\Java\jdk1.8.0_25 and JAVA_HOME=C:\Program Files (x86)\Java\jdk1.8.0_25). Also make sure you have 32 bit Java JDK's "bin" folder in your system's variable PATH.

  • All of a sudden my Embed directives have stopped working

    All of a sudden my Embed directives have stopped working which is really strange. I havn't moved any of my files.
    Invalid Embed directive in stylesheet - can't resolve source 'Embed("/assets/img/closeButton.png")'.
    .closeBtn {
        upSkin:        Embed('/assets/img/closeButton.png');
        overSkin:      Embed('/assets/img/closeButton.png');
        downSkin:      Embed('/assets/img/closeButton.png');
        disabledSkin:  Embed('/assets/img/closeButton.png');
    Could anyone shed some light on this?

    I tried this in the first error in the style sheet:
    SuperPanel
        resize-grip-skin:              Embed(source="H:/flash/net/brandonmeyer/assets/images/resizeHandler.png");
        etc
    but I am still getting the same error

  • Compilation errors are being cached??

    Hi,
    I am having a hard time getting rid of some cached compilation errors, that don't really exist. I am doing clean builds of the project and there are no errors, till the build reaches 100%. After 100% it throws 23 errors all of a sudden. The errors are actually non existing. Examples are:
    Invalid Embed directive in stylesheet - can't resolve source 'Embed("../assets/images/addBtn.png")'.
    1119: Access of possibly undefined property includeInLayout through a reference with static type com.xxx.xxx.xxx.xxx.view.component:MyProgressBar.
    Both the errors are vague as the button image is present in the given location and also the MyProgressBar component is having the includeInLayout property. I can see it through content assist.
    I have been getting these errors earlier as well but they used to get resolved if I do a Clean Build. This time they are not going at all.
    After some directions, I also tried deleting .markers file, but it didn't help.
    Please help me out!!
    Thanks,
    Saurabh

    Check the syntax of the Embed request and verify you can use a static reference to that property.
    Note the difference between -
    MyProgressBar.includeInLayout
    and -
    var progressBar:MyProgressBar = new MyProgressBar();
    progressBar.includeInLayout
    It also might be an import issue, meaning you are trying to use MyProgressBar without the line -
    import com.xxx.xxx.xxx.MyProgressBar;
    I don't think compilation errors are being cached and they normally have a good reason for them.
    I strongly suggest to identify the root cause of the errors and fix the problematic issues.

  • Embed img using mxmlc, Linux/gij

    Hi,
    I'm trying to embed an image into a .swf. I am compiling from
    a .as file using mxmlc on Linux using gij 4.1.1. The compile step
    always generates the following fatal error:
    MyTest.as(60): col: 3: Error: exception during transcoding:
    Failed to grab pixels for image /files/test.png
    It fails likewise for GIF, JPG, etc. Fails regardless of
    filetype.
    Source code is just a simple embed directive:
    [Embed(source='./test.png')]
    private var MyPhoto:Class;
    Anyone else seen this?

    I'm also having this issue on linux. Same build works
    flawlessly on windows and mac.
    Anyone have more information?

  • Urgent - Invalidation from webcacheadmin doesn't invalidate!

    Hi,
    I've a problem with webcache invalidation, used directly from webcacheadmin.
    If I send a 'basic content invalidation'->'Remove all cached documents'->'Remove immediately', webcache tells me that it has invalidated x objects, but reloading the previously cached page I see the old version.
    Accessing OC4J directly from its internal http-server, I see the new page...
    The only way to see the new page accessing from webcache is the entire restart with opmnctl stopall -> openctl startall...
    Just to give more infos, webcache and http server are configured on standard ports (7777 and 7778 resp.).
    The strange behaviour is that, also accessing that page from 7778 port, i see the wrong (previously cached page) instead of the new page...
    Any suggestion? We're moving to production env and this's a big problem.
    Best regards, Dariush

    Dariush,
    I strongly urge you to contact Oracle Support immediately. You may run into a bug and need to apply a patch.
    Which version of Web Cache are you using?
    Christine

  • Acrobat X Pro Embed Flash & Powerpoint 2010

    The only reason I upgraded to Acrobat X Pro from standard was to be able to embed cine loops/video into Powerpoint slides that would play upon conversion to PDFs via PDFMaker.
    I've made some small test ppts and converted them. Sometimes they convert, sometimes they don't.
    Of the converted files, I embedded two videos converted from mp4 via the "Embed Flash" option under the Acrobat heading on the Powerpoint ribbon.
    One plays as it should.  The other just displays an all black window.  Both files were MP4s.  Got no error messages.  Both MP4s look fine/play fine in Powerpoint.  So why won't one convert correctly - no error message so PDFMaker seems to think it converted fine.  Seems like it is very unreliable.
    Can anyone help?
    Thanks,
    j

    Hi,
    Thank you for trying to help.  I have Powerpoint 2010 32 bit version.  I have made some progress, but spent an inordinate amount of time doing so.
    I can't embed directly into Acrobat using the commands you provided in your first message. This is what I am trying:
    Insert new page. While on that page go to tools>Content>Multimedia>Video...  I click video  Nothing actually happens.  Not sure how this is supposed to work or be helpful.  There is no prompt to select a file, no dialog box, nothing...the selection just has a check mark next to it and stares back at me.
    But if I select, Insert Page from Another File, and then adjust, "files of type" to be the video files, I can load the video directly into the PDF.  Of course then I don't have them formatted in the same slide background, etc. as the rest of the presentation and, "IT AIN'T PRETTY!".  And the insert only lets me insert "before" or "after" current slide, not onto the current slide...
    I found that the inserted MP4 files displayed in jerky fashion and appear to have fewer frames than the original. In Powerpoint they play fine and move smoothly.  Another problem was that the files "blinked" before playing. In other words, image 1 is displayed.  If I click on the image, it goes black for a second and then the image comes back and plays its loop.  After much trial and error and loss of hours of my life I will never get back, I found that iif I turned off hardware acceleration and let it play in "software," the files played fine with no blinking.  However, how will I know how viewers of my content have their computers set up? This is pretty sketchy implementation, or, more likely, I just don't know what I'm doing.
    Also, I see no way to make the slide play continuously.  I get one loop per click.  I did edit the properties so that it would "Disable when:" "The page containing the content is closed." This doesn't seem to make any difference and it still stops after one loop even while the page is displayed.  Is there a way to make the files that are directly embedded into the PDF play continuously once triggered?  Actually, I guess I don't care about that so much as, overall, inserting the cine loops directly into the PDF is a bad solution as the slide doesn't have the Powerpoint theme and formatting and such.
    Concerning the embed process in Powerpoint using the Adobe Acrobat X Pro add-in:  I converted the test video to MP4 and MOV from an original AVI using Prism Video File Converter and each displayed just fine in their native format in Powerpoint (and I could loop them continuously!)
    However during the embed process in Powerpoint,  when I use the Acrobat "Embed Flash" tool, the video is inserted as an all black window on the slide...I can't see the content at all.  If I save the file as a PPTm, the images do appear  in the Powerpoint slideshow and play, albeit with the initial blank image problem/Flicker despite hardware acceleration still being turned off.  Again I can see no way to make an embedded image loop continuously as long as the slide is displayed.  I get one loop and have to trigger it again.  Also, once I play the show, the image then does appear on the slide in the, "normal" editing mode. Pretty weird that I have to play the show to get the image and controls to appear in edit mode...
    So, bottom line questions:
    1  Can I do an "embed flash" and get the image to play continuously unless stopped by the user using the controls? 
    2. Can I do an "embed flash" and avoid the business where the cine box goes blank before displaying the embedded video?
    3.  Can I do an "embed flash" that doesn't start off life in the PPT presentation as an empty black box that only displays the video after it has been put through a slide show experience?
    BTW, I am a physician and I'm trying to embed cine loops of 3D medical images from my radiology practice into secure PDF files for distribution to interested health care professionals. Since the images reflect my practice, I want them and the entire presentation to be as professional as possible.  I have to tell you, this is pretty frustrating since I paid for the Acrobat X PRO out of pocket and it isn't a business expense/tax deductible, etc.  I would never have thought this process would be so convoluted in such a mature product.  Any additional help that you or others on the forum can provide would be much appreciated, and of course I do appreciate your efforts to date.
    Best regards,
    John

  • What's the deal with enums?

    Hello,
    I'm trying to familiarise myself with the new Java features that project Tiger (Java 1.5) will introduce. I come from a C++ programming background. I very briefly studied enums whilst I learned C++ and never used them in my programs, so I was, quite frankly, relieved when I learned that Java didn't support them.
    But now it does.
    I'm wondering, from a software design and engineering perspective, what benefit enums will add to the Java language and software engineering in general. I have read some pleas and arguments for enums. As I understand those arguments, proponents feel that minor ledgibility improvements to switch statements (which some OO programmers don't use on the basis that it weakens the object-orientedness through its goto-esque break statements) necessitate the addition of a whole other structure.
    Out of curiosity, wouldn't it be more advantageous for Sun to put their efforts into supporting constant strings in switches in addition to primitive data types if people are so concerned with clarity?
    I fail to understand what enums will do that constant string arrays or constant values cannot. I would like to think that Sun wouldn't add C++ features unless if there was a reason to do so, so I believe that there are good reasons to introduce this feature.
    Please help clarify this confusion.
    Thank you!

    Comments on the previous posting inline. Note: I'll go off on a few tangents, but try to always return to the issue of enums. The fact that I go off on tangents (related initially to an enum type example) should show that enums help eliminate numerous problems.
    Fair enough, but wouldn't this accomplish the same thing in
    a slightly wordier wayPretty much. But you still have the validation code in there yourself:
    currentDirection = ( direction > 0 && direction < 5 ? direction : 0 );People can still accidentally enter an invalid value, and it won't get caught by the compiler. So, I could call set(Compass.WEST) and hope/expect that is equivalent to set(Direction.LEFT). This will only occur if both Compass.WEST and Direction.LEFT are the same int value. If they are not, then we are in trouble. Worse, still if Compass.WEST and Direction.RIGHT are the same value, the code will compile, and run without any illegal value flagging, but our traveller will go off in the wrong direction.
    Error handling tangent: Given the implementation, the error handling is not performed in set, rather the illegal value is captured as a zero, which must be dealt with at a later time - say in a switch statement that calls get. This is not a good idea - it increases the "distance" between the error occuring (bad call to set) and the error being detected (if xInt != 0). The larger the distance, the harder debugging is. If you throw an exception in set the bug is immediately flagged. With enums, none of this should be necessary.
    Implementation tangent: set, get and currentDirection are static. This is not a good idea - it only allows one direction. If you have multiple travellers, each would have a Direction object, but (sticking with constants) UP, etc. would still be static.
    I keep the switch statement in my enum workaround, but I believe that
    the second reply suggested that enum could altogether eliminate the
    use for switch statements. How exactly would it do that?enum in its simplest form would not remove switch. However, using an extension of the type-safe enum idiom (i.e. the current Java approach to enums), you can embed direction specific logic in each of the "enum" members. If I understand the enum-spec correcly, this will also be possible with the Java 1.5 enum language facility.
    So, for an example, sticking with the domain: Consider a class Location, with x and y elements, and a Direction. The non-OO, non-enum approach would be as follows:
    class Location {
        int x,y;
        void move (final int direction) {
            switch (direction) {
                case UP:
                    --y;
                    break;
                case DOWN:
                    ++y;
                    break;
                case LEFT;
                    --x;
                    break;
                case RIGHT:
                    ++x;
                    break;
                default;
                    throw new RuntimeException("Invalid direction " + direction);
    class Direction {
        public static final int UP = 1;
        public static final int DOWN = 2;
        public static final int LEFT = 3;
        public static final int RIGHT = 4;
    }Note that I've deliberately been loose with my visibility. All logic is in Location, and Direction is dumb. If we go with a type safe-enum idiom, we get:
    class Location {
        int x,y;
        void move (final Direction direction) {
            if (direction == Direction.UP) {
                --y;
            } else if (direction == Direction.DOWN) {
                ++y;
            } else if (direction == Direction.LEFT) {
                --x;
            } else if (direction == Direction.RIGHT) {
                ++x;
            } else { // direction is null
                throw new NullPointerException("null direction");
    class Direction {
        public static final Direction UP = new Direction();
        public static final Direction DOWN = new Direction();
        public static final Direction LEFT = new Direction();
        public static final Direction RIGHT = new Direction();
        private Direction () {} // the ctor is private to limit instances
    }This code is a rewrite of the int approach, but is "type-safe". We've moved from switch to if as we can't switch on object references. Note: there is still error handling code, as you're not "null-safe" (I don't know what the Java 1.5 spec says about this)
    Little else has changed - the responsibilities are still the same. We can address this by going OO, which removes the if (formerly a switch) statement, but does couple the classes.
    class Location {
        int x,y;
        void move (final Direction direction) {
            direction.move(this);
    class Direction {
        private final int xOffset, yOffset;
        private Direction (final int xOffset, final int yOffset) {
            this.xOffset = xOffset;
            this.yOffset = yOffset;
        public static final Direction UP = new Direction(0,1);
        public static final Direction DOWN = new Direction(0,-1);
        public static final Direction LEFT = new Direction(-1,0);
        public static final Direction RIGHT = new Direction(1,0);
        void move(final Location location) {
            location.x += xOffset;
            location.y += yOffset;
    }This removes any conditional logic, embedding (constructor parameterised) logic within Direction. It also eliminates the "null-safe" check, as direction.move(this) will throw an NPE if a null is passed.
    Also, I've read some things saying that enum reduces 'boilerplate'
    code. What exactly does that and 'boilerplate' mean?The Direction class is an example of the type-safe enum approach currently used in Java. It has been enhanced with logic for movement. Even if I dropped this logic, there is still functionality worth adding to the Direction class - a toString method that returns one of "UP", "DOWN", etc (shown next); a way to serialize the object and retain reference equality - you have to write a readResolve method (not shown).
    class Direction {
        private final String name;
        private Direction (final String name) {
            this.name = name;
        public static final Direction UP = new Direction("UP");
        public static final Direction DOWN = new Direction("DOWN");
        public static final Direction LEFT = new Direction("LEFT");
        public static final Direction RIGHT = new Direction("RIGHT");
        public String toString() {
            return name;
    }Once you've written this code for one type-safe enum, you've written them for them all. You copy-cut-paste, and rename the class/elements. All this code is predictable. It is "boiler plate". Now, if you gave me a compiler that generated all this code for me, when I present it with
    enum Direction {UP, DOWN, LEFT, RIGHT}; then I've got something that reduces my boiler plate code to zip.... Enter the Java 1.5 compiler.

  • Weird error message I got after changing my Access Log Settings

    "Try to refresh the view (localhost/Web). Report the problem to the administrator if it persists. (NILRESPONSEERR (* -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)))"
    I can't seem to get into server admin to change back what I did. I copied access log settings from a known good working server and after hitting save I get this. Tried restarting with no luck.
    Anyone know where to start looking at? Ever encountered this before?

    Jul 14 15:40:13 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:40:13 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:40:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:41:03 www deliver[72454]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:41:03 www deliver[72452]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:41:13 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:41:13 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:41:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:41:27 www drupal[57811]: http://www.livecostarica.net not found|142.59.23.125|http://www.livecostarica.net/favicon.ico|http://www.livecos tarica.net/blog/?p=26|0||favicon.ico
    Jul 14 15:41:35 www drupal[66954]: http://www.livecostarica.net not found|84.104.43.5|http://www.livecostarica.net/images/banners/Forum||0||images/ banners/Forum
    Jul 14 15:42:03 www com.apple.launchd[1] (org.postfix.master[72444]): Stray process with PGID equal to this dead job: PID 72457 PPID 1 bounce
    Jul 14 15:42:13 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:42:13 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:42:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:43:14 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:43:14 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:43:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:44:03 www deliver[72665]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:44:14 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:44:14 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:44:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:45:14 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:45:14 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:45:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:46:03 www deliver[72814]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:46:03 www deliver[72812]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:46:15 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:46:15 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:46:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:46:36 www org.clamav.freshclam[30]: Received signal: wake up
    Jul 14 15:46:36 www org.clamav.freshclam[30]: ClamAV update process started at Mon Jul 14 15:46:36 2008
    Jul 14 15:46:36 www org.clamav.freshclam[30]: SECURITY WARNING: NO SUPPORT FOR DIGITAL SIGNATURES
    Jul 14 15:46:36 www org.clamav.freshclam[30]: See the FAQ at http://www.clamav.net/support/faq for an explanation.
    Jul 14 15:46:36 www org.clamav.freshclam[30]: WARNING: Your ClamAV installation is OUTDATED!
    Jul 14 15:46:36 www org.clamav.freshclam[30]: WARNING: Local version: 0.92.1 Recommended version: 0.93.3
    Jul 14 15:46:36 www org.clamav.freshclam[30]: DON'T PANIC! Read http://www.clamav.net/support/faq
    Jul 14 15:46:36 www org.clamav.freshclam[30]: main.inc is up to date (version: 47, sigs: 312304, f-level: 31, builder: sven)
    Jul 14 15:46:36 www org.clamav.freshclam[30]: daily.inc is up to date (version: 7709, sigs: 39397, f-level: 33, builder: neo)
    Jul 14 15:47:15 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:47:15 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:47:16 www drupal[34658]: http://www.livecostarica.net not found|75.109.107.138|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 15:47:19 www drupal[42900]: http://www.livecostarica.net not found|75.109.107.138|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 15:47:26 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:48:15 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:48:15 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:48:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:49:16 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:49:16 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:49:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:50:16 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:50:16 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:50:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:51:16 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:51:16 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:51:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:52:17 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:52:17 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:52:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:53:17 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:53:17 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:53:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:54:17 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:54:17 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:54:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:55:18 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:55:18 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:55:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:56:18 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:56:18 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:56:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:57:18 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:57:18 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:57:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:58:03 www drupal[70440]: http://www.livecostarica.net not found|128.8.89.68|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 15:58:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:58:19 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:58:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:59:03 www deliver[73684]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:59:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:59:19 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:59:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:00:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:00:19 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:00:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:01:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:01:20 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:01:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:02:20 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:02:20 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:02:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:03:20 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:03:20 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:03:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:04:13 www drupal[42900]: http://www.livecostarica.net not found|70.187.191.193|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:04:20 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:04:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:04:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:04:30 www drupal[70440]: http://www.livecostarica.net not found|70.187.191.193|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:05:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:05:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:05:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:06:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:06:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:06:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:07:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:07:21: --- last message repeated 1 time ---
    Jul 14 16:07:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:08:15 www drupal[57811]: http://www.livecostarica.net not found|74.62.112.107|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:08:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:08:22: --- last message repeated 1 time ---
    Jul 14 16:08:22 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:09:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:09:22: --- last message repeated 1 time ---
    Jul 14 16:09:22 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:10:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:10:22: --- last message repeated 1 time ---
    Jul 14 16:10:22 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:11:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:11:23: --- last message repeated 1 time ---
    Jul 14 16:11:23 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:12:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:12:23: --- last message repeated 1 time ---
    Jul 14 16:12:23 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:13:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:13:24: --- last message repeated 1 time ---
    Jul 14 16:13:24 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:14:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:14:24: --- last message repeated 1 time ---
    Jul 14 16:14:24 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:15:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:15:24: --- last message repeated 1 time ---
    Jul 14 16:15:24 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:15:48 www drupal[57811]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:15:48 www drupal[42900]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:16:03 www com.apple.launchd[1] (org.postfix.master[74749]): Stray process with PGID equal to this dead job: PID 74751 PPID 1 qmgr
    Jul 14 16:16:03 www deliver[74826]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:16:08 www drupal[66956]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:16:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:16:24 www drupal[42900]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:16:25 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:16:25 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:17:03 www com.apple.launchd[1] (org.postfix.master[74820]): Stray process with PGID equal to this dead job: PID 74831 PPID 1 flush
    Jul 14 16:17:03 www com.apple.launchd[1] (org.postfix.master[74820]): Stray process with PGID equal to this dead job: PID 74821 PPID 1 pickup
    Jul 14 16:17:25 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:17:25 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:17:26 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:18:04 www drupal[55319]: http://www.livecostarica.net not found|150.70.84.177|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:18:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:18:25: --- last message repeated 1 time ---
    Jul 14 16:18:25 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:19:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:19:26: --- last message repeated 1 time ---
    Jul 14 16:19:26 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:20:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:20:26: --- last message repeated 1 time ---
    Jul 14 16:20:26 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:21:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:21:26: --- last message repeated 1 time ---
    Jul 14 16:21:26 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:21:32 www drupal[70437]: http://www.livecostarica.net not found|128.61.202.64|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:22:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:22:27: --- last message repeated 1 time ---
    Jul 14 16:22:27 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:23:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:23:27: --- last message repeated 1 time ---
    Jul 14 16:23:27 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:24:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:24:27: --- last message repeated 1 time ---
    Jul 14 16:24:27 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:25:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:25:28: --- last message repeated 1 time ---
    Jul 14 16:25:28 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:26:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:26:28: --- last message repeated 1 time ---
    Jul 14 16:26:28 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:27:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:27:28: --- last message repeated 1 time ---
    Jul 14 16:27:28 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:28:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:28:29: --- last message repeated 1 time ---
    Jul 14 16:28:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:29:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:29:29: --- last message repeated 1 time ---
    Jul 14 16:29:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:30:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:30:29: --- last message repeated 1 time ---
    Jul 14 16:30:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:31:03 www deliver[75830]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:31:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:31:29: --- last message repeated 1 time ---
    Jul 14 16:31:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:32:03 www deliver[75906]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:32:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:32:30: --- last message repeated 1 time ---
    Jul 14 16:32:30 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:33:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:33:30: --- last message repeated 1 time ---
    Jul 14 16:33:30 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:34:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:34:30: --- last message repeated 1 time ---
    Jul 14 16:34:30 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:35:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:35:31: --- last message repeated 1 time ---
    Jul 14 16:35:31 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:36:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:36:31: --- last message repeated 1 time ---
    Jul 14 16:36:31 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:37:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:37:31: --- last message repeated 1 time ---
    Jul 14 16:37:31 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:38:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:38:32: --- last message repeated 1 time ---
    Jul 14 16:38:32 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:39:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:39:32: --- last message repeated 1 time ---
    Jul 14 16:39:32 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:40:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:40:32: --- last message repeated 1 time ---
    Jul 14 16:40:32 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:41:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:41:33: --- last message repeated 1 time ---
    Jul 14 16:41:33 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:42:11 www drupal[42900]: http://www.livecostarica.net not found|99.244.112.245|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:42:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:42:33: --- last message repeated 1 time ---
    Jul 14 16:42:33 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:43:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:43:33: --- last message repeated 1 time ---
    Jul 14 16:43:33 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:44:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:44:34: --- last message repeated 1 time ---
    Jul 14 16:44:34 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:45:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:45:34: --- last message repeated 1 time ---
    Jul 14 16:45:34 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:46:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:46:34: --- last message repeated 1 time ---
    Jul 14 16:46:34 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:46:36 www org.clamav.freshclam[30]: Received signal: wake up
    Jul 14 16:46:36 www org.clamav.freshclam[30]: ClamAV update process started at Mon Jul 14 16:46:36 2008
    Jul 14 16:46:36 www org.clamav.freshclam[30]: SECURITY WARNING: NO SUPPORT FOR DIGITAL SIGNATURES
    Jul 14 16:46:36 www org.clamav.freshclam[30]: See the FAQ at http://www.clamav.net/support/faq for an explanation.
    Jul 14 16:46:36 www org.clamav.freshclam[30]: WARNING: Your ClamAV installation is OUTDATED!
    Jul 14 16:46:36 www org.clamav.freshclam[30]: WARNING: Local version: 0.92.1 Recommended version: 0.93.3
    Jul 14 16:46:36 www org.clamav.freshclam[30]: DON'T PANIC! Read http://www.clamav.net/support/faq
    Jul 14 16:46:36 www org.clamav.freshclam[30]: main.inc is up to date (version: 47, sigs: 312304, f-level: 31, builder: sven)
    Jul 14 16:46:36 www org.clamav.freshclam[30]: daily.inc is up to date (version: 7709, sigs: 39397, f-level: 33, builder: neo)
    Jul 14 16:47:26 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:47:35: --- last message repeated 1 time ---
    Jul 14 16:47:35 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:48:03 www deliver[76982]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:48:03 www deliver[76984]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:48:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:48:35: --- last message repeated 1 time ---
    Jul 14 16:48:35 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:49:03 www com.apple.launchd[1] (org.postfix.master[76974]): Stray process with PGID equal to this dead job: PID 76986 PPID 1 bounce
    Jul 14 16:49:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:49:35: --- last message repeated 1 time ---
    Jul 14 16:49:35 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:50:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:50:36: --- last message repeated 1 time ---
    Jul 14 16:50:36 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:51:03 www deliver[77194]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:51:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:51:36: --- last message repeated 1 time ---
    Jul 14 16:51:36 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:52:03 www com.apple.launchd[1] (org.postfix.master[77188]): Stray process with PGID equal to this dead job: PID 77199 PPID 1 flush
    Jul 14 16:52:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:52:36: --- last message repeated 1 time ---
    Jul 14 16:52:36 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:53:03 www deliver[77340]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:53:03 www deliver[77337]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:53:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:53:37: --- last message repeated 1 time ---
    Jul 14 16:53:37 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:54:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:54:37: --- last message repeated 1 time ---
    Jul 14 16:54:37 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)

  • Which is better for loading?

    Hi,
    In our applications, in most of the places we are loding some
    animated swfs in our mxmls. So, in this place we are using
    1.<mx:Loader source="...../xxx.swf" />
    is this will be better or
    2.<mx:Image sorce="@Embed(...)" >
    3. <mx:Image contentPath="..../xx.swf" />
    Which opetion will be more performance for our case. anyone
    Please, give me soggession on this.
    Thanks

    The Embed directive will include your SWF (or image) into the
    final application SWF, making it that much larger. This has the
    benefit that once the application SWF has been loaded into the
    Flash Player, the embedded SWF is immediately available. The
    downside is that the main SWF will take a bit longer to fully
    download.
    A dynamic load will not increase the size of the main SWF,
    making it faster to load. Once the main SWF has loaded it will
    request any SWFs or images specified by the Image and SWFLoader
    tags. If you have a lot of content to load, the end-user will have
    to wait since only a handful of requests can be processed at once
    (usually a browser limitation). The benefit is that your
    application is usable and the content loads in the background.
    Embed: larger SWF, longer start-up, but imagery immediately
    available.
    Dynamic: smaller SWF, faster start-up, but you have to wait
    for images to be loaded
    You have to decide which is best. If you have large content,
    dynamically loading it is usually preferred so that the Flex app
    starts right away and the user perceives the application as being
    responsive. If you have lots of small content, embedding them might
    be a better way to go as the user won't see a lot of blank space
    and then your content popping in.

  • Highlighting Current Page with CSS

    This morning I post my first Dreamweaver/CSS site. It is for
    a DVD I produced about infant massage. www.BabyBabyOhBaby.com.
    What I'd like to do is highlight the current page in the
    navigation bar using either a border or color change. I've found
    some sites like
    http://www.hicksdesign.co.uk/journal/highlighting-current-page-with-css
    but, sorry to say, I'm a beginner at both Dreamweaver & CSS and
    I can't quite follow the code.
    Is there some way within Dreamweaver to accomplish the
    highlighting in design view without writing the code? Or perhaps
    someone has some very basic elementary CSS guidance?
    Thanks for your time,
    David

    Oh, yeah. 8)
    Get that....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "E Michael Brandt" <[email protected]> wrote
    in message
    news:[email protected]...
    > <informative but also self-serving>
    >
    > Really we have made this much much easier. divaGPS
    creates you-are-here"
    > menu highlighting and is easy to add to any number of
    pages at once - even
    > Templates' Child pages. It is a commercial DW Extension
    that will save
    > you lots of time and effort.
    >
    >
    http://divahtml.com/products/divaGPS/current_menu_location.php
    >
    > <informative but also self-serving />
    >
    > --
    >
    > E. Michael Brandt
    >
    > www.divaHTML.com
    > divaGPS : you-are-here menu highlighting
    > divaFAQ : FAQ pages with pizazz
    >
    > www.valleywebdesigns.com
    > JustSo PictureWindow
    > JustSo PhotoAlbum
    >
    > --
    >
    >
    > Murray *ACE* wrote:
    >> You need to know the downside to using layers as a
    primary layout
    >> device - open your page in Firefox (or any non-IE
    browser) and bump the
    >> text size up a tick or two. Ugh....
    >>
    >> Here's your navbar -
    >>
    >> <div id="navbar"><a
    href="index.html">Home</a> | <a
    >> href="about_dvd.html"> the DVD</a> | <a
    href="preview.html">Preview</a> |
    >> <a href="reviews.html">Reviews</a> |
    <a href="infant_massge.html">Infant
    >> Massage</a> | <a
    href="contact_us.html">Contact Us</a> | <a
    >>
    href="shopping.html">Shopping</a></div>
    >>
    >> Change it to this -
    >>
    >> <div id="navbar"><a href="index.html"
    id="button1">Home</a> | <a
    >> href="about_dvd.html" id="button2"> the
    DVD</a> | <a href="preview.html"
    >> id="button3">Preview</a> | <a
    href="reviews.html"
    >> id="button4">Reviews</a> | <a
    href="infant_massge.html"
    >> id="button5">Infant Massage</a> | <a
    href="contact_us.html"
    >> id="button6">Contact Us</a> | <a
    href="shopping.html"
    >> id="button7">Shopping</a></div>
    >>
    >> Then on each page, embed a little stylesheet in the
    head by changing
    >> this -
    >>
    >> </head>
    >>
    >> to this -
    >>
    >> <style type="text/css">
    >> a#buttonX { your highlight styles }
    >> </style>
    >>
    >> and just change the "X" to whatever number button
    you want to highlight.
    >>
    >> You can do this in Design view, but it's too
    tedious.
    >>

  • Tabs as Navigation

    Does anyone have experience using tabs as a navigation page in portal 10g? Or incorporating tabs with templates? This has been problematic for me. I created a nav page as a region with tabs in it; on each tab I've added a single page portlet for the initial landing page for each tab.
    I want to add vertical navigation links on some of the tabs that reference sub-pages of the initial landing page they are currently on. So when a user selects a vertical nav link within a particular tab, I want the user to remain on the same tab, preserve the vertical navbar, but load the subpage selected.
    I am using the same template for the inital landing page and all subpages. I've experimented with defining a region as a sub-page links region, and this works except, once a user lands on a sub-page, the vertical navigation is gone. And I need it to remain.
    Also, I want to embed direct access url's in content blocks that link to sub-pages of the current page. But no matter how I've tried with templates, I can't get the page that loads from clicking the url to display within the tab. Is this possible?
    Any advice on working with tabs is appreciated.
    Thanks,
    Matt

    ''PeterWood [[#question-1044047|said]]''
    <blockquote>
    I am able to access the info when using CHROME??
    </blockquote>
    The website seems to be quite old and outdated. It could be a website HTML/JS issue. This means that the developer of that website will have to be the one to fix that. This is quite odd though. If you want i can try to contact someone who is more knowledgeable on this subject.

  • Variable Name Makes App Crash

    I have an embedded bitmap resource, one of many in my program, which is an AIR app.  There's nothing unusual about it; in fact, I can replace the file to be embedded with a blank white file of the same size, or another (working) bitmap from the same program, and get the following results.
    Whether my app works or not depends on what I name the variable corresponding to the embedded resource (the :Class variable after the embed directive).  If I name it "sprBatteries", the app hangs at startup in the iPhone; the loading screen transitions into the stage background color, and shows none of the stage contents.  If I name it "sprDryCells", or even "sprBatteriesX", it works fine and displays the expected contents.
    This works fine testing on my desktop, regardless of the variable name.  I suspect that it is encountering an exception on load, but it seems to be happening before FDB can connect, so I don't know what the problem could be. EDIT: Oh, and I believe that it works fine if I compile the app as a simple AS3/Flex app rather than as an AIR app.  I haven't done systematic testing to confirm this, though.
    Does anyone have any idea what could be going on and how I could fix it?

    leotemp, that's a very smart(***) answer - but don't name
    them
    what? I read your earlier post of today: you might benefit
    by looking at Aral Balkan's Quick Start about skinning the
    components.
    I have not seen anything in all the documentation about names
    to avoid in naming files. If there are restrictions on this, it
    would be nice to see a list of those names and the situations in
    which the restrictions apply. I would think renaming the file is
    not the first thing a programmer does when an unusual message shows
    up in the Problems window in FB.
    If anyone has something to say about this, please do so.
    Cheers,
    Carlos

  • Using a library

    Have set up a library which has a spry horizontal menu. Whenever the library item is placed into a new form this is the result: <li><a href="/Library/index.html">Home</a></li> which really messes up all the links. Presently, I do a find and replace all Library/ with a blank. there's gotta be a better way.
    Thanks.

    I just discovered that moving the item out of the Library folder was ... Let's just say that my lobotomy was woking well.
    I'm not sure if that lobotomy working well thing is good or bad!
    is there any way to change individual menu items? for instance, on the home page instead of having: <li><a href="index.html">Home</a></li>
    use this <li><font color="#ff8000" style="font-weight:bold">Home</font></li>
    which gives the page the user is on a different look for that menu item.
    Sure.  There are two pretty simple ways to do this.  Both have been discussed in a recent thread here.
    1.  Give each link a unique ID attribute value.  Then on each page, embed a small stylesheet in the head of the page that styles that particular link. For example, if you had -
    <li id="home"><a href="home.html">Home</a></li>
    you would use -
    <style type = "text/css">
    #home a { color:red }
    </style>
    2.  Read this thread for "gramps'" solution - Make a menu tab active when using templates

Maybe you are looking for

  • Select entries present in an internal table using a range of key values

    Hi guys, I have an internal table tb_bseg. It contains the vendor code (lifnr), document number (belnr) and other fields. How can I select values so that it may follow my (lifnr) range values in the selection screen? SELECT belnr lifnr gsber mwskz hw

  • Error while running 'ldifde.exe' to import the schema file

    Hello, I'm doing a practical in exchange server. I have two servers, First one is the domain controller it's a Server 2012 R2 and the Second one is the server planing to install exchange 2010. it has server 2008 R2. My issue is when i'm trying to set

  • MODIFY Table in OO Context

    Hi! I'm trying to modify an internal table which is a public attribute of a class. I'm always getting a sy-subrc 4. Here is my code to describe my problem: MODIFY TABLE go_instance->gt_table FROM <table>. The datatype of <table> is correct. When I as

  • Best practice for AuC capitalization

    HI All.. At present we are following the steps given below for AuC capitalisation. 1. Teco & close production orders. 2. AuC capitalization While doing this i came across a issue of doing invoice payment after closing the production orders. When tryi

  • Photoshop Elements 7 Crashing

    I'm trying to have two photos opened at the same time.  However when I open the 2nd photo Photoshop crashes and shuts down completly.  This is a new problem, has never happened before.