Problem with determining if JavaScript is Enabled

Can someone explain why this doesn't work:
<!-- <script><jsp:setProperty name="logIt" property="JSEnabled" value="true" /></script> //-->
<noscript><jsp:setProperty name="logIt" property="JSEnabled" value="false" /></noscript>
For your computer, JavaScript is: <small><jsp:getProperty name="logIt" property="JSEnabled" /><small>.
(This will return a string of either "disabled" or "enabled")
I always get the value of disabled, whether JavaScript is turned on or off.
Any help?

The jsp:setProperty tags are executed before the page is
rendered in your browser. (Remember, Java runs on the
serer, not the browser). Since you last setProperty set
the value to false, this is the value you get.

Similar Messages

  • Sudden problems with image behaviors, javascript on Yahoo servers

    I have been posting my website with Yahoo Small Business for 10 years and have never had a server-side issue (to my knowledge).  Until now.
    It should first be pointed out that all my sites are basic HTML, constructed using Dreamweaver 8 on an old Sawtooth PowerMac that runs OS X.3.8.  I am behind the times and know it. 
    I have a 2011 iMAC, but can't afford to upgrade my imaging software.  If adobe cared anything about aspiring designers, they would come down to earth with the pricing (why should current students, educators and private business be given such a massive advantage in pricing?).  Sorry, I'm just being truthful.  I do not use style sheets (though it would be helpful to learn since the web is run by them now).
    Recently, I completely redesigned my personal website.  When I tested it on my old mac, everything functioned as desired.  When tested on my new mac, everything functioned as desired.  When viewed online after uploading to the server, the page appears to load in full, but none of the image behaviors work.  Correction, the "mailto:" link works, but it was assigned in the property inspector rather than the behaviors inspector.  So I have no rollovers and no operative links beyond email.
    I sent the site files to a friend so he could check the site.  He posted it to the server he uses and all the functions on the page work correctly.  This is where I came to suspect that the problem is with the Yahoo servers and not my coding.
    Here is the link to the page that does not work correctly:
    http://www.boughnermultimedia.com
    Here is the link to the page that does work correctly:
    http://www.ericsearsandeyes.com/fboughner
    In Safari, I checked the error console and the following message appears for all java script behaviors:
    ReferenceError: Can't find variable:
    If someone here could check my source code and let me know where Yahoo is having problems with my code, it would be greatly appreciated.
    Thanks.

    Your code is corrupted.  If you view source in browser, you'll see your code is compressed into one long line. This will surely cause JavaScripts to fail.
    Your friend's version works because the code is not compressed.
    In DW, go to Edit > Preferences > Code Format >
    Which Line Break Type are you using? 
    Nancy O.

  • Visualization problem with some website javascript

    Hi to everyone,
    i note visualization problem with some website, it seems some javascript.
    If i visit for example the website
    www.filesonic.com
    I don't tha image in the middle of the website and if i click on "login" no windows appear.
    This is happen with different browser and for example if open the javascript debug with Safari under the section "console" i see this error:
    Failed to load resource: the server responded with a status of 404 (Not Found)
    jquery.history.js:194
    ReferenceError: Can't find variable: jQuery
    global.it.js:2
    ReferenceError: Can't find variable: $
    http://www.filesonic.it/:111
    ReferenceError: Can't find variable: $
    How can i solve it?
    It is not just a problem of this website but also some other
    Javascript update 1 is installed and it is activated in java preferences and also in browser preferences
    Regards

    I think I had a similar problem
    https://discussions.apple.com/message/25094902#25094902
    Solution was:
    https://discussions.apple.com/thread/4222662

  • Problem with execution of JavaScript in HTML control with SAPGUI 6.20

    I have added some lines of code JavaScript in a modified class copy of the class CL_DD_DOCUMENT, that is executed well in frontend SAPGUI 6.40, but it is not executed in SAPGUI 6.20 with patch level 65 or 38.
    Somebody knows because it is passing this?
    I really need to know what is the problem. Any help will be welcome...
    thanks,
    Robert.

    HI,
    May be the below from SAP documentation is useful to you.
    Implementation considerations
    The interface of the SAP HTML Viewer is the same for all platforms, but its functions will depend on the underlying HTML browser. Under SAPGUI for Windows , it uses Microsoft Internet Explorer 4.0 as an external browser. Under SAPGUI for Java, it uses the Ice Browser, which is installed with the GUI.
    http://help.sap.com/saphelp_47x200/helpdata/en/c9/147a36c70d2354e10000009b38f839/frameset.htm
    Thanks
    Ramakrishna

  • Problem with "determining gapless playback"

    Hi.
    How do I turn this off completely? If I press X then it slows down a bit and also it creates mistakes on some of my songs .
    Is there any way to stop this feature? If not I propose a way of dealing with this to be available in the next Itunes upgrade .
    EDIT: Also, since my Itunes library is different than my actual library, how can I put the old directory so that I tunes will use it as my library ? I do not wish to burden my Hard Disk any more . Thanks .
    Message was edited by: Storm XIII

    bumping this post because I'm having a similar problem. Mine does this for 170 songs (of 7,000 in my library) every time I sync my iPod. Most of the songs it goes through are purchased from iTunes and I don't even have the whole albums, just one or two songs. POINTLESS waste of time!
    For the record, though, I love the gapless feature (listened to Abbey Road tonight on my iPod, worked beautifully!). Just want to know why it has to determine the info again for EVERY SYNC!

  • Problem with onBlur=validate_int_range javascript function

    Hi i have a java script function which is use to check for the range of the integer i enter.
    The function works fine but the problem is once i click ok on the validation boxes that come up when i enter a wrong value it allows me to click the submit box.But if i click back on the text box then the validation box appears again.
    The report code is
    to_clob(HTMLDB_ITEM.text(5, pref_val,15,30,'onBlur="validate_int_range('||pref_name||','''||pref_expr||''');"style="width: 220px;"',pref_name)),
    and the javascript function is
    <script language="JavaScript1.1" type="text/javascript">
    function validate_int_range(pref_name, range) {
    var pos = range.indexOf('-');
    var start_val, end_val;
    var actual_val = pref_name.value;
    var non_digits = /\D/;
    if ( non_digits.test(actual_val) ) {
    alert('Validation Fail: only digits allowed. ' + range);
    if ( pos > 0 ) {
    start_val = range.substr(0,pos);
    end_val = range.substr(pos+1, range.length-pos+1);
    if ( eval(actual_val) < eval(start_val) ) {
    alert('Validation Fail: smaller value than ' + start_val );
    if ( eval(actual_val) > eval(end_val) ) {
    alert('Validation Fail: larger value than ' + end_val);
    function validate_rule(pref_name, exp) {       
    var actual_val = pref_name.value;
    expression = new RegExp(exp);
    if ( ! expression.test(actual_val) ) {
    alert('Validation Fail: Rule ' + exp);
    </script>

    >thanks you so much for the code, I'll test it out and
    reply with >the
    >results.
    Shouldn't that be "Thanks so much for the Cod"?
    "Dave Bar" <[email protected]> wrote in message
    news:e28c7t$hk1$[email protected]..
    > ahh yes, you are right..
    > I should have said OR instead of AND.
    > If Field is blank OR range is not between 1900 &
    2006. Thanks for catching
    > and pointing that out.
    >
    > thanks you so much for the code, I'll test it out and
    reply with the
    > results.
    > Thanks
    > -Dave
    >
    >
    >
    >
    > "Lionstone" <[email protected]> wrote
    in message
    > news:e28b1a$fu5$[email protected]..
    >> That's probably because you asked for a fish to help
    you out
    >>
    >>> Can some kind sole help with a modified version
    to also check for an
    >>> entered
    >>> number range?
    >>
    >> and fish can't type.
    >>
    >> You're off on the logic though, since something is
    not likely to be both
    >> blank and outside a certain number range. If it's
    blank or outside the
    >> range, either condition is sufficient for an error,
    right?
    >> You also want to make sure that no letters, etc, are
    entered, because
    >> that will mess up your comparisons to the other
    numbers. Keeping in mind
    >> that javascript validation can be defeated by
    sneezing and you'll need to
    >> re-validate on the server, this will be closer to
    right (not tested).
    >>
    >> var ThisYear = ThisForm_Right.DOB_Year.value;
    >> ThisYear = ThisYear.replace(/[^/d]/g,"");
    >> if(ThisYear.length == 0)
    >> {
    >> alert("Please enter the year of your DOB.");
    >> ThisForm_Right.DOB_Year.focus();
    >> return false;
    >> }
    >> else
    >> {
    >> ThisYear = parseInt(ThisYear);
    >> if((ThisYear < 1900) || (ThisYear > 2006))
    >> {
    >> alert ("The year of your DOB must be between 1900
    and 2006.");
    >> ThisForm_Right.DOB_Year.focus();
    >> return false;
    >> }
    >> }
    >>
    >>
    >
    >

  • Having problem with calling external javascript functions in LV

    Hi,
    I found this VI: http://lavag.org/topic/10304-discuss-calling-external-javascript/, which I believe can be really helpful for my work. The problem is I can't get it to run based on the following problem:
     - Apparently the "ScriptControl" cannot be loaded
    I am using LabView 8.6, and this vi has been produced in a 8.0 version. Do you think this is the problem? If not, what could cause this problem running this VI?
    Thanks,
    Diogo

    Hi,
    To start I am using this examplo from the google code page.
    <!DOCTYPE html "-//W3C//DTD XHTML 1.0 Strict//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
        <title>Google Maps JavaScript API Example</title>
        <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=abcdefg&sensor=true_or_false"
                type="text/javascript"></script>
        <script type="text/javascript">
        function initialize() {
          if (GBrowserIsCompatible()) {
            var map = new GMap2(document.getElementById("map_canvas"));
            map.setCenter(new GLatLng(37.4419, -122.1419), 13);
            map.setUIToDefault();
        </script>
      </head>
      <body onload="initialize()" onunload="GUnload()">
        <div id="map_canvas" style="width: 500px; height: 300px"></div>
      </body>
    </html>  
    It loads a basic map, and is saved in a html file created for example in Notepad. Basically as I said the VI is very simple, see next image.
    But like I said, this strategy does not allow labview to interface dinamically with the javasscript code in the html file. Doing it this way, I would have to constantly update the code in the file with new coordinates and loading the map again. This causes the mentioned flickering problem that I also had with static maps.
    Diogo

  • Problem with loading two Javascript scripts

    I loaded a dreamweaver widget called "twitter client" to pull user info from twitter. Problem is that it will not show up in the browser. I can get it to load and show, but only after I comment out the footer information. The footer is pulled externaly and calls on a Javascript hosted on another server. Here is the code showing the problem. I also loaded it to http://www.tempthirteen.com/template/. I am really at a loss as to what is causing it.
    Thanks so much!!
    Nate

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" dir="ltr">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="shortcut icon" href="images/struct/favicon.ico" type="image/x-icon" />
    <title>Your Site Title Here</title>
    <meta name="robots" content="all" />
    <meta name="Copyright" content="(c) Duke University" />
    <meta name="description" content="This is where you can put a description of your organization or your website." />
    <meta name="keywords" content="duke university, duke" />
    <meta content="en-US" name="language"/>
    <link type="text/css" rel="stylesheet" media="all" href="css/screen.css" />
    <link type="text/css" rel="stylesheet" media="print" href="css/print.css" />
    <link rel="stylesheet" href="http://brandbar.oit.duke.edu/header/css/screen-globalHeader-nologo.css" type="text/css" media="Screen" />
    <link rel="stylesheet" href="http://brandbar.oit.duke.edu/footer/footer.css" type="text/css" media="screen" />
    <!--[if lte IE 6]><link rel="stylesheet" href="css/screen-ie6.css" type="text/css" />
    <link rel="stylesheet" href="http://brandbar.oit.duke.edu/footer/footer-ie6.css" type="text/css" /><![endif]-->
    <script src="scripts/jquery.js" type="text/javascript"></script>
    <script src="scripts/twitter_search.js" type="text/javascript"></script>
    <style type="text/css">
    /* BeginOAWidget_Instance_2125523: #twitter */
            #twitter { height: 258px; width: 292px}
    /* EndOAWidget_Instance_2125523 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2125523" binding="#twitter" />
    </oa:widgets>
    -->
    </script>
    </head>
    <body class="shadowBackground">
    <script type="text/javascript" src="http://brandbar.oit.duke.edu/header/bar.html"></script> 
    <div id="pagewrapper" class="home">
        <div id="header">
            <div id="logo">
                <p><a href="http://www.duke.edu" tabindex="1" accesskey="1"><img src="images/struct/logo-print.png" width="141" height="64" alt="Duke University" /></a></p>
                <h1><a href="index.html" rel="home" tabindex="2" accesskey="2">Your Site Title Here</a></h1>
            </div>
            <form action="http://www.duke.edu/search/" method="get" id="search-inBanner" name="duke_search">
            <label for="search-field-banner"><input class="text" id="search-field-banner" name="q" value="Search" tabindex="3" accesskey="3" /></label>
            <button id="search-go-banner" type="submit" tabindex="4" accesskey="4">Go</button>
              </form>
        </div>   
        <div id="wrapper">
        <div id="nav">
            <ul>
                <li><a href="landing.html" tabindex="5" accesskey="5">Nav Link One Here</a></li>
                <li><a href="landing.html" tabindex="6" accesskey="6">Nav Item 2</a></li>
                <li><a href="landing.html" tabindex="7" accesskey="7">Nav 3</a></li>
                <li><a href="landing.html" tabindex="8" accesskey="8">Nav Link Four Goes Here</a></li>
                <li><a href="landing.html" class="last" tabindex="9" accesskey="9">Nav Link 5</a></li>
            </ul>   
        </div>   
        <div id="content">
            <div class="col">
              <div id="twitter"></div>
                <script type="text/javascript">
    // BeginOAWidget_Instance_2125523: #twitter
    $(document).ready(function() {
        $('#twitter').twitterSearch({
            term: 'from%3Adukenews',
            title: '',
            titleLink: 'http://www.twitter.com/dukenews',
            bird: false,                    // true or false (show or hide twitter bird image)
            birdSrc: '/images/tweet.gif',         // twitter bird image
            birdLink: 'http://twitter.com/dreamweaver',        // url that twitter bird image should like to
            avatar: true,                // true or false (show or hide twitter profile images)
            anchors: true,            // true or false (enable embedded links in tweets)
            animOutSpeed: 500,    // speed of animation for top tweet when removed
            animInSpeed: 500,    // speed of scroll animation for moving tweets up
            pause: true,                // true or false (pause on hover)
            time: true,                    // true or false (show or hide the time that the tweet was sent)
            timeout: 4000,            // delay betweet tweet scroll
            css: {
                a:     { textDecoration: 'none', color: '#3B5998', fontWeight: 'normal'},
                container: { backgroundColor: '#eee' },
                frame: { border: '10px solid #33ccff', borderRadius: '10px', '-moz-border-radius': '10px', '-webkit-border-radius': '10px' },
                img:   { width: '30px', height: '30px' },
                loading: { color: '#888' },
                text:  {fontWeight: 'normal', fontSize: '12px', color:'#000'},
                time:  { fontSize: '12px', color: '#CCC' },
                title: { backgroundColor: '#33ccff', padding: '0px 0 0px 0', textAlign: 'center', fontWeight: 'bold', fontSize: '14px'},
                titleLink: { textDecoration: 'none', color: '#3B5998' },
                user:  { fontSize: '12px'},
                fail:  { background: '#6cc5c3 url(/images/failwhale.png) no-repeat 50% 50%'}
    // EndOAWidget_Instance_2125523
                </script>
    <h2> </h2>
                <h2>Header Here</h2>
                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas commodo mauris ut erat fermentum ultrices. In mauris est, ullamcorper eu molestie eu, semper ut sapien. In eu auctor quam. Etiam gravida lorem sed dolor iaculis vestibulum.</p>
            </div>
            <div class="col">
                <img src="images/placeholder-2.jpg" alt="Placeholder 2" height="214" width="304"  />
                <h2>Header Here</h2>
                <ul>
                    <li><a href="http://www.duke.edu">Link Sample 1</a></li>
                    <li><a href="http://www.duke.edu">Link Sample 2</a></li>
                    <li><a href="http://www.duke.edu">Link Sample 3</a></li>
                    <li><a href="http://www.duke.edu">Link Sample 4</a></li>
                </ul>
            </div>
            <div class="col last">
                <img src="images/placeholder-3.jpg" alt="Placeholder 3" height="214" width="305"  />
                <h2>Contact Us</h2>
                <p>Office of Lorem Ipsum<br />
                30000 Allen Drive<br />
                PO Box 9000<br  />
                Durham, NC 27707</p>
                <p><span class="cat">Phone: </span>919-555-1234<br />
                <span class="cat">Fax: </span>919-555-1234<br />
                <span class="cat">Email: </span><a href="mailto:[email protected]">[email protected]</a></p>
            </div>
        </div>
        </div>
    </div>
    <script src="http://brandbar.oit.duke.edu/footer/videos_podcasts_full.php" type="text/javascript"></script>
    <script type="text/javascript"  src="http://brandbar.oit.duke.edu/header/js/jquery.min.js"></script>
    <script type="text/javascript" src="http://brandbar.oit.duke.edu/header/js/globalHeader.js"></script>
    <script type="text/javascript"  src="http://brandbar.oit.duke.edu/footer/js/footer.js" ></script>
    </body>
    </html>

  • Problem with apostrophe  in javascript

    Hi all,
    I have a text retrieved from the database.It has apostrophe in it. Since the value is dynamic,i cannot manually use backslash to escape the apostrophe.my javscript coding isnt working if the text contains apostrophe.Help me out to solve the problem.
    Thanks in Advance

    hi,
    I tried with the replace function
    <%String s="yahoo's mail's";
    String s1=s.replaceAll("'","\'");
    System.out.println("---------------------------------------"+s1);
    %>I am replacing"{color:#ff0000} *'*{color} " with "{color:#ff0000} *\'*{color} "
    The expect the output to be yahoo\'s mail\'s.
    But the output is yahoo's mail's.
    I don't the mistake i am making here.Help me out.
    thanks
    Edited by: beginjava on Nov 10, 2008 5:04 AM

  • Problem with Reload in javascript

    Hi All,
    In my application, When you click on delete icon i am calling javascript function as shown below:
    function DeleteSchedule(vjobid,vscheid)
    if(confirm('Are you sure you want to delete?'))
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=deleteSchedule',0);
    get.add('F103_JOBID',vjobid)
    get.add('F104_SCHID',vscheid)
    gReturn = get.get();
    alert(gReturn);
    location.reload(true);
    In the above function at the end i am calling location.reload(true) which intrun the entire page will gets reload and the record is getting deleted succesfully.
    Now the problem if the commit that particular location.reload functionality the page will not be refereshed even though the record is geeting deleted from backend.
    How we can overcome the above problem without the reload, since in my application there can either insert/update/delete records.
    For ex: In one situation if i had a new record and before clicking on sumbit button i will try to delete the old record, now in that case the new record what i had added is not stored since in delete functionality the reload concept is called.
    Hope u have got my problem!!
    Thanks in Advance,
    Anoo..

    Hi,
    Try change location.reload(true); to
    doSubmit('REQUEST_FOR_INSERT');Br,Jari

  • Problems with determination...

    Hey there,
    Im making a program that can simulate like 20.000 hands of poker to get a rough estimate what the average chance is the poker player gets something, for example a flush. The program exists of 2 classes, a card class and a cardDeck class and a test class.
    Card Class:
    public class card
         private String face;
         public String kleur;
         public card(String cardFace, String cardKleur)
              face = cardFace;
              kleur = cardKleur;
         /*public String getFace()
              return face;
         public String getKleur()
              return kleur;
         public String toString()
              return kleur + " " + face;
    }Note that it allready has 2 methods to determine the kleur(suit) and face but i commented em for now.
    cardDeck.class
    import java.util.Random;
    public class cardDeck
         private card deck[];
         private int currentCard;
         private final int NUMBER_OF_CARDS = 52;
         private Random randomnumber;
         public String valueCardKleur;
         public String faces[];
         public String kleuren[];
         public cardDeck()     
              String kleuren[] = {"Harten","Ruiten","Klaveren","Schoppen"     };
              String faces[] = {"Aas","Koning","Vrouw","Boer","Tien","Negen","Acht","Zeven","Zes","Vijf","Vier","Drie","Twee"     };
              deck = new card[NUMBER_OF_CARDS];
              currentCard = 0;
              randomnumber = new Random();
              for(int i =0; i<deck.length;i++)
                   deck[i] = new card(faces[i%13], kleuren[i/13]);
              //String valueCardKleur = kleuren[0];
         public void shuffle()
              currentCard = 0;
              for(int first = 0;first < deck.length; first++)
                   int second = randomnumber.nextInt(NUMBER_OF_CARDS);
                   card temp = deck[first];
                   deck[first] = deck[second];
                   deck[second] = temp;
         public card dealCard()
              if(currentCard < deck.length)
                   return deck[currentCard++];
              else
                   return null;
         /*public card giveCard()
              return deck[currentCard];
         public String cardValueKleur()     
              return faces[0];
    }Here are also 2 commented methods I added to maybe get to the right endsolution.
    cardDeckTest.java
    public class cardDeckTest
         public static void main(String[] args)
              String gedeeldeKaart = "";
              String gedeeldeKaart2 = "";
              String gedeeldeKaartKleur = "";
              String gedeeldeKaartFace;
              cardDeck myDeck = new cardDeck();
              myDeck.shuffle();
              for(int i=0;i <7; i++)
                   //System.out.println(myDeck.dealCard());
                   gedeeldeKaart = myDeck.dealCard().toString();
                   //gedeeldeKaart2 = myDeck.giveCard().getFace().toString();//door deze structuur kijg ik vast dubbele kaarten
                   //String gedeeldeKaartKleur = myDeck.dealCard().getKleur();
                   if(gedeeldeKaart.equals ("Schoppen"))
                        System.out.println(gedeeldeKaart + " ----> -100 punten kneus");
                   else
                        System.out.println(gedeeldeKaart);
    }Now the problem is... I want to add 2 methods like getFace() and getKleur() to determine the suit and face of the dealt cards so i can determine what hand i have... The rest allready works (like the shuffling and dealing) but the last part is after 3 hours still unsuccesful so maybe you guys have any hints or maybe even straight solutions...
    I sure hope so... Thanks in advance

    Now the problem is... I want to add 2 methods like
    getFace() and getKleur() to determine the suit and
    face of the dealt cards so i can determine what hand
    i have... If you need them why have you commented out these two methods in Card?
    What you'll need is a class called Player or so who can hold a hand of cards.
    Could you be more specific about your problem. Is it how to evaluate a hand of Poker?

  • Problem with determining suitable audio driver,pls help me.

    Hello,
    I have hp pavilion dv2690ee , and when i install windows xp , i used this driver for audio device sp34386.exe , though my cpu is intel.
    But i replaced motherboard, now when i install sp34386.exe , this message appear "driver installation failed could not find the media device for this driver" , how can i know my new motherboard model, or which model my motherboard is compatible with it?
    Note : i am using linux os , and it detect this audio device model: 82801H (ICH8 Family) HD Audio Controller

    Hi:
    Did you first install the MS UAA driver?  If you didn't that is probably your problem.
    See the guide on this link under Moderate Models. There is a guide for installing the audio drivers.
    http://h30434.www3.hp.com/t5/Operating-systems-and-software/General-XP-Downgrade-Guide-for-HP-Laptop...
    Paul

  • Problem With Site Access

    Hi guys,
    I've been trying to access the Market Place as well as my account at: www.renderosity.com, but when I click to the Market Place on the link I get the message below (included also is my correspondence with the site's admin). I can access the rest of the site with no seeming problem. And it seems to be only that site that I have been having problems with. I have Java enabled and the block pop-up is unchecked. But it is only with that site that I am having problems with. They have had no reports of any problems from their side. Thanks for any help. Please reply to my other e-mail: [email protected]
    Cheers;-)
    Michael
    404 Not Found
    http://219.235.223.223/forbid.htm
    Not Found
    The requested URL /forbid.htm was not found on this server.
    Apache/1.3.22 Server at WebRoad Port 80
    Hi Michael,
    Do you have javascript enabled? Are you running any security software?
    Karen
    Michael Boatwright wrote:
    Hi Karen,
    I finally managed to get through to the Market Place, but this is how the page looked (See Attached image). Any ideas? I still cannot get into my account though.
    Hi Michael,
    I've never seen that url before which is why I got confused.
    Try this one and let me know if you have problems.
    http://market.renderosity.com/
    Regards,
    Debbie Montique
    MarketPlace Manager
    Michael Boatwright wrote:
    Hi Deb,
    and thanks for the quick reply. That URL is what shows up when I click on the Market Place Home. Maybe it's just temporary. I certainly hope so! I've never had this problem before. I guess time will tell. Thanks again.
    Cheers,
    Michael
    Hi Michael,
    We're not aware of any problem on the site. Can you please give me the exact URL that you are trying to access?
    Additionally, it may be helpful if you log out of Renderosity, empty your cookies and cache on your browser, and then sign back in and see if that resolves the problem.
    Kind regards,
    Karen Janes
    Renderosity Admin Team
    Michael Boatwright wrote:
    Hi guys,
    I have never had problems before with access to any part of Rendo and even now I can access parts of your site, but I can neither access my account nor the market place. Is there something going on from your end? Here is the message that I'm getting when I try to get to those parts of the site that I just mentioned:

    Hi Ayesh,
    Per my test, it seems that the Site Collection Access is only available for the local group of that site collection which is used to store the site collection local term sets.
    To make the site collection local group available, please refer to the steps in the link below:
    http://www.dotnetsharepoint.com/2013/10/how-to-get-site-collection-local-term.html#.U-PVOvmSyd5
    After that, you will see the Site Collection Access when you click the group in Term Store Management.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Problem with steps in health app!!

    Hello guys, i have problem with my health app, i enable steps in the app but it doesnt count even a single step, it says "No Data". I searched in the Internet the way i can enable steps and did exactly what it says but nothing. Can someone help?

    you can use 3rd party apps to monitor your activity, but this will drain you iPhone Battery significantly more than if using the integrated Motion coprocessor.

  • Keyboard problem with Mac os 10.7 + FileVault to + login screen

    I have a problem with the login screen, the keyboard is recognized as a English keyboard but I have a french keyboard. The menu to change keyboard language is not displayed on login screen since 10.7.2.
    During the session the keyboard is French, it's only for the login screen.
    How can I fix this and switch my keyboard layout to French in login screen ?
    Thank you.

    How did you find out the keyboard layout changed to English? I had a similar problem with my first login after enabling FileVault, and now I think this might be a cause? I have a Spanish keyboard.
    See this thread also:
    https://discussions.apple.com/message/16293028#16293028
    Rolando

Maybe you are looking for