Problem with Site Studio sites unde Linux - Ubuntu 9.10

Hello all,
I installed UCM under Linux (Ubuntu 9.10). As part of the setup I configured the installed Apache server by adding to apache2.conf:
LoadModule IdcApacheAuth /opt/oracle/ucm/server/shared/os/linux/lib/IdcApache22Auth.so
IdcUserDB idc "/opt/oracle/ucm/server/data/users/userdb.txt"
Alias /idc "/opt/oracle/ucm/server/weblayout"
<Location /idc>
Order allow,deny
Allow from all
DirectoryIndex portal.htm index.htm
IdcSecurity idc
</Location>
UCM interface works as expected and all was working ok.
I then followed the Site Studio Tutorial Setup Guide and added some lines to the apache2.conf and it now looks like:
LoadModule IdcApacheAuth /opt/oracle/ucm/server/shared/os/linux/lib/IdcApache22Auth.so
IdcUserDB idc "/opt/oracle/ucm/server/data/users/userdb.txt"
Alias /idc "/opt/oracle/ucm/server/weblayout"
<Location /idc>
Order allow,deny
Allow from all
DirectoryIndex portal.htm index.htm
IdcSecurity idc
</Location>
UseCanonicalName off
<Location "/">
IdcSecurity idc
</Location>
Afterwards I installed the Ravenna Hosting Tutorial. It appears ok in the site studio configuration pages. But when I try to view the site I get a 404. In apache access.log I see:
172.18.0.160 - - [01/Mar/2010:10:25:58 +0000] "GET /RVH/index.htm HTTP/1.1" 404 499 "http://ucm/idc/idcplg?IdcService=SS_GET_SITES_ADMIN_PAGE" "Mozilla/5.0 (Windows; U; Windows NT 6.0; pt-PT; rv:1.9.2) Gecko/20100115 Firefox/3.6 GTB5 (.NET CLR 3.5.30729) WIT Toolbar 2.0.17 for Firefox"
And in error.log I have:
[Mon Mar 01 10:28:05 2010] [error] [client 172.18.0.160] File does not exist: /var/www/RVH, referer: http://ucm/idc/idcplg?IdcService=SS_GET_SITES_ADMIN_PAGE
Can someone give me a hand at what I'm doing wrong?

Managed to solve this.
The problem was with SSUrlMapPlugin.so not being loaded because of a missing dependency in the OS. I had to install libstdc++2.10-glibc2.2_2.95.4-24_i386.deb that is no longer on the Ubuntu 9.10 repositories so one has to fetch it from older releases.
wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-2.95/libstdc++2.10-glibc2.2_2.95.4-24_i386.deb
dpkg -i libstdc++2.10-glibc2.2_2.95.4-24_i386.deb
And then restart apache and the content server.

