Help! " Warning"

This warning comes up when I open Aperture and wont let me open or see or do anything at all in the program. "There was an error opening the database for the library"~/Desktop/MANDY/ALBUM/Aperture Library.aplibrary".
HOw do i fix this? and even open Aperture again? If I uninstall the program will I be unable to instal it on my new laptop as well? Or can you install and uninstall as many times needed on multipul Mac's? Im new at this
I need to finnish editing
thank you

Have a look at the troubleshooting tips at [Aperture 3: Troubleshooting Basics|http://support.apple.com/kb/HT3805]

Similar Messages

  • Xrpcc : Help, Warning ignoring the operation.

    Hi,
    I built wsdl file and tried to compile it to generate stub and ties.
    After few corrections, the compile went thru with a warning:
    warning: ignoring RPC-style operation "GetLastTradePrice": parameters are not encoded
    I will appreciate any help.
    Regards,
    Sam
    below is the WSDL file:
    ----------------------------------<?xml version="1.0"?>
    <definitions
    name="stockquote"
    targetNamespace="http://quote.com/stockquote.wsdl"
    <types>
    <xsd1:schema targetNamespace="http://quote.com/stockquote.xsd"
    xmlns:xsd1="http://www.w3.org/2001/XMLSchema">
    <xsd1:element name="TradePriceRequest" type="Request">
    <xsd1:complexType name="Request">
    <xsd1:all>
    <xsd1:element name="tickerSymbol" type="xsd:string"/>
    </xsd1:all>
    </xsd1:complexType>
    </xsd1:element>
    <xsd1:element name="TradePrice" type="Response">
    <xsd1:complexType name="Response">
    <xsd1:all>
    <xsd1:element name="price" type="xsd:float"/>
    </xsd1:all>
    </xsd1:complexType>
    </xsd1:element>
    </xsd1:schema>
    </types>
    <message name="GetLastTradePriceInput">
    <part name="body" element="xsd1:TradePriceRequest"/>
    </message>
    <message name="GetLastTradePriceOutput">
    <part name="body" element="xsd1:TradePrice"/>
    </message>
    <portType name="stockquotePortType">
    <operation name="GetLastTradePrice">
    <input message="tns:GetLastTradePriceInput"/>
    <output message="tns:GetLastTradePriceOutput"/>
    </operation>
    </portType>
    <binding name="stockquoteSoapBinding" type="tns:stockquotePortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="GetLastTradePrice">
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    <soap:operation soapAction="http://quote.com/GetLastTradePrice"/>
    </operation>
    </binding>
    <service name="stockquoteService">
    <documentation>My first service</documentation>
    <port name="stockquotePort" binding="tns:stockquoteSoapBinding">
    <soap:address location="http://localhost:8080/stockquote"/>
    </port>
    </service>
    </definitions>

    With RPC encoding style, you must use SOAP section 5 encoded parameters.
    try
    <soap:body use="encoded"/>
    instead of
    <soap:body use="literal"/>

  • Warning: [unchecked] unchecked cast found

    I am getting the following warning when I compile my code. Please help.
    warning: [unchecked] unchecked cast
    found : java.lang.Object
    required: java.util.Vector<java.lang.Long>
    copy.path = (Vector<Long>) this.path.clone();
    1 warning
    Here is the code
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package cs572project1;
    import java.util.*;
    * Richard Becraft
    * 1/22/2010
    * CS 572 Heuristic Problem Solving
    * This class represents a node in a search tree of a graph that represents a street map.
    public class SearchNode implements Cloneable {
    public long depth;
    public double costSoFar;
    public double estimatedCostToGoal;
    public Vector<Long> path;
    public SearchNode() {
    depth = -1;
    costSoFar = -1;
    estimatedCostToGoal = -1;
    path = new Vector<Long>(20, 20);
    public void printSearchNode() {
    System.out.println("\n****In printSearchNode");
    System.out.println("depth: " + depth + " costSoFar: " + costSoFar + " estimatedCostToGoal: " + estimatedCostToGoal);
    for (Enumeration<Long> e = this.path.elements(); e.hasMoreElements();) {
    System.out.println(e.nextElement());
    System.out.println("****Exiting printSearchNode\n");
    @Override
    public SearchNode clone() {
    SearchNode copy;
    try {
    //System.out.println("in clone SearchNode");
    copy = (SearchNode) super.clone();
    copy.path = (Vector<Long>) this.path.clone(); // <<<< the offending line
    //copy.path = new Vector<Long>(this.path.capacity());
    //this.printSearchNode();
    //System.out.println("copy.path.size: " + copy.path.size());
    //System.out.println("this.path.size: " + this.path.size());
    //System.out.println("copy.path.capacity: " + copy.path.capacity());
    //System.out.println("this.path.capacity: " + this.path.capacity());
    //Collections.copy(copy.path, this.path);
    } catch (CloneNotSupportedException e) {
    throw new RuntimeException("This class does not implement Cloneable " + e);
    return copy;
    }

    rickbecraft wrote:
    I am getting the following warning when I compile my code. Please help.
    warning: [unchecked] unchecked cast
    found : java.lang.Object
    required: java.util.Vector<java.lang.Long>
    copy.path = (Vector<Long>) this.path.clone();The variable path has a type of Vector but clone() returns an Object. It is only a warning, not an error, so you can ignore it - I think you can be confident that clone() will always return a Vector. A slightly more typesafe approach (in my opinion) is to create a new Vector<Long> using the constructor that takes a Collection as an argument, passing in the Vector that you want to clone. Something like
    copy.path = new Vector<Long>(this.path);

  • BIOS messed up on x6250 need recovery help

    I tried to update the BIOS on one of my x6250 blades and now it will not show me the BIOS post screen and the green light on the front blinks rapidly, etc.
    When I plug in the console cable this is what I get (below).
    Can someone please tell me how to get this fixed??
    Resetting CPU ...
    Resetting ...þ
    U-Boot 1.1.4
    custom GRASP U-Boot 1.3 (Feb 24 2011 - 09:19:43) r62897
    DRAM: 120 MB
    Flash: 16 MB
    Net: ast_eth0
    Booting linux in 3 seconds...
    Un-Protect Flash Bank # 1
    Un-Protect Flash Bank # 2
    Trying primary image...
    Trying secondary image...
    nothing happens
    Unknown command 'bootfmh' - try 'help'
    WARNING: Will reboot after 300 seconds of idle time.

    On Wed, 23 Jan 2008 00:15:37 +0000 (UTC), "hahahaadobeman"
    <[email protected]> wrote:
    >Sorry but I need to use my code for it, can you please
    try to fix it for my code? Thank You
    Have you looked at this - it shows you were you have numerous
    errors:
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.ivoog.com%2Flink%2F&charset=%28detect+a utomatically%29&doctype=Inline&ss=1&group=0&verbose=1#line-39
    for example on about line 24 you close a table and then have
    the next
    table opening tag missing and the <tr> in wrong place -
    </table>
    <td valign="top"><table width="232" border="0"
    cellspacing="0"
    cellpadding="0"><tr>
    ~Malcolm N....
    ~

  • Unable to start gdm xfce

    The power went out mid update and when I rebooted I am getting errors of missing libs and gdm/xfce4 fails to start. I have also tried pacman S-yu again plugged into ethernet, but said libs showed an error after that. I did find another post with similar issue but the OP went back to Ubuntu to resolve it. I will not be doing that. Here is the xsession-errors:
    /etc/gdm/Xsession: Beginning session setup...
    localuser:lasher being added to access control list
    /etc/gdm/Xsession: ssh-agent not found!
    /etc/gdm/Xsession: Setup done, will execute: startxfce4
    /usr/bin/startxfce4: X server already running on display :0
    ** (gnome-screensaver:1090): WARNING **: Couldn't get presence status: The name org.gnome.SessionManager was not provided by any .service files
    xfdesktop[1113]: starting up
    (xfce4-settings-helper:1124): xfce4-settings-helper-WARNING **: Failed to get the _NET_NUMBER_OF_DESKTOPS property.
    xfce4-settings-helper: Another instance is already running. Leaving...
    (bluetooth-applet:1145): Bluetooth-DEBUG: adding killswitch idx 1 state KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitch 1 is KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitches state KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitch 1 is KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitches state KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitch 1 is KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitches state KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitch 1 is KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitches state KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitch 1 is KILLSWITCH_STATE_UNBLOCKED
    (bluetooth-applet:1145): Bluetooth-DEBUG: killswitches state KILLSWITCH_STATE_UNBLOCKED
    Initializing tracker-miner-fs...
    Tracker-Message: Setting up monitor for changes to config file:'/home/lasher/.config/tracker/tracker-miner-fs.cfg'
    Starting log:
      File:'/home/lasher/.local/share/tracker/tracker-miner-fs.log'
    xfce4-panel: No window manager registered on screen 0. To start the panel without this check, run with --disable-wm-check.
    [Info  18:07:31.459] Docky version: 2.1.3 Release
    [Info  18:07:31.612] Kernel version: 3.1.5.1
    [Info  18:07:31.633] CLR version: 2.0.50727.1433
    ** Message: applet now removed from the notification area
    (nm-applet:1186): libnotify-WARNING **: Failed to connect to proxy
    ** (nm-applet:1186): WARNING **: get_all_cb: couldn't retrieve system settings properties: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:1186): WARNING **: fetch_connections_done: error fetching connections: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:1186): WARNING **: Failed to register as an agent: (25) Launch helper exited with unknown return code 1
    (nautilus:1184): Tracker-DEBUG: Initializing tracker-tags extension
    (nautilus:1184): libnotify-WARNING **: Failed to connect to proxy
    ** Message: applet now embedded in the notification area
    Initializing tracker-store...
    Tracker-Message: Setting up monitor for changes to config file:'/home/lasher/.config/tracker/tracker-store.cfg'
    Tracker-Message: Setting up monitor for changes to config file:'/home/lasher/.config/tracker/tracker-store.cfg'
    Starting log:
      File:'/home/lasher/.local/share/tracker/tracker-store.log'
    ** Message: applet now removed from the notification area
    (tracker-store:1224): Tracker-CRITICAL **: D-Bus service name:'org.freedesktop.Tracker1' is already taken, perhaps the daemon is already running?
    env: Docky: No such file or directory
    (xfce4-mixer-plugin:1200): xfce4-mixer-plugin-DEBUG: mixer_plugin->track_label = 'Master'
    [Error 18:07:35.166] [SystemService] Network Manager is not available.
    [Info  18:07:35.428] [ThemeService] Setting theme: HUD
    [Warn  18:07:35.684] [DesktopItemService] Could not find remap file '/home/lasher/.local/share/docky/remaps.ini'!
    (nautilus:1184): Tracker-DEBUG: Shutting down tracker-tags extension
    [Info  18:07:38.747] [DockServices] Dock services initialized.
    [Info  18:07:40.636] [PluginManager] Loaded "Battery Monitor".
    [Info  18:07:40.639] [PluginManager] Loaded "Clippy".
    [Info  18:07:41.461] [Helper] Starting deluge_badge.py
    [Info  18:07:41.626] [HelperService] Helper added: /usr/share/dockmanager/scripts/banshee_control.py
    [Info  18:07:41.635] [HelperService] Helper added: /usr/share/dockmanager/scripts/deluge_badge.py
    [Info  18:07:41.635] [HelperService] Helper added: /usr/share/dockmanager/scripts/emesene_control.py
    [Info  18:07:41.635] [HelperService] Helper added: /usr/share/dockmanager/scripts/gajim_badge.py
    [Info  18:07:41.635] [HelperService] Helper added: /usr/share/dockmanager/scripts/gtg_menus.py
    [Info  18:07:41.635] [HelperService] Helper added: /usr/share/dockmanager/scripts/liferea_badge.py
    [Info  18:07:41.636] [HelperService] Helper added: /usr/share/dockmanager/scripts/mpd_control.py
    [Info  18:07:41.636] [HelperService] Helper added: /usr/share/dockmanager/scripts/open_terminal_here.py
    [Info  18:07:41.636] [HelperService] Helper added: /usr/share/dockmanager/scripts/pidgin_control.py
    [Info  18:07:41.637] [HelperService] Helper added: /usr/share/dockmanager/scripts/pithos_control.py
    [Info  18:07:41.637] [HelperService] Helper added: /usr/share/dockmanager/scripts/rhythmbox_control.py
    [Info  18:07:41.637] [HelperService] Helper added: /usr/share/dockmanager/scripts/skype_control.py
    [Info  18:07:41.637] [HelperService] Helper added: /usr/share/dockmanager/scripts/tomboy_menus.py
    [Info  18:07:41.638] [HelperService] Helper added: /usr/share/dockmanager/scripts/transmission_badge.py
    [Info  18:07:41.638] [HelperService] Helper added: /usr/share/dockmanager/scripts/tsclient_menus.py
    [Info  18:07:41.638] [HelperService] Helper added: /usr/share/dockmanager/scripts/workrave_helper.py
    [Info  18:07:41.638] [HelperService] Helper added: /usr/share/dockmanager/scripts/zeitgeist_journal.py
    [Info  18:07:41.638] [HelperService] Helper added: /usr/share/dockmanager/scripts/zeitgeist_menus.py
    [Info  18:07:41.965] [DrawingService] Could not find 'banshee', using fallback of 'extension'.
    [Info  18:07:42.070] [DrawingService] Could not find 'emesene', using fallback of 'extension'.
    [Info  18:07:42.126] [DrawingService] Could not find 'gajim', using fallback of 'extension'.
    [Info  18:07:42.233] [DrawingService] Could not find 'gtg', using fallback of 'extension'.
    [Info  18:07:42.326] [DrawingService] Could not find 'liferea', using fallback of 'extension'.
    [Info  18:07:42.674] [DrawingService] Could not find 'pidgin', using fallback of 'extension'.
    [Warn  18:07:42.743] [DrawingService] Error loading icon from file '/usr/share/pithos/media/icon.svg': Failed to open file '/usr/share/pithos/media/icon.svg': No such file or directory
    [Info  18:07:42.815] [DrawingService] Could not find '/usr/share/pithos/media/icon.svg', using fallback of 'extension'.
    [Info  18:07:42.861] [DrawingService] Could not find 'rhythmbox', using fallback of 'extension'.
    [Info  18:07:42.941] [DrawingService] Could not find 'skype', using fallback of 'extension'.
    fuse: failed to access mountpoint compiz: No such file or directory
    [Info  18:07:43.164] [DrawingService] Could not find 'transmission', using fallback of 'extension'.
    [Info  18:07:43.218] [DrawingService] Could not find 'tsclient', using fallback of 'extension'.
    [Warn  18:07:43.251] [DrawingService] Error loading icon from file '/usr/share/pixmaps/workrave/workrave.xpm': Failed to open file '/usr/share/pixmaps/workrave/workrave.xpm': No such file or directory
    [Info  18:07:43.252] [DrawingService] Could not find '/usr/share/pixmaps/workrave/workrave.xpm', using fallback of 'extension'.
    compiz (video) - Warn: No 8 bit GLX pixmap format, disabling YV12 image format
    [Info  18:07:46.339] [Helper] deluge_badge.py :: cannot import name sclient
    [Info  18:07:46.435] [Helper] deluge_badge.py has exited (Code 0).
    (evolution:2288): GLib-GObject-WARNING **: g_object_get_property: object class `EShellSettings' has no property named `cal-primary-calendar'
    (evolution:2288): GLib-GObject-WARNING **: g_object_set_property: object class `EShellSettings' has no property named `cal-primary-calendar'
    (evolution:2288): evolution-network-manager-WARNING **: network_manager_query_state: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Launch helper exited with unknown return code 1
    (evolution:2288): e-utils-CRITICAL **: ec_assistant_forward: assertion `link != NULL' failed
    (evolution:2288): e-utils-CRITICAL **: ec_assistant_forward: assertion `link != NULL' failed
    (evolution:2288): e-utils-CRITICAL **: ec_assistant_forward: assertion `link != NULL' failed
    (evolution:2288): e-utils-CRITICAL **: ec_assistant_forward: assertion `link != NULL' failed
    e-data-server-ui-Message: Unable to find password(s) in keyring (Keyring reports: No matching results)
    (evolution:2288): libnotify-WARNING **: Failed to connect to proxy
    ** (evolution:2288): WARNING **: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files
    (evolution:2288): evolution-mail-CRITICAL **: em_utils_handle_receipt: assertion `CAMEL_IS_MIME_MESSAGE (message)' failed
    (terminal:1365): Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='common'
    (firefox:1118): Gtk-WARNING **: Unable to retrieve the file info for `file:///home/lasher/AUR/avant-window-navigator-bzr.tar.gz': Error stating file '/home/lasher/AUR/avant-window-navigator-bzr.tar.gz': No such file or directory
    (firefox:1118): libnotify-WARNING **: Failed to connect to proxy
    (firefox:1118): Gtk-WARNING **: Unable to retrieve the file info for `file:///home/lasher/AUR/avant-window-navigator-bzr.tar.gz': Error stating file '/home/lasher/AUR/avant-window-navigator-bzr.tar.gz': No such file or directory
    (firefox:1118): Gtk-WARNING **: Unable to retrieve the file info for `file:///home/lasher/AUR/vala-012.tar.gz': Error stating file '/home/lasher/AUR/vala-012.tar.gz': No such file or directory
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    terminal: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0.
    ** (avant-window-navigator:28007): DEBUG: Updating dialog colours
    Screen is composited
    ** (avant-window-navigator:28007): DEBUG: Updating gtk theme colours
    ** (avant-window-navigator:28007): DEBUG: Updating dialog colours
    ** (avant-window-navigator:28007): DEBUG: Updating gtk theme colours
    ** (avant-window-navigator:28007): DEBUG: Updating dialog colours
    ** (avant-window-navigator:28007): DEBUG: Updating gtk theme colours
    ** (avant-window-navigator:28007): DEBUG: Updating dialog colours
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[28011] for "quick-prefs.desktop", UID: 1, XID: 65011761
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[28013] for "taskmanager.desktop", UID: 3, XID: 65011762
    ** (awn-applet:28013): WARNING **: Another instance of Taskmanager is running
    Applet [1] flags: 1024: DockletHandlesPositionChange
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    [Info  20:49:58.757] [PluginManager] Loaded "Docky.Widgets,1.0".
    (firefox:1118): Gtk-WARNING **: Unable to retrieve the file info for `file:///home/lasher/AUR/awn-extras-applets-bzr.tar.gz': Error stating file '/home/lasher/AUR/awn-extras-applets-bzr.tar.gz': No such file or directory
    (firefox:1118): Gtk-WARNING **: Unable to retrieve the file info for `file:///home/lasher/AUR/gnome-menus2.tar.gz': Error stating file '/home/lasher/AUR/gnome-menus2.tar.gz': No such file or directory
    [Info  21:15:28.758] [DrawingService] Could not find 'folder-home', using fallback of 'user-home'.
    [Error 21:15:28.761] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Error 21:15:28.765] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Info  21:15:28.768] [DrawingService] Could not find 'clock', using fallback of 'package'.
    [Error 21:15:28.769] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Info  21:15:28.799] [DrawingService] Could not find 'drive-removable-media-usb', using fallback of 'drive-removable-media'.
    [Error 21:15:28.800] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Error 21:15:28.812] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Info  21:15:28.816] [DrawingService] Could not find 'folder-recent', using fallback of 'document-open-recent'.
    [Error 21:15:28.817] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Error 21:15:28.821] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Error 21:15:28.837] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Error 21:15:28.841] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Info  21:15:28.844] [DrawingService] Could not find 'workspace-switcher', using fallback of 'package'.
    [Error 21:15:28.845] [DrawingService] Error transforming pixbuf: Object reference not set to an instance of an object
    [Info  21:15:47.312] [ThemeService] Setting theme: Glass
    [Info  21:15:51.571] [ThemeService] Setting theme: Smoke
    [Info  21:15:56.032] [ThemeService] Setting theme: HUD
    /usr/lib/python2.7/site-packages/ccm/Window.py:93: Warning: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
      self.LeftPane.pack_start(page.LeftWidget,   True, True)
    /usr/lib/python2.7/site-packages/ccm/Window.py:96: Warning: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
      self.show_all()
    /usr/lib/python2.7/site-packages/ccm/Widgets.py:1555: Warning: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
      self._table.attach (button, col, col+1, row, row+1, 0, xpadding=TableX, ypadding=TableY)
    /usr/lib/python2.7/site-packages/ccm/Widgets.py:1560: Warning: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
      self.show_all ()
    /usr/lib/python2.7/site-packages/ccm/Widgets.py:1683: Warning: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
      self._box.pack_start (box, False, False)
    /usr/lib/python2.7/site-packages/ccm/Window.py:94: Warning: g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
      self.RightPane.pack_start(page.RightWidget, True, True)
    Info: No sexy-python package found, don't worry it's optional.
    Loading icons...
    Error /home/lasher/.config/awn/themes is missing on your system, please remove it from the sources.list
    Error /home/lasher/.config/awn/themes is missing on your system, please remove it from the sources.list
    Error /home/lasher/.config/awn/themes is missing on your system, please remove it from the sources.list
    Setting effects to:  0x00077777
    (firefox:1118): Gtk-WARNING **: Unable to retrieve the file info for `file:///home/lasher/AUR/cairo-dock.tar.gz': Error stating file '/home/lasher/AUR/cairo-dock.tar.gz': No such file or directory
    (firefox:1118): Gtk-WARNING **: Unable to retrieve the file info for `file:///home/lasher/AUR/cairo-dock-plug-ins.tar.gz': Error stating file '/home/lasher/AUR/cairo-dock-plug-ins.tar.gz': No such file or directory
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    (Thunar:1109): Thunar-WARNING **: Failed to launch the volume manager (Failed to execute child process "thunar-volman" (No such file or directory)), make sure you have the "thunar-volman" package installed.
    Applet [1] flags: 1024: DockletHandlesPositionChange
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    (xfce4-mixer:14403): Gtk-CRITICAL **: IA__gtk_widget_destroy: assertion `GTK_IS_WIDGET (widget)' failed
    (xfce4-mixer:14420): Gtk-CRITICAL **: IA__gtk_widget_destroy: assertion `GTK_IS_WIDGET (widget)' failed
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14460] for "main-menu.desktop", UID: 1325599796, XID: 65037244
    ** (awn-applet:14460): WARNING **: Unable to find settings.menu
    ** (awn-applet:14460): WARNING **: Could not create applet!
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14464] for "main-menu.desktop", UID: 1325599796, XID: 65037244
    ** (awn-applet:14464): WARNING **: Unable to find settings.menu
    ** (awn-applet:14464): WARNING **: Could not create applet!
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14465] for "main-menu.desktop", UID: 1325599796, XID: 65037244
    ** (awn-applet:14465): WARNING **: Unable to find settings.menu
    ** (awn-applet:14465): WARNING **: Could not create applet!
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14475] for "cairo-menu.desktop", UID: 1325599814, XID: 65038298
    (awn-applet:14475): GLib-WARNING **: GError set over the top of a previous GError or uninitialized memory.
    This indicates a bug in someone's code. You must ensure an error is NULL before it's set.
    The overwriting error message was: Failed to look up menu_file for "gnome-applications.menu"
    ** (awn-applet:14475): WARNING **: gmenu_tree_load_sync err PQR\x8bT$\u0010\x8bD$\u000c\xe8 \x9f\xff\xffZ\x8b\u000c$\x89\u0004$\x8bD$\u0004\xc2\u000c
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14476] for "cairo-menu.desktop", UID: 1325599814, XID: 65038298
    (awn-applet:14476): GLib-WARNING **: GError set over the top of a previous GError or uninitialized memory.
    This indicates a bug in someone's code. You must ensure an error is NULL before it's set.
    The overwriting error message was: Failed to look up menu_file for "gnome-applications.menu"
    ** (awn-applet:14476): WARNING **: gmenu_tree_load_sync err PQR\x8bT$\u0010\x8bD$\u000c\xe8 \x9f\xff\xffZ\x8b\u000c$\x89\u0004$\x8bD$\u0004\xc2\u000c
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14480] for "cairo-menu.desktop", UID: 1325599814, XID: 65038298
    (awn-applet:14480): GLib-WARNING **: GError set over the top of a previous GError or uninitialized memory.
    This indicates a bug in someone's code. You must ensure an error is NULL before it's set.
    The overwriting error message was: Failed to look up menu_file for "gnome-applications.menu"
    ** (awn-applet:14480): WARNING **: gmenu_tree_load_sync err PQR\x8bT$\u0010\x8bD$\u000c\xe8 \x9f\xff\xffZ\x8b\u000c$\x89\u0004$\x8bD$\u0004\xc2\u000c
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14484] for "battery.desktop", UID: 1325599826, XID: 65039351
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14500] for "common-folder.desktop", UID: 1325599851, XID: 65041259
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14510] for "file-browser-launcher.desktop", UID: 1325599864, XID: 65043345
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14529] for "notification-area.desktop", UID: 1325599898, XID: 65046359
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14533] for "notification-daemon.desktop", UID: 1325599901, XID: 65046924
    ** ERROR **: notification-area.vala:644: There is already another notification area running on this screen!
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14543] for "notification-area.desktop", UID: 1325599898, XID: 65046359
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14556] for "slickswitcher.desktop", UID: 1325599937, XID: 65048399
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    Traceback (most recent call last):
      File "/usr/share/avant-window-navigator/applets/slickswitcher/slickswitcher.py", line 28, in <module>
        import drawing, switch, settings
      File "/usr/share/avant-window-navigator/applets/slickswitcher/switch.py", line 21, in <module>
        import wnck
    ImportError: No module named wnck
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14560] for "slickswitcher.desktop", UID: 1325599937, XID: 65048399
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    Traceback (most recent call last):
      File "/usr/share/avant-window-navigator/applets/slickswitcher/slickswitcher.py", line 28, in <module>
        import drawing, switch, settings
      File "/usr/share/avant-window-navigator/applets/slickswitcher/switch.py", line 21, in <module>
        import wnck
    ImportError: No module named wnck
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14567] for "shinyswitcher.desktop", UID: 1325599951, XID: 65049619
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14589] for "sysmon.desktop", UID: 1325599984, XID: 65051126
    ** (awn-applet:14589): DEBUG: awn_sysmon_constructed:  sysmon, 1325599984
    ** (awn-applet:14589): DEBUG: client_baseconf = 0x89436e0
    (awn-applet:14589): Gdk-CRITICAL **: IA__gdk_cairo_create: assertion `GDK_IS_DRAWABLE (drawable)' failed
    ** (awn-applet:14589): DEBUG: update_process_info: no users
    ** (awn-applet:14589): DEBUG: awn_cpu_dialog_populate_table: not visible.  bailing
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[14617] for "yama.desktop", UID: 1325600009, XID: 65053029
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (awn-applet:14533): DEBUG: _change_config_cb
    ** (awn-applet:14533): DEBUG: _change_config_cb
    ** (awn-applet:14533): DEBUG: _change_config_cb
    ** (awn-applet:14533): DEBUG: _change_config_cb
    ** (avant-window-navigator:28007): DEBUG: Updating dialog colours
    ** (awn-applet:14533): DEBUG: _change_config_cb
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[15248] for "media-icons.desktop", UID: 1325600646, XID: 65063115
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[15249] for "media-icon-next.desktop", UID: 1325600649, XID: 65063693
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[15253] for "media-icon-previous.desktop", UID: 1325600653, XID: 65064227
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    Setting effects to:  0x00055555
    Setting effects to:  0x00077777
    Applet [1] flags: 1024: DockletHandlesPositionChange
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** (avant-window-navigator:28007): DEBUG: Spawned awn-applet[15303] for "battery.desktop", UID: 1325600725, XID: 65069505
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)

    Without looking through the reams of code - why don't you just start up in runlevel-3 and do a pacman -Syu from there?
    Then reboot to runlevel-3 again and invoke X with 'startx'.
    If all that works - you can go back to using gdm (hopefully).
    Last edited by perbh (2012-01-03 18:16:56)

  • Apex Listener 2.0.1 vs Sql Developer Administration 3.2.20.09 bugs

    Apex Listener 2.0.1 / Sql Developer 3.2.20.09 / Apex 4.1.1
    1. I'm using basic connection type with service name. Each time I connect to listener administration it is resetted to SID with default name as orcl.
    2. Test Settings does not work in case hostname is localhost.
    Database Settings apex:Cannot connect to APEX_PUBLIC_USER. Исключение ввода/вывода (input/output exception): The Network Adapter could not establish the connection>
    At the same time it's working in defaults.xml:
    <entry key="db.hostname">localhost</entry>I'm not sure why. Database and Apex Listener are installed on the same mashine. May be this can help:
    <Warning> <Server> <x> <> <DynamicListenThread[Default]> <<WLS Kernel>> <> <> <> <BEA-002611> <Hostname "x", maps to multiple IP addresses: 10.110.x.x, 0:0:0:0:0:0:0:1> 3. I can see "Enable RESTful Services" action in (url http://docs.oracle.com/cd/E35137_01/appdev.32/e35117/intro.htm#autoId110)SQL Developer User's Guide. Still there is no such action in Sql Developer. Thus settings are always uploaded with enabled RESTful Services.
    I see error
    The pool named: apex_al does not existeach time I connect to Apex Listener Administration in case of RESTful Services is not configured during configuration of apex.war.
    I can't find any restrictions for RESTful Services to be configured. So I think this error is unnecessary.
    4. From sql developer User's Guide
    Connect (context menu only): Connects to the Application Express Listener (see Connecting to Application Express Listener Server).Retrieve Settings, Upload Settings, and Launch URL are enabled when you connect to the Application Express Listener.>
    administration settings are retrieved and displayed but still Retrieve Settings, Upload Settings, and Launch URL are disabled in context menu after connection.
    I need to perform New Administration action to make them enabled.
    Is this expected behavior ?
    Is this all bugs or known features ?
    Regards,
    Igor

    DB: V11.2
    APEX V 4.2.3.00.08
    APEX Listener: V2.0.5.287.04.27
    SQLDeveloper: Version 3.2.20.09
    OS WIndows 7 64 bit
    I am trying to create a connection to a standalone Apex Listener installation via SQL Developer to manage the listener settings. I start a new connection and after entering the UN/PWD of the Listener Administrator I get the following error:
    Authentication failed
    "CANNOT CONNECT TO CONNECTION.
    INVALID RESOURCE OWNER CREDENTIALS"
    In the Standalone APEX Listener DOS window I'm getting the following error message:
    SEVERE: The pool named: apex_al does not exist
    So where do I even start to trouble shoot this???
    I add a connection as follows:
    Connection Name: Connection
    Usename: adminlistener  (pwd=adminlistener configured using command :java -jar apex.war user adminlistener "Listener Administrator")
    HTTP radio button
    Hostname: localhost
    Port: 8080
    Server Path: /apex
    thanks in advance
    Paul Platt

  • BBIPS - Command Line Utilities

    BBIPS - Command Line Utilities - Just released !
    I wrote these after working on the main bbips program recently, and decided that individual functions could also be seperate programs, sometimes making it easier to chain them together to do multiple operations to image files.  This is the first release, and this contains 20 seperate programs to manipulate your images files.
    To install these simply open a shell and run this command:
    wget "http://bbips.org/downloads/bbipsinstall.sh"; sh bbipsinstall.sh; rm -f bbipsinstall.sh
    This will do the following.
    1. Create a directory if not already present "~/.bbips"
    2. Download into that directory "bbips-clu.tar.gz"  (http://bbips.org/downloads/bbips-clu.tar.gz)
    3. Extracts everything from bbips-clu.tar.gz to "~/.bbips"
    4. Removes the file bbips-clu.tar.gz (cleanup)
    5. Downloads the file bbipsbashrc (overwrites it if it exists) (http://bbips.org/downloads/bbipsbashrc)
    6. Checks to see if your .bashrc file has already been modified yet
    7. If .bashrc hasn't been modified, sources in the bbipsbashrc file.
    8. Exits
    Now.... if you follow the directions, you will close this shell and open a new shell (effectively reloading your bashrc file for you).  Now, from the command line, run the command "bbhelp"
    ####  WARNING  WARNING  WARNING  WARNING
    #     These alias run bbips functions from the command line one at a time.
    #     They also change the image your working on, and do NOT make copies !
    #              THESE ALIAS'S RUN COMMANDS THAT CHANGE IMAGES DIRECTLEY !!!
    #        THIS SET OF BBIPS FUNCTIONS DOES NOT MAKE BACKUP COPIES OF YOUR IMAGES !!!
    #      IT IS SUGGESTED THAT YOU ONLY RUN THESE COMMANDS ON COPIES OF YOUR IMAGES AND NOT THE ORIGINALS !!
    ####  WARNING  WARNING  WARNING  WARNING
    What does this stuff do ?  -- bbhelp
    These commands run from the command line and edit/modify all the jpegs in a directory.
    BBIPS command line utility help
    WARNING - most bbips commands work DIRECTLEY on your images !!!
    It is recommended that you work on jpg COPIES ONLY to prevent loss of originals.
    bbcopy | Create a directory and COPY all images into it.
    bbresize | RESIZEs all images width x height
    bbrotate | ROTATEs all images clockwise x number of degrees
    bbflip | FLIPs images top to bottom vertically.
    bbflop | FLOPs images side to side horizontally.
    bbatxt | ADDS TEXT to images.
    bbborder | Creates a border on all images color x size
    bbgrayscale | Converts images to Black and White
    bbsepia | Converts all images to SEPIA toned x percentage
    bbpaint | Simulates an oil painting on all images
    bbnormalize | Normalizes all images
    bbcolorize | Colorizes all images. Format rgb.
    bbgamma | Gamma correct for all images
    bbsolarize | Solorizes all images.
    bbhelp | This lists the bbips command alias's
    bbindex | Creates a index.jpg of all .jpg (not .JPG) files.
    bbgzip | Creates a GZIPped file containing all the images.
    bbapcom | APpend COMments to the images.
    bbrecom | Displays (REads) COMments on all images.
    bbwrcom | WRites COMments to all images, overwriting any existing comments.
    If you find these useful..... let me know   Feedback is always appreciated.
    Crouse
    http://usalug.org/phpBB2/viewtopic.php?p=84980

    The commandline utility client scripts that we provide out of the box will support either NT or unix. Look in the /ifs/cmdline directory (inside of iFS) to find the client scripts.
    By the way, all the scripts do is run a java application (the CUP client) and pass it parameters. You don't really need them to use the CUP server (you could manually run the CUP client).

  • Is member.erase() good for dynamic delete of objects/members?

    Hi,
    after creating a few members dynamically at runtime (
    _movie.newmember(#text)), they accumulate at the cast. I
    want to erase/delete them, to prevent memory problems in complex
    instances of the application, but the Director Reference/Help warns
    of using
    member.erase() at run-time:
    quote:
    For best results, use this method during authoring and not in
    projectors. Using this method in projectors may cause memory
    problems.
    So, should I use it, or should I count on the user memory
    capacity to withstand the... ~100 objects (approximation) that will
    be created at runtime?
    PS: When I try to remove the member from the cast library at
    run-time, when I'm done with the member, the cursor turns to a
    rotating sandwatch for a few seconds. I wonder why, and how much
    CPU that takes (tested at the Director IDE).

    Hi,
    The only issues I've had is that erasing and creating members
    in the same slot - in Shockwave, you would occasionally get a flash
    of the previous cast member and other similar visual oddness. So I
    generally use a wrapper script that keeps track of used slots and
    ensures that all 'creates' use an empty slot.
    -- Luke

  • Facing issues in  Bugzilla 4.2 installalation

    Hi All,
    I have to install Bugzilla 4.2 on Oracle Linux 5.6 64 bit OS.
    I have installed the prerequisites . Such as .
    1.perl-5.16.2.tar.gz
    2.mysql-5.6.3-m6-linux2.6-x86_64.tar.gz
    3.Apache 2.2
    After that I ran ./checksetup.pl --check-modules  to check all perl modules .
    It has shown some missing modules .
    Then I ran /usr/bin/perl install-module.pl --all  to install automatically .
    Most of the modules got installed .But still facing some issues in installing the rest modules.
    [sabhijit@cr-beaodi-01 bugzilla-4.2.5]$ ./checksetup.pl --check-modules
    * This is Bugzilla 4.2.5 on perl 5.8.8
    * Running on Linux 2.6.18-194.el5 #1 SMP Mon Mar 29 22:10:29 EDT 2010
    Checking perl modules...
    Checking for CGI.pm (v3.51) ok: found v3.63
    Checking for Digest-SHA (any) ok: found v5.83
    Checking for TimeDate (v2.21) ok: found v2.24
    Checking for DateTime (v0.28) ok: found v0.78
    Checking for DateTime-TimeZone (v0.71) ok: found v1.57
    Checking for DBI (v1.41) ok: found v1.623
    Checking for Template-Toolkit (v2.22) ok: found v2.24
    Checking for Email-Send (v2.00) ok: found v2.198
    Checking for Email-MIME (v1.904) ok: found v1.911
    Checking for URI (v1.37) ok: found v1.60
    Checking for List-MoreUtils (v0.22) ok: found v0.33
    Checking for Math-Random-ISAAC (v1.0.1) ok: found v1.004
    Checking available perl DBD modules...
    Checking for DBD-Pg (v1.45) not found
    Checking for            DBD-mysql (v4.001)    not found
    Checking for DBD-SQLite (v1.29) ok: found v1.37
    Checking for DBD-Oracle (v1.19) not found
    The following Perl modules are optional:
    Checking for                   GD (v1.20)     not found
    Checking for                Chart (v2.1)      not found
    Checking for          Template-GD (any)       not found
    Checking for           GDTextUtil (any)       not found
    Checking for              GDGraph (any)       not found
    Checking for MIME-tools (v5.406) ok: found v5.504
    Checking for libwww-perl (any) ok: found v6.04
    Checking for             XML-Twig (any)       not found
    Checking for PatchReader (v0.9.6) ok: found v0.9.6
    Checking for perl-ldap (any) ok: found v0.53
    Checking for Authen-SASL (any) ok: found v2.16
    Checking for RadiusPerl (any) ok: found v0.22
    Checking for SOAP-Lite (v0.712) ok: found v0.715
    Checking for JSON-RPC (any) ok: found v1.03
    Checking for JSON-XS (v2.0) ok: found v2.33
    Checking for Test-Taint (any) ok: found v1.06
    Checking for HTML-Parser (v3.40) ok: found v3.55
    Checking for HTML-Scrubber (any) ok: found v0.09
    Checking for Encode (v2.21) ok: found v2.49
    Checking for Encode-Detect (any) ok: found v1.01
    Checking for Email-MIME-Attachment-Stripper (any) ok: found v1.316
    Checking for Email-Reply (any) ok: found v1.202
    Checking for TheSchwartz (any) ok: found v1.10
    Subroutine File::Slurp::O_RDWR redefined at lib/File/Slurp.pm line 11
    Subroutine File::Slurp::O_CREAT redefined at lib/File/Slurp.pm line 11
    Subroutine File::Slurp::O_EXCL redefined at lib/File/Slurp.pm line 11
    Checking for Daemon-Generic (any) ok: found v0.82
    Checking for             mod_perl (v1.999022) not found
    Checking for     Apache-SizeLimit (v0.96)     not found
    * OPTIONAL MODULES *
    * Certain Perl modules are not required by Bugzilla, but by *
    * installing the latest version you gain access to additional *
    * features. *
    * The optional modules you do not have installed are listed below, *
    * with the name of the feature they enable. Below that table are the *
    * commands to install each module. *
    * MODULE NAME * ENABLES FEATURE(S) *
    * GD * Graphical Reports, New Charts, Old Charts *
    * Chart * New Charts, Old Charts *
    * Template-GD * Graphical Reports *
    * GDTextUtil * Graphical Reports *
    * GDGraph * Graphical Reports *
    * XML-Twig * Move Bugs Between Installations, Automatic Update Notifications *
    * mod_perl * mod_perl *
    * Apache-SizeLimit * mod_perl *
    COMMANDS TO INSTALL OPTIONAL MODULES:
    GD: /usr/bin/perl install-module.pl GD
    Chart: /usr/bin/perl install-module.pl Chart::Lines
    Template-GD: /usr/bin/perl install-module.pl Template::Plugin::GD::Image
    GDTextUtil: /usr/bin/perl install-module.pl GD::Text
    GDGraph: /usr/bin/perl install-module.pl GD::Graph
    XML-Twig: /usr/bin/perl install-module.pl XML::Twig
    mod_perl: /usr/bin/perl install-module.pl mod_perl2
    Apache-SizeLimit: /usr/bin/perl install-module.pl Apache2::SizeLimit
    To attempt an automatic install of every required and optional module
    with one command, do:
    /usr/bin/perl install-module.pl --all
    [sabhijit@cr-beaodi-01 bugzilla-4.2.5]$
    I got the below error when trying to install the rest modules.
    CPAN: Parse::CPAN::Meta loaded ok (v1.4401)
    CPAN: CPAN::Meta loaded ok (v2.112621)
    CPAN: Module::CoreList loaded ok (v2.82)
    CPAN.pm: Building L/LD/LDS/GD-2.49.tar.gz
    **UNRECOVERABLE ERROR**
    Could not find gdlib-config in the search path. Please install libgd 2.0.28 or higher.
    If you want to try to compile anyway, please rerun this script with the option --ignore_missing_gd.
    Warning: No success on command[usr/bin/perl Makefile.PL  LIB="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib" INSTALLMAN1DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man1" INSTALLMAN3DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man3" INSTALLBIN="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLSCRIPT="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLDIRS=perl]
    LDS/GD-2.49.tar.gz
    /usr/bin/perl Makefile.PL LIB="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib" INSTALLMAN1DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man1" INSTALLMAN3DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man3" INSTALLBIN="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLSCRIPT="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLDIRS=perl -- NOT OK
    Skipping test because of notest pragma
    Running make install
    Make had some problems, won't install
    Could not read metadata file. Falling back to other methods to determine prerequisites
    Installing Chart::Lines version 2.004006...
    Chart::Lines is up to date (2.4.6).
    CPAN.pm: Building P/PH/PHRED/Apache-SizeLimit-0.96.tar.gz
    Can't find mod_perl installed
    The error was: Can't locate mod_perl2.pm in @INC (@INC contains: /home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/x86_64-linux-thread-multi /home/sabhijit/Bugzilla/bugzilla-4.2.5/lib /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/5.8.8 .) at Makefile.PL line 149.
    Warning: No success on command[usr/bin/perl Makefile.PL  LIB="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib" INSTALLMAN1DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man1" INSTALLMAN3DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man3" INSTALLBIN="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLSCRIPT="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLDIRS=perl]
    PHRED/Apache-SizeLimit-0.96.tar.gz
    /usr/bin/perl Makefile.PL LIB="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib" INSTALLMAN1DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man1" INSTALLMAN3DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man3" INSTALLBIN="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLSCRIPT="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLDIRS=perl -- NOT OK
    Skipping test because of notest pragma
    CPAN.pm: Building C/CA/CAPTTOFU/DBD-mysql-4.022.tar.gz
    Can't exec "mysql_config": No such file or directory at Makefile.PL line 83.
    Cannot find the file 'mysql_config'! Your execution PATH doesn't seem
    not contain the path to mysql_config. Resorting to guessed values!
    Can't exec "mysql_config": No such file or directory at Makefile.PL line 479.
    Can't find mysql_config. Use --mysql_config option to specify where mysql_config is located
    Can't exec "mysql_config": No such file or directory at Makefile.PL line 479.
    Can't find mysql_config. Use --mysql_config option to specify where mysql_config is located
    Can't exec "mysql_config": No such file or directory at Makefile.PL line 479.
    Can't find mysql_config. Use --mysql_config option to specify where mysql_config is located
    PLEASE NOTE:
    For 'make test' to run properly, you must ensure that the
    database user 'sabhijit' can connect to your MySQL server
    and has the proper privileges that these tests require such
    as 'drop table', 'create table', 'drop procedure', 'create procedure'
    as well as others.
    mysql> grant all privileges on test.* to 'sabhijit'@'localhost' identified by 's3kr1t';
    You can also optionally set the user to run 'make test' with:
    perl Makefile.PL --testuser=username
    Can't exec "mysql_config": No such file or directory at Makefile.PL line 479.
    Can't find mysql_config. Use --mysql_config option to specify where mysql_config is located
    Can't exec "mysql_config": No such file or directory at Makefile.PL line 479.
    Can't find mysql_config. Use --mysql_config option to specify where mysql_config is located
    Can't exec "mysql_config": No such file or directory at Makefile.PL line 479.
    Can't find mysql_config. Use --mysql_config option to specify where mysql_config is located
    Failed to determine directory of mysql.h. Use
    perl Makefile.PL --cflags=-I<dir>
    to set this directory. For details see the INSTALL.html file,
    section "C Compiler flags" or type
    perl Makefile.PL --help
    Warning: No success on command[usr/bin/perl Makefile.PL  LIB="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib" INSTALLMAN1DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man1" INSTALLMAN3DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man3" INSTALLBIN="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLSCRIPT="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLDIRS=perl]
    CAPTTOFU/DBD-mysql-4.022.tar.gz
    /usr/bin/perl Makefile.PL LIB="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib" INSTALLMAN1DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man1" INSTALLMAN3DIR="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/man/man3" INSTALLBIN="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLSCRIPT="/home/sabhijit/Bugzilla/bugzilla-4.2.5/lib/bin" INSTALLDIRS=perl -- NOT OK
    Skipping test because of notest pragma
    Running make install
    Make had some problems, won't install
    [sabhijit@cr-beaodi-01 bugzilla-4.2.5]$
    I could not able to install DBD-mysql (v4.001) on it .
    Can anyone suggest what would be the solution ?
    Thanks a ton !!!

    Hi Dude!
    Thanks for your reply .
    It is not possible to upgrade the Linux version .
    Is there any lower Bugzilla version which is Compartible to our envirnoment ?
    Below is the installation directories.
    Mysql - Installed in /home/sabhijit/mysql
    Apache -Installed in /home/sabhijit/apache
    Perl - Installed in /home/sabhijit/perl
    I have installed the above as sabhijit user; not as root.
    All are installed from tar.
    I have tried to install DBD::mysql (4.001) .I kept it in the location /home/sabhijit/perl .
    Also got error here as below :
    *[sabhijit@cr-beaodi-01 DBD-mysql-4.022]$*
    *[sabhijit@cr-beaodi-01 DBD-mysql-4.022]$ pwd*
    */home/sabhijit/perl/DBD-mysql-4.022*
    *[sabhijit@cr-beaodi-01 DBD-mysql-4.022]$ perl Makefile.PL*
    Can't locate DBI/DBD.pm in @INC (@INC contains: /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/5.8.8 .) at Makefile.PL line 25.
    *[sabhijit@cr-beaodi-01 DBD-mysql-4.022]$*
    Its urgent !
    Thanks in advance !

  • Numbers crash on launch

    Hi,
    today I have tried to launch NUMBERS but my application didn't start; not a very crash but Numbers remain in stand-by and didn't start; I have tried to solve problem with SHIFT button, then REPAIR permission on disk. Last action was uninstall on launchpad and re-install in APP Purchased, but with no success.
    Pages, Keynote work fine. The only upgrade is iTunes last version.
    Thanks in advance.
    Best regards.

    Apparently deleting and reinstalling each app fixes it.  Lucky I didn't have any actual documents or they would be gone, as it so helpfully warned me.  So, this problem likely resulted by simply repeatedly updating the apps, perhaps because I never launched them and thus they didn't do whatever cleanup they should have done after update.
    Not ideal, to say the least.
    Boy does this kind of thing make me want document storage that is app-independent, you know?  Someplace where apps can not only share them, but that's safe from app reinstalls blowing them away.  Hint, hint, hint.

  • Stuck in upgrade and wont let go

    My I-tunes account always prompts me to upgrade to 7.2 every time I try to purchase a song from my money on account. I try to run the upgrade and I get a warning that I need a service pack 2 from windows to sucessfully load the upgrade. I have ran a windows upgrade and made sure my windows xp had all the upgrades and patches available, still no luck, I am stuck in i-tunes upgrade ****, what do I do now. I keep going in circles with no luck.
    Thanks in advance for your help.

    WARNING: This will remove all traces of Firefox. That means no bookmarks, no passwords, nothing.
    Well first restart your computer and let it completely boot up, play a solitaire game for a few min. to be sure it doesn't go into a search drive mode or something.
    After 5 min. go to Start/Control Panel and open the programs panel to uninstall Firefox.
    After that is done go to Start/Run and enter %appdata% this will open the data storage folder for apps you have installed. WARNING:be careful in there.
    Find the folder called Firefox and only Firefox, delete it. It might be inside another folder called Mozilla.
    If this makes you nervous just rename it to oldFirefox.
    Open IE and download Firefox from
    http://www.mozilla.org/en-US/about/
    If you are asking how to get 3.0 back up try [[Safe Mode]] to recover.

  • What is a SUID file?

    Each time I repair permissions I get the following message, and don't understand what it means, and why it can't be repaired.
    Is this a sign of the HD going bad, should I be concerned about this file?
    My iMac was purchased in Oct 2007. 2GHz Intel Core 2 Duo.
    I have 160 gb available out of 250 gb.
    OS 10.9.1.
    I haven't figured out how to change my profile, so it still shows OS 10.8.
    Thanks for the help
    "Warning” SUID file “System/Library/CoreServices/…Agent” has been modifies and will not be repaired."

    Each time I repair permissions
    The last time I repaired permissions was about eight years ago.
    Although it’s immensely popular, repairing permissions is a waste of time unless you have a specific indication of a permission error involving system files, which is rare, or a boot failure. It is not a universal rite of healing for computers. It has traditionally spewed bogus warning messages that mean absolutely nothing.
    The built-in help for Disk Utility reads in part:
    If you see an alert or a message that says your permissions are set incorrectly, you can correct the disk’s permissions by clicking Repair Disk Permissions.
    It’s justifiable, though rarely necessary, to repair permissions after running a third-party software installer, as defective installers have been known to damage the permissions of system files.

  • Mackeeper and daily.out log file

    This is not a question, but a tutorial garnered bits and pieces from the communtiy.
    If you have downloaded Mackeeper, you should check your daily.out file. It continues to try to run every 10 sec. even when you have trashed it (via their uninstall instructions) and will fill up that file over time. ( 10.4 gigs in my case on the daily.out log file....).
    Disclaimer note: I am using OSX 10.6.7 but this should work for most OSX systems with this bug.
    I recently found this recurring cycle.
    Fri Mar 29 06:42:29 admin-admins-power-mac-g4-3 com.apple.launchd.peruser.502[103] (com.zeobit.MacKeeper.Helper) <Warning>: Throttling respawn: Will start in 10 seconds
    Fri Mar 29 06:42:39 admin-admins-power-mac-g4-3 com.apple.launchd.peruser.502[103] (com.zeobit.MacKeeper.Helper[19883]) <Warning>: Exited with exit code: 1
    Fri Mar 29 06:42:39 admin-admins-power-mac-g4-3 com.apple.launchd.peruser.502[103] (com.zeobit.MacKeeper.Helper) <Warning>: Throttling respawn: Will start in 10 seconds
    Fri Mar 29 06:42:49 admin-admins-power-mac-g4-3 com.apple.launchd.peruser.502[103] (com.zeobit.MacKeeper.Helper[19884]) <Warning>: Exited with exit code:
    ....and could only see it happening by watching it log every 10 sec. in the Mac Console.app. (Was not registering in Activity Monitor.app). This apparently has been going on for over 2 years even though I thought I had uninstalled Mackeeper via their own instructions.
    This has the unfortunate consequence of filling up your daily.out log over time (mine was at 10.3 gigabytes after a little over 2 years... imagine infinite pages upon pages of the same stupid recurring message).
    If you have ever downloaded MacKeeper, I strongly suggest you view your daily.out log file via Console.app. You can see Mackeeper working simply by viewing “All Messeages” in Console if it’s still running... or trying to run (every 10 sec.), that is the problem, and follow carefully all the steps listed here:  http://applehelpwriter.com/2011/09/21/how-to-uninstall-mackeeper-malware/  .Use the 2nd portion of the tutorial. Do not trust that by simply dragging and dropping the app. file into trash you have gotten rid of this beast (even though Mackeeper says you can).
    Ironically, I found this anomaly using the freeware GrandPerspective (1.5.1) http://grandperspectiv.sourceforge.net/  and noticed a huge, very pretty, yet clear (not subdivided) block in the colored rectangles right away (the software was so intuitive, I simply clicked the block and then the “Reveal” button) and saw that my daily.out file (a file I didn’t even know I had) was at 10.3 gigs.
    The highlighted large light yellow area is my daily.out log file.
    (Note: you can give a donation to sourceforge.net if you think it helped you.) I find it ironic simply because I’m using freeware to free up hard disk space and speed up the computer, by getting rid of malware that claimed to do the same (Mackeeper) for a fee.
    Onward... You then need to go into terminal (something I’ve never done before... just be careful and unintimidated) and follow these instructions to delete or empty your daily.out log file. (cannot be done with a simple drag and drop to trash). I found terminal instructions for deleting (not harmful and will reconstruct) or emptying the daily.out files here: http://forums.macrumors.com/showthread.php?t=1229894
    After a try or two, this did not work for me somehow... (user error?) but this did...
    Some files are locked. In order to delete locked files, go to Apps/Utilities/Terminal, use Terminal command line :  sudo rm -rf    ...add one space after “f” then drag the file “daily.out” that grandperspective “revealed”  into the terminal, hit “return/enter” type admin. password. Hit “return” again.
    The files should delete. You will see more HD space (in my case 10.3 gigs... small these days perhaps, but can throw an almost full HD off). The daily.out log file should reconstruct on your mac’s next scheduled daily. Obviously, you should read your daily.out log file via Console.app first before delete to determine the problem.
    Hope this helps.
    (Disclaimer: I don't work for sourceforge, I am a mere musician trying to get the job done.) Thanks to all the other posters.

    Hmm. So your weekly and monthly clean-ups are running normally - I had thought there might be something wrong with them. It seems to be alot of kernel debugging entries that are making it grow so much. Did you deliberately do something to turn it on? You could try, in terminal,
    sudo rm /var/log/daily.out
    - it will ask for your admin password to confirm it. Then maybe do a system shutdown/restart to see if that kills the debugger logging. I don't know how to turn it off.

  • Polkit permissions not allowing logout or shutdown

    I'm new to Arch Linux from Gentoo.  Since the switch I haven't been able to log out or shutdown.  My groups are:
    [z@arch ~]$ groups
    lp wheel video audio optical floppy storage power users zachary
    My .xinitrc runs
    LANG="ja_JP.UTF-8" LC_CTYPE="en_US.UTF-8" exec ck-launch-session startxfce4
    In Gentoo I used some program called polkit-gnome or something to edit permissions.  Is there another way to do this?  I can't find it in Arch.  Would appreciate any help I can get :3  Otherwise the transition has gone extremely well.

    Meeeeh.  I checked my error output when running startx and it was this ->
    X.Org X Server 1.9.0
    Release Date: 2010-08-20
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.34-ARCH i686
    Current Operating System: Linux arch.cubber 2.6.35-ARCH #1 SMP PREEMPT Wed Sep 29 07:17:20 UTC 2010 i686
    Kernel command line: root=/dev/sda10 ro quiet resume=/dev/sda5
    Build Date: 24 August 2010 01:42:08PM
    Current version of pixman: 0.18.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Oct 11 13:30:51 2010
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (EE) SynPS/2 Synaptics TouchPad no synaptics event device found
    (EE) Query no Synaptics: 6003C8
    (EE) SynPS/2 Synaptics TouchPad Unable to query/initialize Synaptics hardware.
    (EE) PreInit failed for input device "SynPS/2 Synaptics TouchPad"
    /home/zachary/.xinitrc: line 11: /usr/bin/xmodmap: No such file or directory
    /home/zachary/.xinitrc: line 11: exec: /usr/bin/xmodmap: cannot execute: No such file or directory
    /etc/xdg/xfce4/xinitrc: line 97: xrdb: コマンドが見つかりません
    /etc/xdg/xfce4/xinitrc: line 100: xmodmap: コマンドが見つかりません
    sh: /usr/bin/iceauth: そのようなファイルやディレクトリはありません
    ** (xfce4-session:4064): WARNING **: Failed to setup the ICE authentication data, session management might not work properly.
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95c02a8 rejected
    ** Message: To replace the current window manager, try "--replace"
    ** (xfwm4:4073): WARNING **: Another Window Manager is already running
    ** Message: To replace the current window manager, try "--replace"
    ** (xfwm4:4074): WARNING **: Another Window Manager is already running
    ** Message: To replace the current window manager, try "--replace"
    ** (xfwm4:4075): WARNING **: Another Window Manager is already running
    ** Message: To replace the current window manager, try "--replace"
    ** (xfwm4:4076): WARNING **: Another Window Manager is already running
    ** Message: To replace the current window manager, try "--replace"
    ** (xfwm4:4077): WARNING **: Another Window Manager is already running
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95c02a8 rejected
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b3a00 rejected
    (xfce4-settings-helper:4082): xfce4-settings-helper-WARNING **: Failed to connect to session manager
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b3a00 rejected
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b3a00 rejected
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b3a00 rejected
    ** (xfwm4:4071): WARNING **: Unhandled keyboard shortcut
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95ab580 rejected
    (xfce4-settings-helper:4109): xfce4-settings-helper-WARNING **: Failed to connect to session manager
    xfce4-settings-helper is already running
    xfce4-panel-Message: xfce4-panel は既に動作中です
    xfdesktop[4108] is already running; assuming --reload
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b4400 rejected
    (xfce4-settings-helper:4126): xfce4-settings-helper-WARNING **: Failed to connect to session manager
    xfce4-settings-helper is already running
    xfce4-panel-Message: xfce4-panel は既に動作中です
    xfdesktop[4125] is already running; assuming --reload
    xfce4-panel-Message: xfce4-panel は既に動作中です
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b4c58 rejected
    (xfce4-settings-helper:4128): xfce4-settings-helper-WARNING **: Failed to connect to session manager
    xfce4-settings-helper is already running
    xfce4-panel-Message: xfce4-panel は既に動作中です
    xfdesktop[4130] is already running; assuming --reload
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b4c58 rejected
    (xfce4-settings-helper:4132): xfce4-settings-helper-WARNING **: Failed to connect to session manager
    xfce4-settings-helper is already running
    xfce4-panel-Message: xfce4-panel は既に動作中です
    xfdesktop[4135] is already running; assuming --reload
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95b4400 rejected
    (xfce4-settings-helper:4134): xfce4-settings-helper-WARNING **: Failed to connect to session manager
    xfce4-settings-helper is already running
    xfdesktop[4136] is already running; assuming --reload
    ** (xfce4-session:4064): WARNING **: Unable to launch "maximus" (specified by autostart/maximus-autostart.desktop): maximus を子プロセスとして起動できませんでした: そのようなファイルやディレクトリはありません
    ** (xfce4-session:4064): WARNING **: Unable to launch "netbook-launcher" (specified by autostart/netbook-launcher.desktop): netbook-launcher を子プロセスとして起動できませんでした: そのようなファイルやディレクトリはありません
    ** (xfce4-session:4064): WARNING **: Unable to launch "update-notifier --startup-delay=60" (specified by autostart/update-notifier.desktop): update-notifier を子プロセスとして起動できませんでした: そのようなファイルやディレクトリはありません
    ** (xfce4-session:4064): WARNING **: ICE connection 0x95ccbe0 rejected
    (xfce4-settings-helper:4147): xfce4-settings-helper-WARNING **: Failed to connect to session manager
    xfce4-settings-helper is already running

  • HT1222 I was trying to run ITunes 10.7 update on my Mac Pro with Retina display but the message appeared "An error has occurred" so I can proceed with the update. I dont' see any other messages. Any ideas what could go wrong?

    I was trying to run ITunes 10.7 update on my Mac Pro with Retina dispaly but "An error has occurred" and I was not able to proceed with the update. The message says "The operation was cancelled. (3072)." I have no other messages. Any ideas why I cannot install this update

    Scott's solution fixed the problem.  It would have been helpful if the update message in the App Store had reported that.  I had first tried B Noir's solution -- and received a helpful warning message that a guest user was still logged in to iTunes.  I switched over, logged the guest user out, switched back and the update within the App store worked perfectly.
    It seems to me that Apple should invest a little time and effort in making their error/warning messages easier to decipher.  I have to come to the forum every time something happens.  Why not simply have a dialogue window that opens up to explain the most likely issues?

  • Ipad3 apps won't launch

    I've just bought an iPad3 and after a few days the apps I downloaded stopped working.
    I search the web and found that most people suggest this is an authorization problem and I should download a free app to keep iStore happy.
    I did this the first time and thought that would be the end of it, but now it's happened again.
    Please tell me there's another way to fix this because it makes the device TOTALLY unusable to me as I often have long periods with no internet connection.
    Rob
    PS, I've also tried resetting but this doesn't work.

    Thanks for your response Demo.
    I did what you suggest the first time but this time I wanted to fix the problem without an internet connection as loosing the apps would be a real drama in the bush because navigation is a prime reason for having this in the first place. I know city people can't believe it but there's a whole world out there without a wireless connection
    I think I have fixed it though so I'll say how here for future searches.
    Although I had connected to my laptop a few times I had not allowed the apps to sync or indeed authorized my laptop so I started thinking that maybe iTunes/shop thought I was trying to pull a fast one with an unauthorized computer.
    So I authorized my laptop and synced the apps and now everything is working.
    I had it working before using your method so the jury is out for a few days, so I'll be back with a yay or nay then.
    Unfortunately by the time I know for sure I will be 100s of miles from the nearest Apple store.
    Rob
    PS: For the record, I've been working with computers since they were the size of a car, but these days to have an OS simply not launch an app with no error/help/warning messages is just not on.

Maybe you are looking for

  • NF Recebimento Futuro / Entrega de Mercadorias, configuração IPI

    Grupo Estamos utilizando a versão 9.0 PL07 e não estamos conseguindo dar entrada em notas fiscais de recebimento futuro. O problema é o seguinte: recebemos uma nota fiscal de recebimento futuro e o imposto destacado na nota é apenas o IPI, conforme N

  • Menu problems in IE and Chrome

    Okay, the site is www.rainbowmorganhorseassoc.com. I'm having 2 different issues with 2 different browsers, only it's not me having the issues, it's others. Everything is working fine for me in the same versions of the browsers, so I'm having difficu

  • One screw left over

    I just completed replacing the bottom case, and upgrading the hard drive on my 12" G4. I used the instructions from iFixIt.com and found them very useful. Everything is working, Leopard is installing on the new hard drive. But... I have one little 2.

  • Recovered File ?

    After installing CS6. A folder named "Recovered File" was found in the Trash Bin. The files inside this Folder seem like they have something to do with Font, because they have name like Garamond .....

  • Imap is acting slow

    a colleague and I have implemented IMAP for webmail, I can notice that the imap processes take most the CPU..around 70% ... another point is that using the list command with "%" is VERY slow.. on the other hand using list with "*" is more normal... A