ACE20 and TLSv1.0 extensions problem

Hi,
I have a problem with an ACE20 running software version A2(2.3) [build 3.0(0)A2(2.3)].
We have a simple load-balancing arrangement for two Apache webservers. All we do is pass HTTP and HTTPS traffic through to one of two servers. we don't do SSL termination or initiation on the ACE - just passthrough.
We now have a requirement to support connections that only use TLSv1.0 with no fallback to SSLv3. If I use IE8 the connection works. If I use IE9 or FF19 then the connection fails. I've traced this to the use of TLS extensions in the ClientHello packet - which came after the TLSv1.0 RFC. IE8 doesn't send extensions whereas the other browsers do.  I can replicate the problem with the OpenSSL s_client application. What surprises me is that the ACE checks the structure of the TLS negotiation even though I'm not asking it to make decisions about it. I can see why this would be done as a security feature if the ACE implemented a strict RFC2246-compliant server - the extensions having bee added post-RFC.
Is there any way to tell the ACE to forward SSL packets and not worry too much about the contents? I've checked all the Release notes and can't find any relevant caveats.
Thank you
Cathy

Hi Ajay,
Disabling normalization made no difference. I thought it might help, but I think it only looks at the gross structure of the packets and doesn't worry about RFC2246 compliance.
The relevant parts of the configuration are shown below:
rserver host web-web1
  ip address a.b.c.d
  inservice
rserver host web-web2
  ip address a.b.c.e
  inservice
serverfarm host FARM-web2
  rserver web-web1
    inservice
  rserver web-web2
    inservice
sticky ip-netmask 255.255.255.255 address source FARM-web2-Sticky
  timeout 99
  replicate sticky
  serverfarm FARM-web2 backup FARM-sorry
class-map match-any L4VIPCLASS
  2 match virtual-address x.y.z.t tcp eq www
  3 match virtual-address x.y.z.t tcp eq https
  6 match virtual-address x.y.z.t tcp eq 81
policy-map type loadbalance first-match LB-POLICY
  class class-default
    sticky-serverfarm FARM-web2-Sticky
policy-map multi-match L4POLICY
  class L4VIPCLASS
    loadbalance vip inservice
    loadbalance policy LB-POLICY
    loadbalance vip icmp-reply active
    loadbalance vip advertise
service-policy input L4POLICY
As you see, the configuration is about as simple as it can be.
Kind Regards
Cathy