Similar Messages

  • Can't get CF11 to download free trial for students.  Anyone having the same problem with Adobe's site?

    Can't get CF11 to download free trial for students.  Anyone having the same problem with Adobe's site?

    Hi,
    Please download it from http://www.adobe.com/cfusion/tdrc/index.cfm?product=coldfusion&promoid=DJDUK use your Adobe ID and password to login and download CF11.
    Let me know in case you face any issue while downloading it, if you get any error try another browser.
    Thanks,
    Priyank

  • Hello! The new version of Firefox I have a problem with opening the site VKontakte. The browser displays the following error: "Firefox has determined that the s

    Hello!
    The new version of Firefox I have a problem with opening the site VKontakte. The browser displays the following error: "Firefox has determined that the server redirects the request for this address in a way that it will never end." How to solve this problem? Please excuse me for my English.
    Sincerely, Vsevolod.

    You're welcome

  • Run site studio site out side WCC

    We have a requirement where I would like to run Site Studio site built in WCC using Site studio designer out side WCC on a tomcat container. Is it possible? Can I just publish the site.xml file to the container and drop some of the Site studio jars in tomcat lib and run the site. Has any one done this?

    It is not possible - if nothing else, it'd definitely violate the licensing policy.
    What you can do, however (if you still pay the license!), is exposing the Site Studio for External Application (SSXA) - see http://docs.oracle.com/cd/E29542_01/doc.1111/e13650/ssxa_understanding.htm#WCMJD538, and http://docs.oracle.com/cd/E29542_01/doc.1111/e13650/ssxa_deploying.htm#WCMJD7000 for more details. It is, however, certified only with Weblogic and Websphere. Also, SSXA projects are not the same as Site Studio Designer ones, so you might have to port your application first (it uses a lot of shared concepts, though).

  • Performance problems with jdk 1.5 on Linux plattform

    Performance problems with jdk 1.5 on Linux plattform
    (not tested on Windows, might be the same)
    After refactoring using the new features from java 1.5 I lost
    performance significantly:
    public Vector<unit> units;
    The new code:
    for (unit u: units) u.accumulate();
    runs more than 30% slower than the old code:
    for (int i = 0; i < units.size(); i++) units.elementAt(i).accumulate();
    I expected the opposite.
    Is there any information available that helps?

    Here's the complete benchmark code I used:package test;
    import java.text.NumberFormat;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.Vector;
    public class IterationPerformanceTest {
         private int m_size;
         public IterationPerformanceTest(int size) {
              m_size = size;
         public long getArrayForLoopDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testArray[index]);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayForEachDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testArray) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForLoopDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForEachDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListIteratorDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForLoopDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForEachDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListIteratorDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForLoopDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testVector.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForEachDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testVector) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorIteratorDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testVector.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
          * @param args
         public static void main(String[] args) {
              IterationPerformanceTest test = new IterationPerformanceTest(1000000);
              System.out.println("\n\nRESULTS:");
              long arrayForLoop = test.getArrayForLoopDuration();
              long arrayForEach = test.getArrayForEachDuration();
              long arrayListForLoop = test.getArrayListForLoopDuration();
              long arrayListForEach = test.getArrayListForEachDuration();
              long arrayListIterator = test.getArrayListIteratorDuration();
    //          long linkedListForLoop = test.getLinkedListForLoopDuration();
              long linkedListForEach = test.getLinkedListForEachDuration();
              long linkedListIterator = test.getLinkedListIteratorDuration();
              long vectorForLoop = test.getVectorForLoopDuration();
              long vectorForEach = test.getVectorForEachDuration();
              long vectorIterator = test.getVectorIteratorDuration();
              System.out.println("Array      for-loop: " + getPercentage(arrayForLoop, arrayForLoop) + "% ("+getDuration(arrayForLoop)+" sec)");
              System.out.println("Array      for-each: " + getPercentage(arrayForLoop, arrayForEach) + "% ("+getDuration(arrayForEach)+" sec)");
              System.out.println("ArrayList  for-loop: " + getPercentage(arrayForLoop, arrayListForLoop) + "% ("+getDuration(arrayListForLoop)+" sec)");
              System.out.println("ArrayList  for-each: " + getPercentage(arrayForLoop, arrayListForEach) + "% ("+getDuration(arrayListForEach)+" sec)");
              System.out.println("ArrayList  iterator: " + getPercentage(arrayForLoop, arrayListIterator) + "% ("+getDuration(arrayListIterator)+" sec)");
    //          System.out.println("LinkedList for-loop: " + getPercentage(arrayForLoop, linkedListForLoop) + "% ("+getDuration(linkedListForLoop)+" sec)");
              System.out.println("LinkedList for-each: " + getPercentage(arrayForLoop, linkedListForEach) + "% ("+getDuration(linkedListForEach)+" sec)");
              System.out.println("LinkedList iterator: " + getPercentage(arrayForLoop, linkedListIterator) + "% ("+getDuration(linkedListIterator)+" sec)");
              System.out.println("Vector     for-loop: " + getPercentage(arrayForLoop, vectorForLoop) + "% ("+getDuration(vectorForLoop)+" sec)");
              System.out.println("Vector     for-each: " + getPercentage(arrayForLoop, vectorForEach) + "% ("+getDuration(vectorForEach)+" sec)");
              System.out.println("Vector     iterator: " + getPercentage(arrayForLoop, vectorIterator) + "% ("+getDuration(vectorIterator)+" sec)");
         private static NumberFormat percentageFormat = NumberFormat.getInstance();
         static {
              percentageFormat.setMinimumIntegerDigits(3);
              percentageFormat.setMaximumIntegerDigits(3);
              percentageFormat.setMinimumFractionDigits(2);
              percentageFormat.setMaximumFractionDigits(2);
         private static String getPercentage(long base, long value) {
              double result = (double) value / (double) base;
              return percentageFormat.format(result * 100.0);
         private static NumberFormat durationFormat = NumberFormat.getInstance();
         static {
              durationFormat.setMinimumIntegerDigits(1);
              durationFormat.setMaximumIntegerDigits(1);
              durationFormat.setMinimumFractionDigits(4);
              durationFormat.setMaximumFractionDigits(4);
         private static String getDuration(long nanos) {
              double result = (double)nanos / (double)1000000000;
              return durationFormat.format(result);
    }

  • How to check if the site studio site is in contribution mode?

    Is there a function or global variable using which we can check if the site studio site is in contribution mode?
    Regards,
    Pratap

    Yes, please look into Site Studio Technical refrence guide.
    I think variable name is 'SSContributor'
    regards,
    deepak
    Edited by: r.dipk on Oct 1, 2010 2:09 AM

  • Big problems with installion Premiere Elements und Photoshop Elements 12

    Big problems with installion Premiere Elements und Photoshop Elements 12 auf Windows 7, shared technologies not found. Tried all  tips and  notes from the community (6 hours work), nothing helped./
    Habe Riesenprobleme mit Installation Premiere elements und PS elements 12, gemeinsam genutzte Technologien werden nicht installier, habe alle Hinweise aus den Foren bereits probiert (6 Stunden Arbeit). Wer weiß wirklichRat?

    Select a topic, then click I STILL NEED HELP to start Premiere Elements Online chat
    -http://helpx.adobe.com/contact.html?product=premiere-elements

  • Compiling MySQL 5.1.26-rc with Sun Studio Express on Linux?

    I managed to compile MySQL 5.1.26-rc with Sun Studio Express on Linux (OpenSuse 10.2 on x64), but I get unexpected crashes every time a connection thread exits:
    (gdb) where
    #0  0x00002b2ce0649535 in raise () from /lib64/libc.so.6
    #1  0x00002b2ce064a990 in abort () from /lib64/libc.so.6
    #2  0x00002b2cdf949795 in __pthread_unwind () from /lib64/libpthread.so.0
    #3  0x00002b2cdf944425 in pthread_exit () from /lib64/libpthread.so.0
    #4  0x00000000005048b2 in one_thread_per_connection_end (thd=0x16d88f0, put_in_cache=false)
    at /home/mysql/debug/sql//mysqld.cc:1893
    #5  0x0000000000513b75 in handle_one_connection (arg=0x16d88f0) at /home/mysql/mysql-5.1.26-rc/sql//sql_connect.cc:1122
    #6  0x00002b2cdf94309e in start_thread () from /lib64/libpthread.so.0
    #7  0x00002b2ce06da4cd in clone () from /lib64/libc.so.6
    #8  0x0000000000000000 in ?? ()If I compile with gcc using e.g. BUILD/compile-amd64-debug-max, I have no issue! But I want to use Sun Studio in order to be consistent with the Solaris version, and also because Sun Studio is likely to produce better code.
    Here is the compilation script, it downloads and extracts the source tree and builds it (it assumes Sun Studio Express is installed in /opt/sun):
    #!/bin/bash
    export PATH=/opt/sun/sunstudioceres/bin:$PATH
    wget -q http://mir2.ovh.net/ftp.mysql.com/Downloads/MySQL-5.1/mysql-5.1.26-rc.tar.gz
    tar xpf mysql-5.1.26-rc.tar.gz
    cd mysql-5.1.26-rc
    # Explicitly specify libs to avoid linking with the STL.
    export LIBS="-xnolib -lCrun -lm -lc -lrt"
    autoreconf --force --install > autoreconf.log 2>&1
    export MY_FLAGS="-g -mt -xtarget=generic -m64"
    CC=cc CXX=CC CFLAGS=$MY_FLAGS CXXFLAGS=$MY_FLAGS ./configure --with-big-tables --without-embedded-server --disable-shared --with-pthread --with-ssl -with-plugins=max > configure.log 2>&1
    gmake -j > build.log 2>&1Any idea about what is going wrong?
    Thanks.

    Possibly the actual CC (or cc) command lines are not correct. The proper way to say not to link libCstd is the command-line option -library=no%Cstd. Then you don't need to add the default system libraries like -lc to the command line.
    Can you show the actual CC command lines that are generated by the makefile? They should be in the compilation log. I'd also like to see the command line(s) used to create dynamic libraries, if any, and the final executable.

  • Problem with creation of site (SMWP)

    Hi All
    I am currently working on SAP SRM 7.0 , middleware settings for master data replication from SAP ECC to SRM.
    I am facing a strange issue. when I try to create a site for backend ECC system in transaction SMWP. When I click on site attributes for typr R/3 and give the ECC RFC destination , system throws an error "Logical System is not defined in target system".
    I have checked multiple times in ECC and SRM ALE settings where logical system for SRM and ECC is correctly defined. There seems to be no problems with RFC connections  also in both ECC and SRM as I am able to remote log in.
    Kindly let me know what could be the possible reason for this issue
    Awaiting your reply
    Pawan Keshwani

    Hi Nikhil
    Thanks for your prompt reply. I have already checked this blog although I have doubts with my system Landscape definition.
    While defining system landscape in "SPRO-> SRM Server-> Technical Basic settings->Define System Landscape" there are two attributes System Lanscape Directory Name and system Type. I might have put wrong information here.
    Can you plz let me know what do you put in these fields? Is this information provided by BASIS team during installation?
    Regards
    Pawan

  • Problem with a particular site

    Why won't this thing (Jetpack 5510L) get into this site?
    http://www.prepar3d.com/forum-5
    This is the Lockheed Martin flight simulator site, it just takes forever to resolve the connection (if it ever does at all) and it's like molasses in January loading the pages once it does. Why? I don't have this problem with other sites?
    Thanks,
    Jim

    I appreciate your replies guys. I tried the network-tools site and it blew right in instantly with a tracert of 9 hops. I then popped open a command window and ran a tracert from my own machine through the hotspot and it took 19 hops. What I noticed is that all the IPs are different when I run the tracert from the hotspot, look here:
    Tracert run from network-tools site:
    74.208.153.51 is from United States(US) in region North America
    TraceRoute from Network-Tools.com to 74.208.153.51 [www.prepar3d.com]
    Hop    (ms)    (ms)    (ms)            IP Address    Host name
    1      0      0      0          206.123.64.46      -
    2      1      0      0          173.219.246.92    173-219-246-92-link.sta.suddenlink.net
    3      0      1      2          173.219.230.155    173-219-230-155-link.sta.suddenlink.net
    4      0      0      0          206.223.118.141    eqix-da1.1and1internet.com
    5      11      12      11          74.208.1.77    te-4-4.bb-c.ms.mkc.us.oneandone.net
    6      13      12      12          74.208.6.106    ae-10.bb-c.slr.lxa.us.oneandone.net
    7      12      12      12          74.208.1.117    ae-11.gw-distp-a.slr.lxa.us.oneandone.net
    8      12      12      12          74.208.1.176    ae-1.gw-prtr-r4-1a.slr.lxa.us.oneandone.net
    9      12      12      12          74.208.153.51    prepar3d.com
    Trace complete
    Tracert run from my machine:
    Tracing route to www.prepar3d.com [2607:f1c0:83f:4500::1d:e9eb]
    over a maximum of 30 hops:
      1    4 ms    3 ms    1 ms  2600:100f:b115:c160:8940:ac96:b405:1e55
      2    83 ms    81 ms    81 ms  2600:100f:b115:c160:0:3a:3bd2:6140
      3    81 ms    81 ms  109 ms  2600:100f:b115:c160:528:200::
      4    90 ms    79 ms    81 ms  2600:100f:b115:c160:528:200::
      5    *        *        *    Request timed out.
      6    85 ms  105 ms    92 ms  2001:4888:52:2010:528:2a1:0:1
      7    89 ms    97 ms    88 ms  2001:4888:52:200e:528:25::
      8    82 ms    85 ms    83 ms  2001:4888:52:2000:528:2a1::
      9  115 ms    86 ms    88 ms  2001:4888:52:2005:528:1::
    10    98 ms    83 ms    95 ms  2001:4888:52:2005:528:1::
    11    83 ms    86 ms    85 ms  2001:4888:52:1001:528:24::
    12    87 ms    88 ms    81 ms  2600:808:42f::1
    13    88 ms    89 ms  104 ms  2600:808::e
    14  101 ms    99 ms    97 ms  2001:450:2008:100::101
    15  155 ms  134 ms  139 ms  2001:450:2002:c6::2
    16  149 ms  144 ms  144 ms  ae-10.bb-c.slr.lxa.us.oneandone.net [2607:f1c0:0:2::1d]
    17  146 ms  148 ms  141 ms  ae-11.gw-distp-a.slr.lxa.us.oneandone.net [2607:f1c0:0:5::d]
    18  142 ms  139 ms  139 ms  ae-1.gw-prtr-r4-1a.slr.lxa.us.oneandone.net [2607:f1c0:0:10::86:a]
    19  156 ms  151 ms  154 ms  2607:f1c0:83f:4500::1d:e9eb
    Trace complete.
    ...so then I did a tracert from my machine on another site I visit often and typically don't have issues with, notice the IPs look normal:
    Tracing route to fsdeveloper.com [185.24.223.227]
    over a maximum of 30 hops:
      1    *        2 ms    1 ms  my.jetpack [192.168.1.1]
      2  429 ms    78 ms    88 ms  196.sub-66-174-25.myvzw.com [66.174.25.196]
      3    80 ms    80 ms    80 ms  66.sub-69-83-159.myvzw.com [69.83.159.66]
      4    81 ms    98 ms  100 ms  113.sub-69-83-158.myvzw.com [69.83.158.113]
      5    84 ms    86 ms  101 ms  49.sub-69-83-158.myvzw.com [69.83.158.49]
      6    89 ms    86 ms    86 ms  34.sub-69-83-159.myvzw.com [69.83.159.34]
      7    92 ms  101 ms    87 ms  4.sub-69-83-144.myvzw.com [69.83.144.4]
      8    *        *        *    Request timed out.
      9    88 ms    80 ms    94 ms  129.sub-66-174-24.myvzw.com [66.174.24.129]
    10    88 ms    87 ms    87 ms  TenGigE0-0-1-0.GW4.POR3.ALTER.NET [157.130.183.193]
    11    86 ms    88 ms    85 ms  0.ge-4-1-0.XL4.SEA1.ALTER.NET [140.222.228.147]
    12    89 ms    88 ms    96 ms  0.xe-11-2-0.GW2.SEA1.ALTER.NET [152.63.105.202]
    13  101 ms  121 ms    97 ms  teliasonera-gw.customer.alter.net [157.130.180.62]
    14  132 ms  137 ms  136 ms  chi-bb1-link.telia.net [62.115.137.84]
    15  170 ms  171 ms  172 ms  nyk-bb2-link.telia.net [213.155.131.242]
    16  230 ms  229 ms  229 ms  ldn-bb2-link.telia.net [213.155.135.70]
    17  249 ms  244 ms  244 ms  adm-bb4-link.telia.net [213.155.136.79]
    18  262 ms  236 ms  236 ms  adm-b3-link.telia.net [213.155.135.35]
    19  232 ms  232 ms  234 ms  hlm1-bfr1-as1299.tilaa.net [62.115.42.158]
    20  238 ms  238 ms  236 ms  hlm1-cr1-v1032.tilaa.net [164.138.24.33]
    21  218 ms  233 ms  239 ms  hlm1-pod9-vc9-v1054.tilaa.net [164.138.24.55]
    22  251 ms  342 ms  241 ms  vps-8048-2348.cloud.tilaa.com [185.24.223.227]
    Trace complete.
    So I'm assuming the difference in those IPs are the problem, what is that about and why does the hotspot mask the IPs like that where the network-tools site doesn't? I guess given that Lockheed Martin is the world's largest defense contractor and it's probably vital to national security that their site be secure it would stand to reason that they might be using security techniques that most sites don't use. I spend a lot of time on flight simulator forums (I am an FS developer and also on the beta team for the Prepar3D sim) and someone usually throws up a post about it somewhere whenever there's a problem with one of the major FS sites. Avsim.net for example is always flakey and there are usually 2 or 3 threads a month on the various forums where someone is complaining about it. I can't remember ever seeing a thread about the Prepar3D site so I can only assume I'm the only one who has problems with it. Further it seems like once I finally get in I can usually surf around the forum without much trouble, it's like once the initial connection has finally broken through then data is allowed to flow almost normally.
    I tried disabling IPv6 although I'm not sure if I did it right, I found it under Settings > LAN in the jetpack admin page. Is that the right setting? It rebooted the hotspot when I unticked the box but it didn't seem to change anything with regard to getting into the Prepar3D site so I put it back. Maybe I changed the wrong setting?
    BTW I usually run the hotspot in "EDVO only" mode since it just seems to work better than "Automatic (4G LTE, CDMA) which was the default. Where I live I've seen 4G service only two or three times in the 3 years I've been on Verizon, those were all back when I was using the Samsung SCH-LC11 hotspot, I've never seen 4G (here) with this MiFi unit. I don't really have a problem with that as it's not advertised as a 4G service area according to the coverage map and in general the MiFi device has been quite a bit more reliable than the Samsung was. I have had the MiFi connected to my sister's laptop in town 5 blocks from the cell tower and seen 4G downloads at 3 MB/sec.
    Thanks again for your replies.
    Jim

  • Problem with ONE SINGLE site with WRT610N

    Hello,
    First, sorry for my very poor English
    I have a Linksys WRT610N with firmware  1.00.03 B15 (latest I think)
    Last three days I have trouble connecting to a single website. This site is www.bdgest.com
    I can access all other sites I want, but that one is very difficult to access, very slow with timeouts and error 404 messages.
    When I connect to my modem with a cable, everything is OK. If I connect with a cable or wifi to the Linksys router, the access is weak. The problem is not my PC because I have the same problem with my I-Pod touch.
    I don't made any change to the Linksys configuration.
    Can somebody help me ?

    I found another site that goes weak. www.enviedeseduire.fr 
    The TRACERT informations for both sites are VERY interresting :
    tracert enviedeseduire.fr
    Détermination de l'itinéraire vers enviedeseduire.fr [91.121.76.160] avec un maximum de 30 sauts :
    1 8 ms 1 ms 1 ms 172.16.1.1
    2 14 ms 24 ms 15 ms 10.89.128.1
    3 13 ms 8 ms 11 ms 78.129.127.113
    4 17 ms 17 ms 12 ms 212.68.211.2
    5 16 ms 16 ms 16 ms 212.68.211.29
    6 36 ms 14 ms 22 ms 212.68.211.133
    7 14 ms 11 ms 15 ms 195.219.227.5
    8 14 ms 19 ms 13 ms 195.219.227.14
    9 20 ms 20 ms 16 ms if-10-1-1-0.tcore1.PVU-Paris.as6453.net [80.231.153.69]
    10 21 ms * 27 ms th2-5-6k.fr.eu [213.186.32.245]
    11 * * * Délai d'attente de la demande dépassé.
    12 29 ms 29 ms 105 ms rbx-g1-a9.fr.eu [91.121.215.133]
    13 111 ms 22 ms * rbx-2-6k.fr.eu [213.186.32.234]
    14 * * * Délai d'attente de la demande dépassé.
    15 23 ms 24 ms 22 ms ns25848.ovh.net [91.121.76.160]
    Itinéraire déterminé.
    tracert bdgest.com
    Détermination de l'itinéraire vers bdgest.com [87.98.152.92] avec un maximum de 30 sauts :
    1 7 ms 1 ms 1 ms 172.16.1.1
    2 11 ms 9 ms 11 ms 10.89.128.1
    3 10 ms 12 ms 8 ms 78.129.127.113
    4 18 ms 17 ms 17 ms 212.68.211.2
    5 62 ms 9 ms 13 ms 212.68.211.29
    6 19 ms 11 ms 17 ms 212.68.211.133
    7 13 ms 16 ms 16 ms 195.219.227.5
    8 91 ms 14 ms 15 ms 195.219.228.1
    9 20 ms 21 ms 17 ms if-10-1-1-0.tcore1.PVU-Paris.as6453.net [80.231.153.69]
    10 * * * Délai d'attente de la demande dépassé.
    11 * * * Délai d'attente de la demande dépassé.
    12 30 ms 29 ms 28 ms rbx-g2-a9.fr.eu [91.121.215.151]
    13 38 ms 24 ms 24 ms rbx-s3-6k.fr.eu [213.186.32.166]
    14 22 ms 30 ms 28 ms 87-98-152-92.ovh.net [87.98.152.92]
    Itinéraire déterminé.
    Everything goes wrong after both  if-10-1-1-0.tcore1.PVU-Paris.as6453.net [80.231.153.69]
    Any idea ?

  • Firefox-only connection problems with some SSL sites network-wide

    I recently starting experiencing problems with sites not loading in Firefox with the error "Connection was interrupted". I've consistently seen this problem trying to load accounts.google.com. The problem exists in both versions 3.6.26 (OS X 10.4 latest available) and 10.0.1 (Windows XP/7/server2k3). In every single case, other browsers on the same system (Safari, various IE versions) can load the same URLs just fine.
    I've already verified no proxy (FF and working browsers, all OSes), disabled ipv6 and preteching in network.dns, disabled all add-ons, deleted existing profiles, cleared cache, and cleared recent history. Existing articles suggest disabling DNS prefetch,

    Nope. Settings are default as far as I can tell. Validate a certificate if it specifies an OCSP server is selected, connection-fails-invalid is not checked.
    I resolved the issue after talking to my ISP - there was a DNS caching issue and I was getting an invalid IP for ocsp.thawte.com - but the behavior seems buggy. The OCSP server connection WAS failing (with a timeout) and per Fiddler FF just keeps issuing repeat OCSP requests before eventually giving up with the interrupted connection error. The "When an OCSP server connection fails" option doesn't seem to do what it says in this case; prior to getting the DNS issue fixed the only solution was to disable OCSP completely.
    Perhaps the problem is that the OCSP connection timed out rather than being refused or unresolvable, but recognizing multiple timeouts as a connection failure might be more user-friendly.

  • Problems with sun studio 12 in suse linux 11

    Hi.
    I installed Sun Studio 12 suse linux with no problems. However, the debugging modules (DBX) are not working any more. When I started Sun Studio, it gave a message about modules that could not be loaded in tha moment. I did not pay attention. But I noticed that all debugging options were disabled.
    Using the module manager, I saw the DBX module was not checked, and I could not change it. I was marked with a red X. So I thought to reinstall the application. However, the uninstall utility doesn't work either.
    According with the documentation, running ./uninstaller does it, but I get the following error message instead
    Exception in thread "main" java.lang.NoClassDefFoundError: uninstall_Sun_Studio_12/class
    Caused by: java.lang.ClassNotFoundException: uninstall_Sun_Studio_12.class
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    I tried to uninstall manually, and then execute installer, by using first the software manager in linux and deleting the producregistry file manually. It worked because I executed the installer. However, in Sun Studio IDE, debugging options are still not available despite I "reinstalled" the application. I checked the log files and they say the file uninstall_Sun_Studio_12.class could not be written.
    So my questions are:
    1. Is there any other way to repair Sun Studio? What could be the possible for this module to stop working?
    2. Does anyone have an idea of why the installer cannot write the uninstaller class?
    I found that perhaps problems regarding Java / Netbeans versions could be the problem, but the ones I have installed are those packages that were installed along with Sun Studio, and both are valid.
    Thank you very much.

    Perhaps you can simply delete the Sun Studio 12 installation tree, because it will not work on SUSE Linux 11.
    This OS is not supported, so any problems you see with SS12 on SUSE 11 will not be fixed.
    But we have a newer version, that should work better.
    You can try to download and install Sun Studio Express 2008/11 (extract pre-installed image from tar.bz2 file).
    Here is a pointer to the web page:
    http://developers.sun.com/sunstudio/downloads/express
    All you need is to provide a email address, and press "Download Now" button.
    You will see a page, that gives you 2 options to download Sun Studio Express 2008/11.
    Use "Option 2": Download Tarfile Installer
    Thanks,
    Nik

  • Problem with some virtual sites and WebDAV

    I have a handful of virtual sites on a snow leopard server that have WebDAV turned on to allows the owners of the site to update them. Things were working fine until this weekend when a site owner informed me he has having problems. I use Dreamweaver CS4 to edit sites and when I set them up, I add my admin account to the WebDAV realm allowed to Read/Write and update the site. I confirmed the problem that the owner was having and had the same problem with WebDAV on that site. I quickly checked several others and found that some work fine while others give me an error. Here is the error message I get from Dreamweaver.
    I checked the log files for the site and received no useful information. I also looked in /var/log for any entries with WebDAV (grep -i webdav *), and again get no useful information. I tried setting up a new site and got the same error. One thing that I did notice is that the site did not have it's ownership changed to _www and the other sites were and get a feeling that might be part of this. Changing the ownership of all files and directories to _www did not fix the problem.
    I'm mystified as to why it works for some sites and not others and am not sure where to go to debug this issue and get it working again.
    DNS seems to be OK on the server.
    minime:~ admin$ sudo changeip -checkhostname
    Password:
    Primary address     = 207.65.119.2
    Current HostName    = minime.theporch.com
    DNS HostName        = minime.theporch.com
    The names match. There is nothing to change.
    dirserv:success = "success"
    Thank you in advance for any help you can offer.

    I'm also having the same issue. I have a feeling its related to a problem with spaces and Java, assuming that the "Top Sites" is generated with some Java application.
    Maybe Septembers OSX update will help.

  • Problems with loading certain sites

    Hello there,
    I'm using Safari 1.3.2 /v312.6) under OS X 10.3.9 on a G4 machine. Since a few weeks, my Safari causes troubles in loading certain sites. For example: www.Gemm.com and then: advanced search. This won't load! I found out, that it will load, when I disable 'Javascript' in the Safari preferences. The same problem occures with some other sites, but try the GEMM one as an example if you want. The Javascript is up to date, however only actualized with Apple's software update and never using any other resources. Other browsers, as Camino or Opera 9 are working fine. Could anyone give me an advice, what to do? Thanks for your reply.
    G4 and G5   Mac OS X (10.3.9)  

    I was actually coming in to post the same question but mine is slightly different.
    One of my sites will not display correctly in Safari on any of our computers. I have two sites that work fine but when I try to view www.pokerplasm.com in Safari it doesn't display correctly at all. Unlike the previous post disabling javascript does not help at all. When viewed in Safari the site that usually is well formatted, etc. when viewed in FireFox, Explorer, etc. displays as a solid brown page with the normally formated text spread across it as just broken up text and separated by lines of numbers. Banners that are usually located on the right side of the screen are moved into the main body text and placed at the bottom [or not displayed at all], and any links to forums, etc. are not shown at all.
    Does anyone know why Safari doesn't display these sites correctly. We validated the site last night thinking that may help, but it made no difference.
    Thanks for your help on this.

Maybe you are looking for