Xmonad fresh install: xmessage says 'Error in xmonad.hs .....'

Hi all
I've installed xmonad with pacman:
pacman -S xmonad xnomad-contrib dmenu dzen2
and then i executed it via my .xinitrc
#!/bin/sh
# ~/.xinitrc
#exec openbox-session
numlockx &
exec xmonad
But it keeps spitting out error messages when starting X
xmonad.hs:117:56: parse error (possibly incorrect indentation)
Here's my xmonad.hs
-- DynamicLog require xmonad-contrib
import XMonad
import XMonad.Hooks.DynamicLog
import qualified XMonad.StackSet as W
import qualified Data.Map as M
import System.Exit
import Graphics.X11.Xlib
main = xmonad $ defaultConfig
{ workspaces = workspaces',
modMask = modMask',
borderWidth = borderWidth',
normalBorderColor = normalBorderColor',
focusedBorderColor = focusedBorderColor',
defaultGaps = defaultGaps',
terminal = terminal',
keys = keys',
logHook = logHook'
workspaces' :: [WorkspaceId]
workspaces' = ["1-code", "2-test", "3-misc", "4-web", "5-mail", "6", "7", "8", "9-irc"]
modMask' :: KeyMask
modMask' = mod4Mask
borderWidth' :: Dimension
borderWidth' = 0
normalBorderColor', focusedBorderColor' :: String
normalBorderColor' = "#000000"
focusedBorderColor' = "#0f0f0f"
defaultGaps' :: [(Int,Int,Int,Int)]
defaultGaps' = [(15,0,0,0), (15,0,0,0)] -- 15 for default dzen font
logHook' :: X ()
logHook' = dynamicLogXinerama
terminal' :: String
terminal' = "urxvt"
keys' :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ())
keys' conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
-- launching and killing programs
[ ((modMask .|. shiftMask, xK_t), spawn $ XMonad.terminal conf) -- %! Launch terminal
, ((modMask, xK_p ), spawn "exe=`dmenu_path | dmenu` && eval \"exec $exe\"") -- %! Launch dmenu
, ((modMask .|. shiftMask, xK_p ), spawn "gmrun") -- %! Launch gmrun
, ((modMask .|. shiftMask, xK_c ), kill) -- %! Close the focused window
, ((modMask .|. shiftMask, xK_e ), spawn "xemacs")
, ((modMask .|. shiftMask, xK_w ), spawn "swiftweasel")
, ((modMask .|. shiftMask, xK_m ), spawn "claws-mail")
, ((modMask, xK_space ), sendMessage NextLayout) -- %! Rotate through the available layout algorithms
, ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf) -- %! Reset the layouts on the current workspace to default
, ((modMask, xK_n ), refresh) -- %! Resize viewed windows to the correct size
-- move focus up or down the window stack
, ((modMask, xK_Tab ), windows W.focusDown) -- %! Move focus to the next window
, ((modMask, xK_j ), windows W.focusDown) -- %! Move focus to the next window
, ((modMask, xK_k ), windows W.focusUp ) -- %! Move focus to the previous window
, ((modMask, xK_m ), windows W.focusMaster ) -- %! Move focus to the master window
-- mpd controls
, ((modMask .|. controlMask, xK_h ), spawn "mpc prev")
, ((modMask .|. controlMask, xK_t ), spawn "mpc pause")
, ((modMask .|. controlMask, xK_n ), spawn "mpc play")
, ((modMask .|. controlMask, xK_s ), spawn "mpc next")
, ((modMask .|. controlMask, xK_g ), spawn "mpc seek -2%")
, ((modMask .|. controlMask, xK_c ), spawn "mpc volume -4")
, ((modMask .|. controlMask, xK_r ), spawn "mpc volume +4")
, ((modMask .|. controlMask, xK_l ), spawn "mpc seek +2%")
-- modifying the window order
, ((modMask, xK_Return), windows W.swapMaster) -- %! Swap the focused window and the master window
, ((modMask .|. shiftMask, xK_j ), windows W.swapDown ) -- %! Swap the focused window with the next window
, ((modMask .|. shiftMask, xK_k ), windows W.swapUp ) -- %! Swap the focused window with the previous window
-- resizing the master/slave ratio
, ((modMask, xK_h ), sendMessage Shrink) -- %! Shrink the master area
, ((modMask, xK_l ), sendMessage Expand) -- %! Expand the master area
-- floating layer support
, ((modMask, xK_t ), withFocused $ windows . W.sink) -- %! Push window back into tiling
-- increase or decrease number of windows in the master area
, ((modMask , xK_comma ), sendMessage (IncMasterN 1)) -- %! Increment the number of windows in the master area
, ((modMask , xK_period), sendMessage (IncMasterN (-1))) -- %! Deincrement the number of windows in the master area
-- toggle the status bar gap
, ((modMask , xK_b ), modifyGap (\i n -> let x = (XMonad.defaultGaps conf ++ repeat (0,0,0,0)) !! i in if n == x then (0,0,0,0) else x)) -- %! Toggle the status bar gap
-- quit, or restart
, ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) -- %! Quit xmonad
, ((modMask , xK_q ), restart "xmonad" True -- %! Restart xmonad
++
-- mod-[1..9] %! Switch to workspace N
-- mod-shift-[1..9] %! Move client to workspace N
[((m .|. modMask, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9]
, (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
++
-- mod-{a,o} %! Switch to physical/Xinerama screens 1, 2, or 3
-- mod-shift-{a,o} %! Move client to screen 1, 2, or 3
[((m .|. modMask, key), screenWorkspace sc >>= flip whenJust (windows . f))
| (key, sc) <- zip [xK_a, xK_o] [0..]
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
Any xmonad experts around here to review this file ??

niller wrote:<snip>
, ((modMask , xK_q ), restart "xmonad" True -- %! Restart xmonad
++
-- mod-[1..9] %! Switch to workspace N
<snip>
You're missing closing brackets. A ")" behind the "True" and a "]" for closing the main keys' list. If you add those it should work.
<snip>
, ((modMask , xK_q ), restart "xmonad" True) -- %! Restart xmonad
++
-- mod-[1..9] %! Switch to workspace N
<snip>

Similar Messages

  • Why can't i install java on os 10.7, under install it says error  something about java script

    why can't i install java on os 10.7, under install it says error  something about java script

    If you can't get any software updates, there is something wrong and I would suggest reinstalling Lion.
    What errors do you get when you try to install the updates?
    What is the build number of Lion. Look in About this Mac and click on the version number.

  • ITunes won't install. Says error writing to file C:\Program Files\itunes\itunes.resources\da.lproj\AboutBox.rft

    iTunes won't install. 
    Says error writing to file C:\Program Files\itunes\itunes.resources\da.lproj\AboutBox.rft
    Does anybody know what I need to do to fix this?

    I am the administrator, so this can't be a rights problem. The error message says "error writing to file c:\program files\apple software update\softwareupdate.exe. Verify that you have access to that directory".
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive, as per the following document:
    How to perform disk error checking in Windows XP
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • I am receiving error on ios 7 install,It says error occurred and update failed

    I am receiving error on ios 7 install,It says error occurred and update failed
    What should I do now ?
    Thanks

    It happened to me also but it is installed successfully in the second attempt with my iPhone5.

  • I just got a New Mac pro--wanted to partition..DVD install disc says error.

    I just got the new mac out of the box...Partitioned it and installed software. DVD 1 worked good..when it asked for dvd 2...it says error. I cleaned the DVD and tried it again. Same problem. I put it in my power mac to see if it would read it..and it does. Your thoughts?

    i contacted apple..and they are sending me out a new DVD of disc 2. It was the internal drive i was using to install.

  • Fresh Install, CD/DVD Error

    Hello there everybody,
    Working with a new PC and tried to install iTunes.  Everything in the install package went through as per normal; however, when I went to boot iTunes for the first time I got a message saying iTunes could not import or burn to CD because of install errors.  I went through help -> Run Diagnostics and got this printout.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Hewlett-Packard HP Pavilion dv6 Notebook PC
    iTunes 10.7.0.21
    QuickTime not available
    FairPlay 2.2.19
    Apple Application Support 2.2.2
    iPod Updater Library 10.0d2
    CD Driver Not Available
    CD Driver DLL Not Available
    Apple Mobile Device 6.0.0.59
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0033AE3C00FC17F8
    Current user is not an administrator.
    The current local date and time is 2012-09-17 18:52:27.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Advanced Micro Devices, Inc., AMD Radeon HD 7660G
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.7.0.21 (x64) is currently running.
    iTunesHelper 10.7.0.21 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    No drivers in UpperFilters.
    Failed loading CD / DVD drives, error -43. Try doing a repair install on iTunes from the “Add or Remove Programs” control panel.
    Last line stands out to me.  I've done a complete re-install and am still getting the error.
    Any help appreciated

    This looks to be the culprit in your case:
    CD Driver Not Available
    CD Driver DLL Not Available
    With that one, I'd start with solution 3 from the following document:
    iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install

  • My Mac Book Pro do not install OS, say error HD but not repear it. Now do not load the system.

    I have a MacBookPro 2012 no retina. I got it 22 December 2012. Mountain Lion installed. 2 months ago I updated to Yosemite. Yesterday, my MacPB did´t start up. Stay in White screen with a folder and a question mark flashing inside.
    I have a time machine copy so I  use disk utilities for delete and format internal HD.
    MacBP format ok and create 1 partition ok but if I check it it seay ia must repair (an error with red text with code or type 8).
    But when I click repair allways end with that red message.
    However I decided to move on to installing the M. Lion (only one allowed) from Apple servers and give it a try.
    But at the end of discharge (discharge indicator bar fills completely in blue) and tells me that is already at 0% , sudenly jumps to 15% again and stay in this loop that never ends.
    Please, i need my MacBP and my desperate question is: Could be only a HD failure because it not get repaired? In that case I would buy another HD. But, could it be the controller and that's more serious?
    I do never move the MacBookPro without turning it off before. Always use in my home.
    Could be just the HD or has more the look of another damage ? How long warranty gives Apple?.
    What could I do to go discarding and keep trying a bit?. I could buy a new HD and install it, coudn't not?
    An economic HD  for testing,  What features should be HD, size, technology etc?
    Thanks a lot in advance, Im lost now

    If you keep getting a 'red' message it means that the HDD is faulty and will have to be replaced.  You will have to format the new HDD in Disk Utility>Erase and then install the OSX and your data from Time Machine.
    Ciao.

  • LMS 4.2.2 virtual appliance fresh install : DCR Server Error

    Hello,
    I have installed a new version of LMS 4.2 on virtual appliance (VMware 4.1) and I have an issue.
    When I go the "Device Administration --> Manage Device State" I have the following error :
    Server Error
    Error
    Error in communicating with DCR Server. For more details click here.
    DCR Server may be down. Please start the DCR Server and then refresh the page.
    Following the details link I have : (I did all the check written below).
    DCR Server Error
    The communication error may be due to the following reasons:
    The DNS resolution does not match with server assigned IP Address. Workaround: DNS resolvable IP Address should be same as server IP Address. DHCP is enabled in the server. Workaround: DHCP should be disabled in the server. The server’s original IP Address may have changed. Workaround: Restart Cisco Prime Daemon Manager. CTM registry corruption has occurred due to rebooting the server without stopping the Cisco Prime  Daemon Manager. Workaround: Delete the ctmregistry and ctmregistry.backup file in  NMSROOT/MDC/tomcat/webapps/cwhp/WEB-INF/LIB and then restart the Cisco Prime Daemon  Manager. DCR Server and related process might be down. Workaround: Check the processes to make sure DCR Server is running, and restart it if not. The hostname change is not done by the hostnamechange.pl in LMS. Workaround: Hostname change should be done using NMSROOT/bin/hostnamechange.pl in LMS. LMS self signed certificate would have been expired. Workaround: Regenerate the certificate and restart the daemon manager.
    I try to reinstall LMS 4.2 with or without patches 4.2.1 and 4.2.2 I always have the same problem. The DCR server process is running.
    Here the result of the show application status LMS in SSH :
    S-CISCO-LAN-MS/sysadmin# show application status LMS
      Process               State                                     Pi
    d
      ESS                   Program started - No mgt msgs received    27
    14
      EssMonitor            Running normally                          29
    50
      EventFramework        Program started - No mgt msgs received    32
    95
      SyslogCollector       Running normally                          32
    96
      RMEDbEngine           Program started - No mgt msgs received    32
    97
      DfmBroker             Running normally                          34
    24
      DfmServer             Running normally                          36
    62
      DfmServer1            Running normally                          36
    63
      FHDbEngine            Program started - No mgt msgs received    36
    64
      EPMDbEngine           Program started - No mgt msgs received    40
    81
      EPMServer             Running normally                          42
    20
      AdapterServer         Program started - No mgt msgs received    43
    20
      AdapterServer1        Program started - No mgt msgs received    43
    21
      FHServer              Running normally                          43
    22
      INVDbEngine           Program started - No mgt msgs received    43
    23
      PMServer              Running normally                          4582
      IpmDbEngine           Program started - No mgt msgs received    4708
      UPMDbEngine           Program started - No mgt msgs received    4840
      UPMDbMonitor          Running normally                          4949
      ANIDbEngine           Program started - No mgt msgs received    4953
      MACUHIC               Running normally                          4990
      UTLITE                Running normally                          4991
      CmfDbEngine           Program started - No mgt msgs received    4992
      CmfDbMonitor          Running normally                          5104
      DFMLogServer          Program started - No mgt msgs received    5106
      DFMCTMStartup         Administrator has shut down this server   0
      FHPurgeTask           Never started                             0
      DFMMultiProcLogger    Program started - No mgt msgs received    5108
      CSDiscovery           Never started                             0
      DCRDevicePoll         Never started                             0
      CSRegistryServer      Running normally                          5109
      Tomcat                Program started - No mgt msgs received    5110
      TomcatMonitor         Running normally                          5206
      Apache                Running normally                          5567
      DCRServer             Running normally                          5580
      CMFOGSServer          Program started - No mgt msgs received    5641
      TISServer             Program started - No mgt msgs received    5642
      DFMOGSServer          Program started - No mgt msgs received    5757
      NOSServer             Running normally                          5795
      PTMServer             Running normally                          5796
      InventoryCollector    Running normally                          5797
      Interactor            Program started - No mgt msgs received    5885
      InventoryCollector1   Program started - No mgt msgs received    5886
      Interactor1           Program started - No mgt msgs received    6116
      UPMProcess            Running normally                          6117
      WlseUHIC              Running normally                          6118
      UTManager             Running normally                          6119
      VNMServer             Program started - No mgt msgs received    6120
      EssentialsDM          Running normally                          6121
      ICServer              Running normally                          6310
      EnergyWise            Running normally                          6581
      ConfigMgmtServer      Running normally                          6582
      PMCOGSServer          Program started - No mgt msgs received    6583
      ConfigUtilityService  Running normally                          6584
      CAAMServer            Running normally                          6585
      IPMOGSServer          Program started - No mgt msgs received    6586
      TopoServer            Program started - No mgt msgs received    6587
      LicenseServer         Program started - No mgt msgs received    6588
      FDRewinder            Never started                             0
      NameServer            Program started - No mgt msgs received    6591
      NameServiceMonitor    Program started - No mgt msgs received    6792
      EDS                   Running normally                          6870
      ANIServer             Running with busy flag set                7224
      UTMajorAcquisition    Never started                             0
      EDS-GCF               Running normally                          7257
      jrm                   Running normally                          7258
      DataPurge             Administrator has shut down this server   0
      IPMProcess            Program started - No mgt msgs received    7535
      CTMJrmServer          Administrator has shut down this server   0
      SyslogAnalyzer        Never started                             0
      ChangeAudit           Never started                             0
      diskWatcher           Running normally                          8381
    I run out of ideas...
    Regards,
    Abel

    Hi Afroz!
    Thanks for the quick reply!
    1) I checked files - and indeed, the third link of the file was empty.
    I restored contents of the same test server (as an attachment - original files) - now everything is working fine. Many thanks for your advice!
    Because of what could this happen?
    Current settings are as follows (i did not change them):
    [lms42/root-ade etc]# ls -la /opt/CSCOpx/MDC/tomcat/shared/lib/ctm_config.txt
    -rw-r--r-- 1 casuser casusers 1037 Jul 22 13:54 /opt/CSCOpx/MDC/tomcat/shared/lib/ctm_config.txt
    [lms42/root-ade etc]# ls -la /opt/CSCOpx/MDC/tomcat/webapps/cwhp/WEB-INF/lib/ctm_config.txt
    -rw-r--r-- 1 casuser casusers 1084 Jul 22 13:54 /opt/CSCOpx/MDC/tomcat/webapps/cwhp/WEB-INF/lib/ctm_config.txt
    [lms42/root-ade etc]# ls -la /opt/CSCOpx/MDC/tomcat/lib/ctm_config.txt
    -rwxr-xr-x 1 casuser casusers 1104 Aug 20 12:07 /opt/CSCOpx/MDC/tomcat/lib/ctm_config.txt
    2) It was also noted that if address on the link "Inventory>Device Administration>Discovery>Schedule", then an error message appears:
    Error
    Error in getting the Discovery configuration information, please configure Standard / Custom Discovery and start the schedule.
    - no any records for Discovery Schedule and not accessible button Add (for add new Discovery Jobs).
    This is related errors?

  • Cannot update my ios8.1.1 to 8.2 or the latest update showing in settings.i go thru the process of downloading and after waiting to download it shows download complete and then while installing it says error.what should I do?

    HHello...cannot update my iPad 2 to latest version of ios8.12. Shows error after downloading it

    Hi Ajit Shah,
    Welcome to Apple Support Communities.
    It sounds like you’ve run into an issue updating iOS over-the-air on your iPad. Take a look at the article linked below, it provides a lot of great information and troubleshooting tips that’ll generally resolve issues like this one.
    Resolve issues with an over-the-air iOS update - Apple Support
    Take care,
    -Jason

  • My itunes wont install it says error, and my old version wont work with my iphone, it pops up with a message asking if i trust this computer and when i click yes it comes up again and again

    Help!

    Hi HelpAimee!
    It sounds like you may need to uninstall your version of iTunes and then reinstall the newest version:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    There are certain components of iTunes that need to be uninstalled in order, so make sure you follow the uninstall steps in the above article. You can then visit the following link to get the latest version of iTunes and install it:
    Apple - iTunes - Download iTunes Now
    http://www.apple.com/itunes/download/
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Can't install new release - Error 2753 Ref pxsetup.exe ?

    I ran into problems trying to uninstall Lightroom Beta. In the end, I did a manual delete, followed up by a "regedit" search for anything 'Lightroom' had left behind in the registry. Then I swept the machine using Ccleaner (great free utility at www.ccleaner.com).
    Despite all my best efforts, I can't get the new version to install. (I wanted to install the trial version and then register it within the 30 day period).
    I keep getting an error message part way through the actual install process saying:
    Error 2753: The file pxsetup.exe is not marked for installation.
    To try and resolve this I've tried installing direct from the Adobe site using the run command, but get the same problem?
    I've also tried switching off my Firewall/Anti virus software during the install process. That didn't help either.
    I tried ringing Adobe saying I wanted to install and buy their product, but they refuse to give any assistance to anything Beta related! Because of this problem I can't install and register. As I'm not registered, I can't get any help from Adobe product support?
    I would be very much appreciate any help or suggestions. Thanks, Paul

    The other thread on this in which you participate may be the better place to centralize info.
    Paul Bright, "LR will not install!" #4, 15 Mar 2007 11:41 am

  • I installed 3.6.12 and now get error message that says - Error: Platform version 1.9.2.12 is not compatible with miniversion = 1.9.2.10 maxversion = 1.9.2.19 and it won't launch unless outside of sandbox. I cannot navigate to yahoo. Please help.

    I down loaded latest version and get error message when I launch it. Error message is entitled XUL Runner and says - Error: Platform version 1.9.2.12 is not compatible with miniversion >= 1.9.2.10 maxversion <= 1.9.2.19 and it won't launch. I can launch if I use Run Outside of Sandbox option, but I cannot navigate my home page on yahoo. What happened? Please send fix. Thanks, [email protected]

    Do a clean (re)install:
    * Download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data when uninstalling.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere (not in the Firefox program folder) and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Fresh install with lots of errors

    Good Morning,
    I just installed oracle XE on a Ubuntu Server 10.04 and I had to fix a problem I never had before.
    When I tried to connect to the database with sqlplus
    sqlplus /
    I got a error saying that ORACLE was'nt running. So, I logged differently:
    sqlplus /nolog
    SQL> connect sys/ORACLE as sysdba
    connected to an idle instance
    SQL> startup nomount
    Then it complained that ORACLE could not find either initDB_NAME.ora or SPFILE.ora
    After a quick check I notice that there were neither initDB_NAME.ora nor SPFILE.ora on my system. The only file I found was the standart init.ora in $ORACLE_HOME/dbs which i rename to initXE.ora, then after a restart I had to fix a ORA-00371: not enough shared pool memory, should be atleast string bytes.
    Ok, after fixing that problem I got the error: "ORA-00205: Error in identifying control file, check alert log for more info" when I tried to mount the database.
    Checking in the database
    SQL> SHOW PARAMETERS control_files;
    It says somenthing like $ORACLE_HOME/dbs/ora_control1 and $ORACLE_HOME/dbs/ora_control2
    Those files does not exist either.
    Are those problems normal for a fresh install??? Should'nt be created a initXE.ora file automatically??
    Thanks

    Hello,
    So, you didn't find neither the PFILE/SPFILE to Start the Instance nor the Control Files to MOUNT the Database.
    Are you sure that the XE Database was created ? Or do you use the right environment variables ORACLE_HOME, ORACLE_SID, ... ?
    Normally, these files should be created on the right place and should be found when the Database startup.
    The init.ora file is always there as a sample file, even if you don't create a Database.
    Hope this help.
    Best regards,
    Jean-Valentin

  • Fresh Install Mac - Licensing for this product has stopped working  Error: 6

    We just got the new macbook pro refreshes at work and decided to make the switch to standalone CFBuilder.   We downloaded the trial and installed.  On launch we get this error, "Licensing for this product has stopped working  Error: 6".  Every macbook had the same result.   All are running 2 Ghz Quad Core i7 with 8GB of ram.   All of them get the same error.    All have a fresh install of 10.6.6.   Other than installing Air before the CFBuilder install they have no other applications installed.   Other than Air, there are no other Adobe products installed.  All CFBuilders were installed under an admin account.
    We've tried all the troubleshooting.   Permissions, LicenseRecovery, Setting the clock back to 2010... we even tried reinstalling OSX, then installing acrobat, then air, then CFBuilder with the same result every time.   We even activated the root account on the system and installed under root.  Same result every time.    The Flexnet service never gets created unless we use the License recovery tool.   If we install the updater it still makes no difference.
    All options for CFBuilder are grayed out under help.   Registration, Deactivation, Updates...
    Any suggestions?

    Thanks for posting and letting me know. Yes, it is crappy to have to work-around it like that. I noticed when I installed
    Builder that it over-wrote some newer files, but I said "Okay to All". I'm using CS4 not CS5 and my newer files were probably better. I'm glad you got your program working at least. My problem is I started my first Project at the wwwroot level, like all the instructions say. It wasn't until I saw Ben Forta's video of it that I realized I was supposed to start a new folder within the wwwroot folder as my Project folder. Now I can't get rid of my first Project folder without DELETING all of the files in wwwroot, WHICH I CANNOT DO. MANY OF THE FOLDERS THERE ARE WORKING WEB SITES! If you know of any way to detach that original Project, I'd sure like to know how to do it.
    Thanks,
    Tedra

  • [SOLVED] - Arch Fresh Install - Errors

    I have a few ERRORS from a Fresh Install that I need a bit of help with:
    1.  I've created a user (larry) and added myself to audio,lp,optical,wheel,storage,video,power,scanner and inserted the password.
         But when I try to login with user larry and my password, I am unable to login.  (My password is the same as root and I can login
         as root.)  Is there a way to reset my user password without deleting user larry?  I don't want to lose the files I have in /home/larry.
    2.  In /var/log/xorg.0.log I have an error displayed:
         (EE) Failed to load module "fbdev"
         I've searched and found that I might also need to use pacman -S xf86-video-fbdev  Do I also need to install this package even though
         I have the xf86-video-intel (i915 Video Driver is used in Debian 6) installed?  Some postings say don't use it as it is SLOW?  I haven't
         a clue????
    3.  My .xinitrc in /home/user has startxfce4 enabled, but xfce never starts.  But, I can ONLY login as root, and that might be causing the
         problem by not using /home/larry/.xinitrc  I've only got two partitions on my USB Flash Drive and they are / (1.95 Gig) and also
         /home (1.96 Gig).  I'd like to get Arch running from USB Flash Drive before I install on a Hard Drive.  If I am logged in as root, how can
         I get xfce to start
    4.  I installed the ttf-dejavu fonts with pacman -S ttf-dejavu   I got an error stating: mkfontscale:  /usr/lib/libz.so.1 Version ZLIB_1.2.5.2 NOT FOUND!
         How do I correct this missing lib problem?
    I've got my Wifi working via a small script, so far I've kept fixing the errors/problems and I'm keeping a log so I can duplicate the process.
    I just need a bit of help getting the above issues solved.  When XFCE finally runs as my Desktop I'll be happy.
    Thanks.
    Larry
    Last edited by lkraemer (2012-02-21 15:16:34)

    1) Congrats.
    2) You can remove it, but I don't think it should matter; it will likely only take up a bit of space.
    3) Glad that's working.  This means X is set up well.  If you do find yourself in the TWM environment again, the default is pretty vanilla.  To exit I believe you just type "exit" into each terminal, when there are no running 'clients' remaining, TWM and X quit.  Alternately, you can Ctrl-Atl-F1 to get to tty1 (or where ever you ran startx/xinit from) and hit Ctrl-C to force-quit X.
    Other) X can be fairly verbose.  I don't think those warnings are anything to be concerned with, unless they seem related to a feature you are lacking.  It is common for programs to try one feature and fall-back on another if it is not available.  I suspect the gtk warning is just this sort.  I get a boatload of gtk warnings whenever I run many gui apps, but everything works fine.  The thunar error is likely because you don't have one of the addons installed.  Thunar has many bells and whistles that can be added, and it may be checking for all of them when it starts.  The warning says one of them is not there.  If it's a feature you want, check out the thunar wiki's and install the required packages - otherwise, I suspect it's safe to ignore.
    Do you have Xfce up and running?

Maybe you are looking for

  • HFM Web Sever Configuration--Keep Alive and Session Time Out Optimal Config

    We recently implemented an HFM 9.3.1 environment. We are using Windows 2003 Enterprise SP2 servers with IIS6. We have two HFM Web servers connecting to an application cluster with two application servers in the cluster. We were getting some errors wh

  • Ironport Whitelist and related questions

    Hi all, I have recently started at a new position for a company that is utilising ironport as the email spam filtering/virus checking appliance. Almost immediately after starting in my position issues were being discussed, where the senderbase reputa

  • Adobe Media Encoder won't take mov. files!?

    My Adobe Media Encoder will not take mov. files! That should not be a problem, right? When I click the Add-button the mov. files is not listed up unless I choose to show all files. And when selecting the file, the program says the file could not be i

  • How to Determine the "Total" Page Count on HP 2575 All-in-one printer?

    Looking at how to determine the "Total" Page Count on HP 2575 All-in-one printer?   I've seen directions for other HP printers but can't seem to find any for the HP 2575 All-in-one printer.  I am trying to find approximately how many pages my printer

  • Dictionary in other languages

    Very strange but Pages only uses an English dictionary and I can't find a way to change that. Quite annoing as I write in Dutch. What to do?