Similar Messages

  • JWSDP and complex type extension problem

    Hy,
    We got a problem with JAX-RPC reference implementation. It seems it doesn't support inheritance beetween complex types as web services parameters or return value. A Parse exception happens when client code deserializes base class members. Does anyone know about this problem ? We don't have it with Apache Axis implementation (on client side). In our case, server code always runs in C++ with gSOAP.
    And the stacktrace :
    deserialization error: unexpected XML reader state. expected: END but found: START: longitude
    Here our wsdl file :
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="Service"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
    targetNamespace="urn:ass"
    xmlns:tns="urn:ass"
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:WAT="urn:ass/WAT.xsd"
    xmlns:ifg="urn:ass">
    <types>
    <schema
    xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="urn:ass/WAT.xsd"
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:WAT="urn:ass/WAT.xsd"
    xmlns:ifg="urn:ass">
    <complexType name="Date">
    <sequence>
    <element name="time" type="xsd:long" minOccurs="1" maxOccurs="1"/>
    </sequence>
    </complexType>
    <complexType name="DateStruct">
    <all>
    <element name="inst" type="WAT:Date" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="IcaoCode">
    <sequence>
    <element name="s" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true"/>
    <element name="isAlphaNum" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
    </sequence>
    </complexType>
    <complexType name="IcaoCodeStruct">
    <all>
    <element name="inst" type="WAT:IcaoCode" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="Ident">
    <sequence>
    <element name="Id" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    <element name="Name" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true"/>
    <element name="Text" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="IdentStruct">
    <all>
    <element name="inst" type="WAT:Ident" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="Latitude">
    <sequence>
    <element name="s" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="LatitudeStruct">
    <all>
    <element name="inst" type="WAT:Latitude" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="Longitude">
    <sequence>
    <element name="s" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="LongitudeStruct">
    <all>
    <element name="inst" type="WAT:Longitude" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="Notam">
    <sequence>
    <element name="Id" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    <element name="Text" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="NotamStruct">
    <all>
    <element name="inst" type="WAT:Notam" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="Pib">
    <sequence>
    <element name="Id" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    <element name="Name" type="xsd:string" minOccurs="1" maxOccurs="1" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="PibStruct">
    <all>
    <element name="inst" type="WAT:Pib" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="AirField">
    <sequence>
    <element name="longitude" type="WAT:Longitude" minOccurs="1" maxOccurs="1"/>
    <element name="latitude" type="WAT:Latitude" minOccurs="1" maxOccurs="1"/>
    <element name="codeICAO" type="WAT:IcaoCode" minOccurs="1" maxOccurs="1"/>
    </sequence>
    </complexType>
    <complexType name="AirFieldStruct">
    <all>
    <element name="inst" type="WAT:AirField" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    <complexType name="SunTime">
    <complexContent>
    <extension base="WAT:AirField">
    <sequence>
    <element name="sunriseTime" type="WAT:Date" minOccurs="1" maxOccurs="1"/>
    <element name="sunsetTime" type="WAT:Date" minOccurs="1" maxOccurs="1"/>
    <element name="heuresCalculees" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    <element name="heuresExistent" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </sequence>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="SunTimeStruct">
    <all>
    <element name="inst" type="WAT:SunTime" minOccurs="1" maxOccurs="1"/>
    <element name="coderet" type="xsd:int" minOccurs="1" maxOccurs="1"/>
    </all>
    </complexType>
    </schema>
    </types>
    <message name="getSuntimeRequest">
    <part name="req" type="xsd:string"/>
    </message>
    <message name="SunTimeStruct">
    <part name="inst" type="WAT:SunTime"/>
    <part name="coderet" type="xsd:int"/>
    </message>
    <portType name="ServicePortType">
    <operation name="getSuntime">
    <documentation>Service definition of function ifg__getSuntime</documentation>
    <input message="tns:getSuntimeRequest"/>
    <output message="tns:SunTimeStruct"/>
    </operation>
    </portType>
    <binding name="ServiceBinding" type="tns:ServicePortType">
    <SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="getSuntime">
    <SOAP:operation soapAction=""/>
    <input>
    <SOAP:body use="encoded" namespace="urn:ass" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
    <output>
    <SOAP:body use="encoded" namespace="urn:ass" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
    </binding>
    <service name="Service">
    <documentation>gSOAP 2.1.10c generated service definition</documentation>
    <port name="ServicePort" binding="tns:ServiceBinding">
    <SOAP:address location="http://location/Service.cgi"/>
    </port>
    </service>
    </definitions>

    Try using the -f:searchschema feature of wscompile when generating the client stubs from your WSDL file.

  • Safari and Awesome Screenshot Extension Problem

    Hi Everyone,
    I have a problem with Safari and extension Awesome Screenshot.
    The problem is, when I try to make a screenshot, instead of asking me to upload or save picture Safari just give's a blank page with my most visited websites.
    It looks like something wrong with the Safari as I have also such problems when I try to launch others apps that being launched through Safari or when I try to download some torrents.
    How to make it work properly?
    Thanks for the answers in advance.
    Boris

    "Awesome Screenshot" is adware and on the edge of being a trojan. If you installed that, and if you also download torrents, then there's a good chance you're infected with other malware.
    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don'

    I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don't want us to use Firefox.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; FNGP_SYS)

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Trying to access hotmail account but it is taking forever to get into hotmail it was working ok at start of week only yesterday and today have a problem with it

    rying to access hotmail account but it is taking forever to get into hotmail it was working ok at start of week only yesterday and today have a problem with it

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Vdpau and full screen youtube problems on Nvidia Quadro NVS 140M

    I have Nvidia NVS 140M on 64-bit Arch. I am trying to find perfect configuration for my Thinkpad with no luck.
    I used to have nouveau drivers, now using nvidia-173xx. The problems are following:
    1) YouTube videos:
    - with nouveau I was not able to watch any video (it was like a slideshow)
    - with nvidia everything works fine.
    I'd prefer nouveau than nvidia, because of KMS.
    2) Glxgears
    As far as I remember, you can check if acceleration is working, using this tool - CPU usage should be not changed after glxgears started. On both drivers (nouveau and nvidia) running glxgears process uses 100% CPU.
    3) vdpau
    According to this thread, my card supports vdpau. I can not make it to work.
    Additional information:
    thinkpad ~ $ pacman -Qs nvidia
    local/lib32-libvdpau 0.4.1-3
    Nvidia VDPAU library (32-bit)
    local/libvdpau 0.4.1-1
    Nvidia VDPAU library
    local/nvidia-173xx 173.14.28-3
    NVIDIA drivers for kernel26, 173xx branch.
    local/nvidia-173xx-utils 173.14.28-1
    NVIDIA drivers utilities and libraries, 173xx branch.
    thinkpad ~ $ vainfo
    libva: libva version 0.31.1
    Xlib: extension "XFree86-DRI" missing on display ":0.0".
    libva: va_getDriverName() returns 0
    libva: Trying to open /usr/lib/dri/nvidia_drv_video.so
    Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
    libva error: /usr/lib/dri/nvidia_drv_video.so init failed
    libva: va_openDriver() returns -1
    vaInitialize failed with error code -1 (unknown libva error),exit
    thinkpad ~ $ cat /etc/X11/xorg.conf.d/20-nvidia.conf
    Section "Module"
    Load "glx"
    Disable "dri"
    Disable "dri2"
    EndSection
    Section "Device"
    Identifier "Default nvidia Device"
    Driver "nvidia"
    Option "NoLogo" "True"
    EndSection
    thinkpad ~ $ glxinfo
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: NVIDIA Corporation
    server glx version string: 1.4
    server glx extensions:
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_video_sync, GLX_SGI_swap_control,
    GLX_EXT_texture_from_pixmap, GLX_ARB_multisample, GLX_NV_float_buffer,
    GLX_ARB_fbconfig_float, GLX_EXT_framebuffer_sRGB
    client glx vendor string: NVIDIA Corporation
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_visual_info,
    GLX_EXT_visual_rating, GLX_EXT_import_context, GLX_SGI_video_sync,
    GLX_NV_swap_group, GLX_NV_video_out, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGI_swap_control, GLX_NV_float_buffer, GLX_ARB_fbconfig_float,
    GLX_EXT_fbconfig_packed_float, GLX_EXT_texture_from_pixmap,
    GLX_EXT_framebuffer_sRGB, GLX_NV_present_video
    GLX version: 1.3
    GLX extensions:
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_video_sync, GLX_SGI_swap_control,
    GLX_EXT_texture_from_pixmap, GLX_ARB_multisample, GLX_NV_float_buffer,
    GLX_ARB_fbconfig_float, GLX_EXT_framebuffer_sRGB,
    GLX_ARB_get_proc_address
    OpenGL vendor string: NVIDIA Corporation
    OpenGL renderer string: Quadro NVS 140M/PCI/SSE2
    OpenGL version string: 2.1.2 NVIDIA 173.14.28
    OpenGL shading language version string: 1.20 NVIDIA via Cg compiler
    OpenGL extensions:
    GL_ARB_color_buffer_float, GL_ARB_depth_texture, GL_ARB_draw_buffers,
    GL_ARB_fragment_program, GL_ARB_fragment_program_shadow,
    thinkpad ~ $ cat /var/log/Xorg.0.log
    [ 2830.098]
    X.Org X Server 1.9.4
    Release Date: 2011-02-04
    [ 2830.098] X Protocol Version 11, Revision 0
    [ 2830.099] Build Operating System: Linux 2.6.37-ARCH x86_64
    [ 2830.099] Current Operating System: Linux thinkpad 2.6.37-ARCH #1 SMP PREEMPT Tue Mar 8 08:34:35 CET 2011 x86_64
    [ 2830.099] Kernel command line: root=/dev/sda3 ro
    [ 2830.100] Build Date: 04 February 2011 09:38:18PM
    [ 2830.100]
    [ 2830.100] Current version of pixman: 0.20.2
    [ 2830.101] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2830.101] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2830.103] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar 12 21:24:44 2011
    [ 2830.104] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2830.104] (==) No Layout section. Using the first Screen section.
    [ 2830.104] (==) No screen section available. Using defaults.
    [ 2830.104] (**) |-->Screen "Default Screen Section" (0)
    [ 2830.104] (**) | |-->Monitor "<default monitor>"
    [ 2830.105] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 2830.105] (**) | |-->Device "Default nvidia Device"
    [ 2830.105] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2830.105] (==) Automatically adding devices
    [ 2830.105] (==) Automatically enabling devices
    [ 2830.105] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2830.105] Entry deleted from font path.
    [ 2830.105] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 2830.105] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2830.105] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2830.105] (II) Loader magic: 0x7d3b20
    [ 2830.105] (II) Module ABI versions:
    [ 2830.105] X.Org ANSI C Emulation: 0.4
    [ 2830.105] X.Org Video Driver: 8.0
    [ 2830.105] X.Org XInput driver : 11.0
    [ 2830.105] X.Org Server Extension : 4.0
    [ 2830.108] (--) PCI:*(0:1:0:0) 10de:0429:17aa:20d8 rev 161, Mem @ 0xd6000000/16777216, 0xe0000000/268435456, 0xd4000000/33554432, I/O @ 0x00002000/128
    [ 2830.108] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 2830.108] (WW) "dri" will not be loaded unless you've specified it to be loaded elsewhere.
    [ 2830.108] (WW) "dri2" will not be loaded unless you've specified it to be loaded elsewhere.
    [ 2830.108] (II) "extmod" will be loaded by default.
    [ 2830.108] (II) "dbe" will be loaded by default.
    [ 2830.108] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 2830.108] (II) "record" will be loaded by default.
    [ 2830.108] (II) "dri" will be loaded even though the default is to disable it.
    [ 2830.108] (II) "dri2" will be loaded even though the default is to disable it.
    [ 2830.108] (II) LoadModule: "glx"
    [ 2830.109] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2830.118] (II) Module glx: vendor="NVIDIA Corporation"
    [ 2830.118] compiled for 4.0.2, module version = 1.0.0
    [ 2830.118] Module class: X.Org Server Extension
    [ 2830.118] (II) NVIDIA GLX Module 173.14.28 Wed Sep 29 10:19:01 PDT 2010
    [ 2830.118] (II) Loading extension GLX
    [ 2830.118] (II) LoadModule: "extmod"
    [ 2830.118] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 2830.118] (II) Module extmod: vendor="X.Org Foundation"
    [ 2830.118] compiled for 1.9.4, module version = 1.0.0
    [ 2830.119] Module class: X.Org Server Extension
    [ 2830.119] ABI class: X.Org Server Extension, version 4.0
    [ 2830.119] (II) Loading extension MIT-SCREEN-SAVER
    [ 2830.119] (II) Loading extension XFree86-VidModeExtension
    [ 2830.119] (II) Loading extension XFree86-DGA
    [ 2830.119] (II) Loading extension DPMS
    [ 2830.119] (II) Loading extension XVideo
    [ 2830.119] (II) Loading extension XVideo-MotionCompensation
    [ 2830.119] (II) Loading extension X-Resource
    [ 2830.119] (II) LoadModule: "dbe"
    [ 2830.119] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 2830.119] (II) Module dbe: vendor="X.Org Foundation"
    [ 2830.119] compiled for 1.9.4, module version = 1.0.0
    [ 2830.119] Module class: X.Org Server Extension
    [ 2830.119] ABI class: X.Org Server Extension, version 4.0
    [ 2830.119] (II) Loading extension DOUBLE-BUFFER
    [ 2830.119] (II) LoadModule: "record"
    [ 2830.119] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 2830.119] (II) Module record: vendor="X.Org Foundation"
    [ 2830.119] compiled for 1.9.4, module version = 1.13.0
    [ 2830.119] Module class: X.Org Server Extension
    [ 2830.119] ABI class: X.Org Server Extension, version 4.0
    [ 2830.119] (II) Loading extension RECORD
    [ 2830.119] (II) LoadModule: "nvidia"
    [ 2830.119] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 2830.120] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 2830.120] compiled for 4.0.2, module version = 1.0.0
    [ 2830.120] Module class: X.Org Video Driver
    [ 2830.120] (II) NVIDIA dlloader X Driver 173.14.28 Wed Sep 29 10:00:06 PDT 2010
    [ 2830.120] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 2830.120] (--) using VT number 7
    [ 2830.124] (II) Loading sub module "fb"
    [ 2830.124] (II) LoadModule: "fb"
    [ 2830.124] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 2830.124] (II) Module fb: vendor="X.Org Foundation"
    [ 2830.124] compiled for 1.9.4, module version = 1.0.0
    [ 2830.124] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2830.124] (II) Loading sub module "wfb"
    [ 2830.125] (II) LoadModule: "wfb"
    [ 2830.125] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 2830.125] (II) Module wfb: vendor="X.Org Foundation"
    [ 2830.125] compiled for 1.9.4, module version = 1.0.0
    [ 2830.125] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2830.125] (II) Loading sub module "ramdac"
    [ 2830.125] (II) LoadModule: "ramdac"
    [ 2830.125] (II) Module "ramdac" already built-in
    [ 2830.125] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2830.125] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 2830.125] (==) NVIDIA(0): RGB weight 888
    [ 2830.125] (==) NVIDIA(0): Default visual is TrueColor
    [ 2830.125] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 2830.125] (**) NVIDIA(0): Option "NoLogo" "True"
    [ 2830.125] (**) NVIDIA(0): Enabling RENDER acceleration
    [ 2830.125] (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    [ 2830.126] (II) NVIDIA(0): enabled.
    [ 2834.780] (II) NVIDIA(0): NVIDIA GPU Quadro NVS 140M (G86GL) at PCI:1:0:0 (GPU-0)
    [ 2834.780] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 2834.780] (--) NVIDIA(0): VideoBIOS: 60.86.3e.00.00
    [ 2834.780] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 2834.780] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 2834.780] (--) NVIDIA(0): Connected display device(s) on Quadro NVS 140M at PCI:1:0:0:
    [ 2834.781] (--) NVIDIA(0): LEN (DFP-0)
    [ 2834.781] (--) NVIDIA(0): LEN (DFP-0): 330.0 MHz maximum pixel clock
    [ 2834.781] (--) NVIDIA(0): LEN (DFP-0): Internal Dual Link LVDS
    [ 2834.785] (WW) NVIDIA(0): The EDID for LEN (DFP-0) contradicts itself: mode "1280x800"
    [ 2834.785] (WW) NVIDIA(0): is specified in the EDID; however, the EDID's valid
    [ 2834.785] (WW) NVIDIA(0): HorizSync range (42.088-49.305 kHz) would exclude this
    [ 2834.785] (WW) NVIDIA(0): mode's HorizSync (32.9 kHz); ignoring HorizSync check for
    [ 2834.785] (WW) NVIDIA(0): mode "1280x800".
    [ 2834.785] (WW) NVIDIA(0): The EDID for LEN (DFP-0) contradicts itself: mode "1280x800"
    [ 2834.785] (WW) NVIDIA(0): is specified in the EDID; however, the EDID's valid
    [ 2834.785] (WW) NVIDIA(0): VertRefresh range (52.000-60.000 Hz) would exclude this
    [ 2834.785] (WW) NVIDIA(0): mode's VertRefresh (39.9 Hz); ignoring VertRefresh check
    [ 2834.785] (WW) NVIDIA(0): for mode "1280x800".
    [ 2834.785] (WW) NVIDIA(0): The EDID for LEN (DFP-0) contradicts itself: mode "1280x800"
    [ 2834.785] (WW) NVIDIA(0): is specified in the EDID; however, the EDID's valid
    [ 2834.785] (WW) NVIDIA(0): HorizSync range (42.088-49.305 kHz) would exclude this
    [ 2834.785] (WW) NVIDIA(0): mode's HorizSync (32.9 kHz); ignoring HorizSync check for
    [ 2834.785] (WW) NVIDIA(0): mode "1280x800".
    [ 2834.785] (WW) NVIDIA(0): The EDID for LEN (DFP-0) contradicts itself: mode "1280x800"
    [ 2834.785] (WW) NVIDIA(0): is specified in the EDID; however, the EDID's valid
    [ 2834.785] (WW) NVIDIA(0): VertRefresh range (52.000-60.000 Hz) would exclude this
    [ 2834.785] (WW) NVIDIA(0): mode's VertRefresh (39.9 Hz); ignoring VertRefresh check
    [ 2834.785] (WW) NVIDIA(0): for mode "1280x800".
    [ 2834.787] (II) NVIDIA(0): Assigned Display Device: DFP-0
    [ 2834.787] (==) NVIDIA(0):
    [ 2834.787] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 2834.787] (==) NVIDIA(0): will be used as the requested mode.
    [ 2834.787] (==) NVIDIA(0):
    [ 2834.787] (II) NVIDIA(0): Validated modes:
    [ 2834.787] (II) NVIDIA(0): "nvidia-auto-select"
    [ 2834.787] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 800
    [ 2836.069] (--) NVIDIA(0): DPI set to (98, 96); computed from "UseEdidDpi" X config
    [ 2836.069] (--) NVIDIA(0): option
    [ 2836.069] (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    [ 2836.069] (--) Depth 24 pixmap format is 32 bpp
    [ 2836.074] (II) NVIDIA(0): Initialized GPU GART.
    [ 2836.084] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 2836.968] (II) Loading extension NV-GLX
    [ 2837.035] (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    [ 2837.037] (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    [ 2837.037] (==) NVIDIA(0): Backing store disabled
    [ 2837.037] (==) NVIDIA(0): Silken mouse enabled
    [ 2837.040] (==) NVIDIA(0): DPMS enabled
    [ 2837.040] (II) Loading extension NV-CONTROL
    [ 2837.041] (==) RandR enabled
    [ 2837.041] (II) Initializing built-in extension Generic Event Extension
    [ 2837.041] (II) Initializing built-in extension SHAPE
    [ 2837.041] (II) Initializing built-in extension MIT-SHM
    [ 2837.041] (II) Initializing built-in extension XInputExtension
    [ 2837.041] (II) Initializing built-in extension XTEST
    [ 2837.041] (II) Initializing built-in extension BIG-REQUESTS
    [ 2837.041] (II) Initializing built-in extension SYNC
    [ 2837.041] (II) Initializing built-in extension XKEYBOARD
    [ 2837.041] (II) Initializing built-in extension XC-MISC
    [ 2837.041] (II) Initializing built-in extension SECURITY
    [ 2837.041] (II) Initializing built-in extension XINERAMA
    [ 2837.042] (II) Initializing built-in extension XFIXES
    [ 2837.042] (II) Initializing built-in extension RENDER
    [ 2837.042] (II) Initializing built-in extension RANDR
    [ 2837.042] (II) Initializing built-in extension COMPOSITE
    [ 2837.042] (II) Initializing built-in extension DAMAGE
    [ 2837.042] (II) Initializing extension GLX
    [ 2837.204] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 2837.204] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2837.204] (II) LoadModule: "evdev"
    [ 2837.204] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2837.205] (II) Module evdev: vendor="X.Org Foundation"
    [ 2837.205] compiled for 1.9.4, module version = 2.6.0
    [ 2837.205] Module class: X.Org XInput Driver
    [ 2837.205] ABI class: X.Org XInput driver, version 11.0
    [ 2837.205] (**) Power Button: always reports core events
    [ 2837.205] (**) Power Button: Device: "/dev/input/event4"
    [ 2837.216] (--) Power Button: Found keys
    [ 2837.216] (II) Power Button: Configuring as keyboard
    [ 2837.216] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 2837.216] (**) Option "xkb_rules" "evdev"
    [ 2837.216] (**) Option "xkb_model" "evdev"
    [ 2837.216] (**) Option "xkb_layout" "us"
    [ 2837.264] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
    [ 2837.264] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 2837.264] (**) Video Bus: always reports core events
    [ 2837.264] (**) Video Bus: Device: "/dev/input/event3"
    [ 2837.279] (--) Video Bus: Found keys
    [ 2837.279] (II) Video Bus: Configuring as keyboard
    [ 2837.279] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 2837.279] (**) Option "xkb_rules" "evdev"
    [ 2837.280] (**) Option "xkb_model" "evdev"
    [ 2837.280] (**) Option "xkb_layout" "us"
    [ 2837.284] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 2837.284] (II) No input driver/identifier specified (ignoring)
    [ 2837.284] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 2837.284] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 2837.284] (**) Sleep Button: always reports core events
    [ 2837.284] (**) Sleep Button: Device: "/dev/input/event2"
    [ 2837.306] (--) Sleep Button: Found keys
    [ 2837.306] (II) Sleep Button: Configuring as keyboard
    [ 2837.306] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    [ 2837.306] (**) Option "xkb_rules" "evdev"
    [ 2837.306] (**) Option "xkb_model" "evdev"
    [ 2837.306] (**) Option "xkb_layout" "us"
    [ 2837.312] (II) config/udev: Adding input device Logitech USB Laser Mouse (/dev/input/event9)
    [ 2837.312] (**) Logitech USB Laser Mouse: Applying InputClass "evdev pointer catchall"
    [ 2837.312] (**) Logitech USB Laser Mouse: always reports core events
    [ 2837.312] (**) Logitech USB Laser Mouse: Device: "/dev/input/event9"
    [ 2837.333] (--) Logitech USB Laser Mouse: Found 12 mouse buttons
    [ 2837.333] (--) Logitech USB Laser Mouse: Found scroll wheel(s)
    [ 2837.333] (--) Logitech USB Laser Mouse: Found relative axes
    [ 2837.333] (--) Logitech USB Laser Mouse: Found x and y relative axes
    [ 2837.333] (II) Logitech USB Laser Mouse: Configuring as mouse
    [ 2837.333] (II) Logitech USB Laser Mouse: Adding scrollwheel support
    [ 2837.333] (**) Logitech USB Laser Mouse: YAxisMapping: buttons 4 and 5
    [ 2837.333] (**) Logitech USB Laser Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2837.333] (II) XINPUT: Adding extended input device "Logitech USB Laser Mouse" (type: MOUSE)
    [ 2837.333] (**) Logitech USB Laser Mouse: (accel) keeping acceleration scheme 1
    [ 2837.333] (**) Logitech USB Laser Mouse: (accel) acceleration profile 0
    [ 2837.333] (**) Logitech USB Laser Mouse: (accel) acceleration factor: 2.000
    [ 2837.333] (**) Logitech USB Laser Mouse: (accel) acceleration threshold: 4
    [ 2837.333] (II) Logitech USB Laser Mouse: initialized for relative axes.
    [ 2837.334] (II) config/udev: Adding input device Logitech USB Laser Mouse (/dev/input/mouse1)
    [ 2837.334] (II) No input driver/identifier specified (ignoring)
    [ 2837.335] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
    [ 2837.335] (II) No input driver/identifier specified (ignoring)
    [ 2837.342] (II) config/udev: Adding input device Integrated Camera (/dev/input/event8)
    [ 2837.342] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
    [ 2837.342] (**) Integrated Camera: always reports core events
    [ 2837.342] (**) Integrated Camera: Device: "/dev/input/event8"
    [ 2837.373] (--) Integrated Camera: Found keys
    [ 2837.373] (II) Integrated Camera: Configuring as keyboard
    [ 2837.373] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD)
    [ 2837.373] (**) Option "xkb_rules" "evdev"
    [ 2837.373] (**) Option "xkb_model" "evdev"
    [ 2837.373] (**) Option "xkb_layout" "us"
    [ 2837.382] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2837.382] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2837.382] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2837.382] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2837.403] (--) AT Translated Set 2 keyboard: Found keys
    [ 2837.403] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2837.403] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 2837.403] (**) Option "xkb_rules" "evdev"
    [ 2837.403] (**) Option "xkb_model" "evdev"
    [ 2837.403] (**) Option "xkb_layout" "us"
    [ 2837.404] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event6)
    [ 2837.404] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 2837.404] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 2837.404] (**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event6"
    [ 2837.419] (--) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 2837.419] (--) TPPS/2 IBM TrackPoint: Found relative axes
    [ 2837.419] (--) TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 2837.419] (II) TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 2837.419] (**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 2837.419] (**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2837.419] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
    [ 2837.420] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 2837.420] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 2837.420] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 2837.420] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 2837.420] (II) TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 2837.420] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse0)
    [ 2837.420] (II) No input driver/identifier specified (ignoring)
    [ 2837.422] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event5)
    [ 2837.422] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 2837.422] (**) ThinkPad Extra Buttons: always reports core events
    [ 2837.422] (**) ThinkPad Extra Buttons: Device: "/dev/input/event5"
    [ 2837.446] (--) ThinkPad Extra Buttons: Found keys
    [ 2837.446] (II) ThinkPad Extra Buttons: Configuring as keyboard
    [ 2837.446] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD)
    [ 2837.446] (**) Option "xkb_rules" "evdev"
    [ 2837.446] (**) Option "xkb_model" "evdev"
    [ 2837.446] (**) Option "xkb_layout" "us"

    lukaszg wrote:GlxGears still uses 100% CPU - is it OK?
    Should I disable both dri and dri2 in xorg.conf, for nvidia drivers?
    Dunno.  Comment them out, restart X and see what happens.
    Last edited by skunktrader (2011-03-13 16:01:02)

  • Create pdf chrome extension problems

    My os is Win 8.1
    My product is Acrobat XI with all current updates as of 11-25-2013
    I use the lastest version of Chrome browser
    I have used the pdf extension on the browser at least 7 times.
    1st time nothing happened
    2nd time it worked perfectly
    3rd through 6th time it did nothing what soever.
    I went into Chrome and looked at the settings. It was enabled.
    I rebooted my computer and tried a 7th time which resulted in nothing happening.
    I openned Chrome and deleted this extension thinking I would browse Chrome extensions and re install.
    I was not able to find this extension and started reading in the Acrobat forums.
    I did as suggested and closed Chrome and open Acrobat and click repair.
    This resulted in no change what so ever. I have also noticed that the disscussions I read the folks with
    this same issue have not been able to resolve the problem.
    I believe in Acrobat and enjoy the use of it. This chrome browser extension function was great the one time it worked for me.
    I am open for help....now that I can't even make the extension show up on my brower again.
    Thanks,
    Jerry

    Hi Jerry,
    Would you mind emailing me directly with your info? [email protected]
    Kindest regards, Stacy

  • StarOffice 8 CDE Icon and Document File Extension Associations

    I recently upgraded to Solaris 10 (5/08). With previous versions of Solaris, I installed StarOffice 7 from CD and it placed the nice little icon in the CDE desktop panel and it created StarOffice associations to all the typical office file extensions (ie. .doc, .xls, etc.). I would like to use the StarOffice 8 that is bundled with Solaris 10. Is there an installation step or some other way to automatically setup the CDE icon and the file extension associations?
    Thanks,
    Joe
    Edited by: jdulisse on Sep 19, 2008 11:45 AM

    I came across the same problem on windows XP SP2 machines.
    I created a registry key that forces the file associations as follows:
    Windows Registry Editor Version 5.00
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.doc\shell&#93;
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.doc\shell\open&#93;
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.doc\shell\open\command &#93;
    @="\"C:\\Program Files\\Sun\\StarOffice 8\\program\\soffice.exe\" \"%1\""
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.xls\shell&#93;
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.xls\shell\open&#93;
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.xls\shell\open\command &#93;
    @="\"C:\\Program Files\\Sun\\StarOffice 8\\program\\soffice.exe\" \"%1\""
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ppt\shell&#93;
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ppt\shell\open&#93;
    &#91;HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ppt\shell\open\command &#93;
    @="\"C:\\Program Files\\Sun\\StarOffice 8\\program\\soffice.exe\" \"%1\""

  • Script to list and remove browser extensions?

    I want to write an AppleScript to list and remove extensions from Safari, Firefox and Chrome.
    The problem is, I'm not finding any obvious ways of doing this in the AppleScript dictionaries for those apps. Does anyone know of a way to do this in an elegant manner, or am I stuck parsing the files/folders where these apps store their extensions, and trying to figure out which ones correspond to the ones I want to find and get rid of?

    Bump.... Anyone got any ideas?

  • Dreamweaver extension problem

    Hello all
    im little newbie in develop Adobe Air Application,
    i downloaded Dreamweaver CS3 trial and Adobe Air Extension
    for dreamweaver
    i install all with success
    now, i try to use the Air Application Setting with a sample,
    but i can't access the configuration panel, always i have this
    message :
    Title of the msg box :
    "Adobe Air Extension for Dreamweaver"
    Message :
    "Java Runtime Environnment (JRE) version 1.4 or higher is
    required in order to create the AIR file. Please install it and run
    the command again."
    the problem, i already have installed the JRE (i use actually
    the 1.6.0_07), i try a lot of things (like, re-install jre,
    dreamweaver, air extension, download again, re-install).. but
    cannot use the Air setting..
    config :
    windows xp sp2
    P4 3.2 Ghz
    4 Go ram
    Someone have an idea about this problem ?
    thanks in advance
    best regards

    hello,
    nobody can help ?
    in addition to the problem, i look around the dreamweaver
    config
    i find the error msg come from the file "AIRSettings.js",
    it's appear the var jreversionObj cannot retrieve the good version
    of jre who is installed on my os ..
    i do not understand why .. so i comment the line who check
    this.. and at last, i can acceed to the AIR panel settings in
    dreamweaver CS3,
    but now, when i try to compile my Air app.. i have the msg
    where i have to make a certificat,
    i try it, but have an error msg say "Error creating the
    digital certificate file. An error log was created"
    and in the AIR error log file : i have some unknow caracters
    in file like "Y" with 2 point on it..
    any advice to solve this ?
    thanks in advance (and sorry for my english :o)

  • Firefox keeps crashing on startup, how can I fix it? I've already uninstalled it and reinstalled it, same problem.

    It doesn't even load the window. It just says that it crashed and gives me this:
    Problem signature:
    Problem Event Name: BEX
    Application Name: firefox.exe
    Application Version: 31.0.0.5310
    Application Timestamp: 53c75e72
    Fault Module Name: nsib.dll
    Fault Module Version: 5.1.3.1
    Fault Module Timestamp: 53f5c0ba
    Exception Offset: 00135fe0
    Exception Code: c0000005
    Exception Data: 00000008
    OS Version: 6.1.7601.2.1.0.768.3
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Help

    A "BEX" error often indicates there is a malware process trying to inject itself into Firefox in an inappropriate way, so Windows shuts it down to protect you.
    When I search for information on nsib.dll, it's inconclusive. For example: [https://www.virustotal.com/en-gb/file/7739cad2495359a139ef31062f54d683ce549bc4d7cca13f8d1cdaca86b3474d/analysis/ VirusTotal analysis].
    Assuming it is a bad add-on, I suggest starting here:
    Open the Windows '''Control Panel''', Uninstall a Program. After the list loads, click the "Installed on" column heading to group the infections, I mean, additions, by date. This can help in smoking out undisclosed bundle items that snuck in with some software you agreed to install. Take out as much trash as possible here.
    You can "mop up" remaining issues with the scanning/cleaning tools suggested in this support article: [[Troubleshoot Firefox issues caused by malware]].
    Finally, start Firefox in its Safe Mode by holding down the Shift key when double-clicking the Firefox shortcut/icon. In the small dialog that should appear, choose "Start in Safe Mode"
    Then open the '''Add-ons page''' using either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable (or Remove, if possible) unrecognized and unwanted extensions.
    Often a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that clear it up?

  • Console Extension Problem

    It seems like exception occurs due to WLS console extension problem. I
    captured the errors and attaching it here.
    The application is working fine on WLS 8.1, the exception occurs only when i deploy
    the application on WLS 7.0. The application components are extending administration
    console and displaying there. During this time, it is trying to invoke servlet(ServletStupImpl)
    and failing over there.
    Please check the attached file and reply me ASAP.
    Regards
    Senthil
    [Console Extension error.txt]

    What is the the platform the server is running on, and what browser you are using when the problem occurs?
    Are there any exceptions in the Java console for the applet?

  • Compact and Repair Encrpyted Database Problem

    I have an MS Access 2007 accdb file that I no problems with when it is not encrypted.  I can compact and repair with no problems.  However, when I encrypt the database and try to compact and repair the file, I get 'invalid argument'. The
    file is 101 MB, I'm not at the 2 GB limit by far.  Any suspicions?   This file was recently imported into 2007 from 2003 (accdb from mdb). I have had the users testing it extensively.  I worked through the all of the compile errors that
    the previous auther left.  The problems comes once I encrypt the file again and again.

    Hi,
    Thank you for posting in the MSDN Forum.
    Since the issue is more related to the end-user feature of Access, I'd like to move it to Office IT product forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When i open facebook and only text shows and all is to the left and when i open hotmail nothing shows on my screen and other webpages have problems also when click at a link all the text comes up also to the left in my screen whats wrong ???

    When i open facebook and only text shows and all is to the left and when i open hotmail nothing shows on my screen and other webpages have problems also when click at a link all the text comes up also to the left in my screen whats wrong ???

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    See also:
    * http://kb.mozillazine.org/Websites_look_wrong
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)

  • DV6-3122us/ after and during Factory restore problems

    This is a DV6-3122us 64 bit notebook, 500GB hard drive, 4 GB ram, Windows 7 Home Premium OS. I restored it from the Factory purchased recovery discs, and I had a problem with that, had to do it 3 times kept locking up at 9% on the restore part. It finally went through then said couldn't install, turned it off, and it was installed. This is Windows 7 Home Premium. Now I have lock ups when updating. The HP assistant  loads but says it has errors at the very top, and doesn't show the system information at the bottom. The hard drive only shows 80 GB allocated, and 397 unallocated. This is all the original hardware, which has been tested and has passed, memory has passed. Any Help would be greatly appreciated.

    1. Right click on the partition ( C:\ ) you want to Extend into the now unallocated partition and click on Extend Volume.
    2. Click on Next for the Welcome to the Extend Volume Wizard window
    3. Select the amount of space in MB you want to use from the unallocated partition to use to Extend this partition
    4. Select all of the available space .
    5. Click on Next.
    6. Click on Finish in the Completing Extend window
    You will now see the Disk Management console with the new extended partition volume ready to be used.
    7. Close Computer Management.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

Maybe you are looking for

  • Major iTunes Problem.. Please help me!!!

    A few weeks ago, my iTunes suddenly crashed. I uninstalled it, then reinstalled it, but the agreement terms pop up for one minute, then suddenly disappear. It's preventing me from getting onto my iTunes and updating my iPod. What can I do?? I need ma

  • WCS 7 map editor issue

    Hi Guys, I am currently setting up some maps on WCS version 7. The map displays correctly in the floor view but if I open in Map Editor it seem to crop about a 1/3 of the picture on the right hand side. I have tried using different building/floor siz

  • Reg:Deploy objects to Cloud

    Hi !      I had reset the sftp user password . And using all the details " SFTP username , password & hostname " properly with port 22. But I am getting the error "unable to connect to sftp server with provided details. Ensure that the correct detail

  • Loss of Mic Audio during Skype Call

    I currently have a Nexus 6 Android 5.0.1 and at about one minute into a Skype call the other party looses audio from me - I have tried all the normal repairs - remove then reboot and reinstall Skype - remove any conflicting applications, etc. However

  • "Failure on Exit" when running Disk Utility

    I am running Mac OS X 10.4.11. Recently, my computer has been freezing up, not shutting down or restarting properly (it just stays on the backdrop screen indefinitely), and running its battery down super-fast. In an attempt to see what is going on, I