Homepage not AutoFill with index

Greetings! I really hope someone can shed some light on this for me.

I was thinking about an existing using Muse site. I published my new site via FTP and now whenever whenever the browser is shown "ifrance.com" it signals a 404 forbidden error error.

However, when I enter my new site "mysite.com/index" appears. I have the browser would automatically go to the "index.html" page in the FTP folder.

I emptied all the old files from the FTP site. The only files in the folder are now for my new site of Muse. There is only a single file 'index.html '.

Someone knows how to fix this? Any help would be greatly appreciated.

Thank you

Hello

I suggest you to contact your host to make index.html as the ' landing page / homepage " your site.

Concerning

Vivek

Tags: Adobe Muse

Similar Questions

  • NLSSORT function not used with CHAR and VARCHAR2 column index

    Hello!

    Create a test bench:
    CREATE TABLE scott.nls_demo
          (
          col_varchar            varchar2(4),
          col_char               char(4),
          col_varchar_NLS_GERMAN varchar2(4),
          col_char_NLS_GERMAN    char(4)
          );
     
    INSERT INTO scott.nls_demo (
          col_varchar,
          col_char,
          col_varchar_NLS_GERMAN,
          col_char_NLS_GERMAN  )
      SELECT 
             substr(object_name,1,4),
             substr(object_name,1,4),
             substr(object_name,1,4),
             substr(object_name,1,4)
      FROM all_objects where rownum<5000;
    
    COMMIT; 
    
    create index scott.i_varchar on scott.nls_demo (col_varchar);  
    create index scott.i_char    on scott.nls_demo (col_char);
    
    create index scott.i_varchar_NLS_GERMAN on scott.nls_demo ( NLSSORT(col_varchar_NLS_GERMAN,'nls_sort=''GERMAN_CI'''));  
    create index scott.i_char_NLS_GERMAN    on scott.nls_demo ( NLSSORT(col_char_NLS_GERMAN,   'nls_sort=''GERMAN_CI'''));
     
    Now "explain plan" these 8 select statements in SQL * more:
    variable c char(4);
    variable v varchar2(4);
    
    exec :c:= 'abc';
    exec :v:= 'abc';
    
    explain plan for SELECT /* 1*/ * FROM scott.nls_demo where col_varchar=:v;
    SELECT * FROM TABLE(dbms_xplan.display);
    
    explain plan for SELECT /* 2*/ * FROM scott.nls_demo where col_char=:c;
    SELECT * FROM TABLE(dbms_xplan.display);
    
    explain plan for SELECT /* 3*/ * FROM scott.nls_demo where col_varchar_NLS_GERMAN=:v;
    SELECT * FROM TABLE(dbms_xplan.display);
    
    explain plan for SELECT /* 4*/ * FROM scott.nls_demo where col_char_NLS_GERMAN=:c;
    SELECT * FROM TABLE(dbms_xplan.display);
    
    ALTER SESSION SET NLS_COMP = linguistic;
    ALTER SESSION SET NLS_SORT = german_ci;
    
    explain plan for SELECT /* 5*/ * FROM scott.nls_demo where col_varchar=:v;
    SELECT * FROM TABLE(dbms_xplan.display);
    
    explain plan for SELECT /* 6*/ * FROM scott.nls_demo where col_char=:c;
    SELECT * FROM TABLE(dbms_xplan.display);
    
    explain plan for SELECT /* 7*/ * FROM scott.nls_demo where col_varchar_NLS_GERMAN=:v;
    SELECT * FROM TABLE(dbms_xplan.display);
    
    explain plan for SELECT /* 8*/ * FROM scott.nls_demo where col_char_NLS_GERMAN=:c;
    SELECT * FROM TABLE(dbms_xplan.display);
     
    What I see on 11.2.0.2 is:

    1.) statement 1 would use the I_VARCHAR index, that is what I expected.
    2.) statement 2 would use the I_CHAR index, that is what I expected.
    3.) no clue used, because none are available right here for you. Understood.
    4.) no clue used, because none are available right here for you. Understood.

    And when define us NLS_SORT = german_ci:

    5.) no clue used, because none are available right here for you. Understood.
    6.) no clue used, because none are available right here for you. Understood.
    7.) I_VARCHAR_NLS_GERMAN we used. Large.
    8.) no index used, although I think that "i_char_NLS_GERMAN" would do the job...

    Why the index 'i_char_NLS_GERMAN' is not used with the 8 statement? Jonathan? Someone else?

    Thanks for your help!
    Marcus

    Not really a reason to not use TANK - although there are many of them.

    More than one reason to not always rely to "explain the plan for?

    All the variables passed in EXPLAINING the PLAN for are treated as VARCHAR2.
    In addition, there is no point setting the values of the variable because they will not cast a look either with MAP to EXPLAIN.

    SQL> CREATE TABLE nls_demo
      2        (
      3        col_varchar            varchar2(4),
      4        col_char               char(4),
      5        col_varchar_NLS_GERMAN varchar2(4),
      6        col_char_NLS_GERMAN    char(4)
      7        );
    
    Table created.
    
    SQL>
    SQL> INSERT INTO nls_demo (
      2        col_varchar,
      3        col_char,
      4        col_varchar_NLS_GERMAN,
      5        col_char_NLS_GERMAN  )
      6    SELECT
      7           substr(object_name,1,4),
      8           substr(object_name,1,4),
      9           substr(object_name,1,4),
     10           substr(object_name,1,4)
     11    FROM all_objects where rownum<5000;
    
    4999 rows created.
    
    SQL>
    SQL> commit; 
    
    Commit complete.
    
    SQL>
    SQL> create index i_varchar on nls_demo (col_varchar);  
    
    Index created.
    
    SQL> create index i_char    on nls_demo (col_char);
    
    Index created.
    
    SQL>
    SQL> create index i_varchar_NLS_GERMAN on nls_demo ( NLSSORT(col_varchar_NLS_GERMAN,'nls_sort=''GERM
    AN_CI'''));  
    
    Index created.
    
    SQL> create index i_char_NLS_GERMAN    on nls_demo ( NLSSORT(col_char_NLS_GERMAN,   'nls_sort=''GERM
    AN_CI'''));
    
    Index created.
    
    SQL>
    SQL> variable c char(4);
    SQL> variable v varchar2(4);
    SQL>
    SQL> exec :c:= 'abc';
    
    PL/SQL procedure successfully completed.
    
    SQL> exec :v:= 'abc';
    
    PL/SQL procedure successfully completed.
    
    SQL>
    SQL> ALTER SESSION SET NLS_COMP = linguistic;
    
    Session altered.
    
    SQL> ALTER SESSION SET NLS_SORT = german_ci;
    
    Session altered.
    
    SQL>
    SQL> SELECT /* 8*/ * FROM nls_demo where col_char_NLS_GERMAN=:c;
    
    no rows selected
    
    SQL> SELECT * FROM TABLE(dbms_xplan.display_cursor);
    
    PLAN_TABLE_OUTPUT
    ----------------------------------------------------------------------------------------------------
    SQL_ID  9su0j5vzuwzyj, child number 0
    -------------------------------------
    SELECT /* 8*/ * FROM nls_demo where col_char_NLS_GERMAN=:c
    
    Plan hash value: 2830339923
    
    -------------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name              | Rows  | Bytes | Cost (%CPU)| Time     |
    -------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |                   |       |       |     3 (100)|          |
    |   1 |  TABLE ACCESS BY INDEX ROWID| NLS_DEMO          |    50 |  2150 |     3   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | I_CHAR_NLS_GERMAN |    20 |       |     1   (0)| 00:00:01 |
    -------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("NLS_DEMO"."SYS_NC00006$"=NLSSORT(:C,'nls_sort=''GERMAN_CI'''))
    
    Note
    -----
       - dynamic sampling used for this statement (level=2)
    
    23 rows selected.
    
    SQL> 
    

    Published by: Dom Brooks on February 21, 2011 15:39

  • All of a sudden, the Yahoo homepage is different with Firefox. How to bring back the old home page? I prefer the one that is always displayed on Internet Explorer

    All of a sudden, the Yahoo homepage is different with Firefox. How to bring back the old home page? I prefer the one that is always displayed on Internet Explorer. I deleted Firefox and re-installed but the rest of the problem. Help, please.

    Well, it's a problem in your Firefox. To me this https://www.yahoo.com/ page looks like the screenshot of IE.

    Many issues of the site can be caused by corrupted cookies or cache. To try to solve these problems, the first step is to clear cookies and cache.
    Note: This will be you temporarily disconnect all sites, you're connected to.
    To clear the cache and cookies to do the following:

    1. Click the menu button

      , choose historic, then on clear recent history...

    2. Under "Time range to clear", select "all".
    3. Now, click the arrow next to details to toggle the active details list.
    4. In the list of details, see the Cache and Cookies and uncheck everything.
    5. Now click the clear now button.

    More information can be found in article to clear your cache, history, and other personal information in Firefox .

    This solve your problems? Please report to us!

  • Old favorites are not compatible with the version 20 + Firefox

    General information:
    I use the old client version 3.6 given that an old utility addon author stopped update and will not work with the new revisions. Despite disabling the update featured on: config and in preferences, the browser refreshes still finished (initially I was using 3.4 and would prefer to use that, but no matter how I try I can is no longer cancel 3.6 to 3.4 even if I reinstall using an Installer 3.4). Accordingly, I had the habit of keeping a copy of my directory of firefox where it updates again without asking, she has. This could help the guy out to meet countless people who have lost their favorites because of the upgrade released this year and I hope that someone to investigate and release a patch/utility to fix the problem.

    Question:
    I checked that the most recent customer since at least version 20 and leave, are not compatible with the old bookmark JSON files. Those who have been upgraded to the latest revision not only lose their favorites, but cannot restore them either, as Firefox only returns the error message: "unable to process the Backup File.

    I confirmed that the files themselves are perfectly intact with no sign of corruption and are as expected. Restore ok old revisions of browser (in my case specifically 3.6), they will not restore the most recent customer reviews. This isn't a fault with bookmark backups, but with new clients (I guess they changed the way they store information in the JSONs at some point. I note in the code for the JSONs GUID has never been used in old revisions, but it is in the most recent revision. Maybe it's causing an incompatibility problem? You just need to adjust the client so that it looks for the GUID and if none can be found to ignore it rather than decide that the file is corrupted.

    Old JSON Code snippet: {"title":"","id":1,"dateAdded":1306666129870000,"lastModified":1306670152435000,"type":"text/x-moz-place-container","root":"placesRoot","children":[{"title":"Bookmarks Menu","id":2,"parent":1,"dateAdded":1306666129870000,"lastModified":1381254048121000,"type":"text/x-moz-place-container","root":"bookmarksMenuFolder","children":[{"title":"Recently Bookmarked","id":6,"parent":2,"annos":[{"name":"Places/SmartBookmark","flags":0,"expires":4,"mimeType":null,"type":3,"value":"RecentlyBookmarked"}],"type":"text/x-moz-place","uri":"place:folder=BOOKMARKS_MENU&folder=UNFILED_BOOKMARKS&folder=TOOLBAR&sort=12&excludeQueries=1&excludeItemIfParentHasAnnotation=livemark%2FfeedURI& maxResults = 10 & queryType = 1 "}, {'index': 1,"title":"Recent Tags", 'id': 7, 'parent': 2,"annos": [{'name':" places/SmartBookmark', 'flags': 0, 'expires': 4, 'mimeType': null, 'type': 3, 'value': 'RecentTags'}], 'type': ' text/x-moz-place', 'uri' ":" place: sort = 14 & type = 6 & maxResults = 10 & queryType = 1 ""}, {'index': 2, 'title': id '',' ': 8, 'parent': 2, 'dateAdded': 1294868015246000, 'lastModified': 1294868015246000, 'type': "text/x-moz-place-separator"}

    New JSON Code Snippet: {"title":"","guid":"5rkFafJ6AnRZ","id":1,"index":0,"dateAdded":1396387525168000,"lastModified":1396387525168000,"type":"text/x-moz-place-container","root":"placesRoot","children":[{"title":"Bookmarks Menu","guid":"m7vLM41-lzQi","id":2,"index":0,"parent":1,"dateAdded":1396387525168000,"lastModified":1396387526173000,"type":"text/x-moz-place-container","root":"bookmarksMenuFolder","children":[{"title":"Recently Bookmarked","guid":"BEffyw6xva93","id":13,"index":0,"parent":2,"dateAdded":1396387526172000,"lastModified":1396387526172000,"annos":[{"name":"Places/SmartBookmark","flags":0,"expires":4 ,"value":"RecentlyBookmarked"}],"type":"text/x-moz-place","uri":"place:folder=BOOKMARKS_MENU&folder=UNFILED_BOOKMARKS&folder=TOOLBAR&queryType=1&sort=12&maxResults=10&excludeQueries=1"},{"title":"Recent Tags","guid":"WmnlbVv38Bjv","id":14,"index":1,"parent":2,"dateAdded":1396387526172000,"lastModified":1396387526172000,"annos":[{"name":"Places/SmartBookmark","flags":0,"expires":4,"value":"RecentTags"}],"type":"text/x-moz-place","uri":"place:type=6&sort=14&maxResults=10"}

    Solution?
    In my case, I had a copy backup of the old directory for review. To restore I opened the copy and export bookmarks as an HTML, that I restored in the most recent client. If you don't have a copy of the former client, the best thing would be to try and re-install an older revision of the customer and either make a copy of the program folder and use another copy of that you can use the new and old customers and you worry about the loss of an older revision, since you'll always have 2 copies of the former client (the one you use the one that you use to restore in the case of at level). Or export bookmarks to an HTML element, and then upgrade the client to the newest and import the HTML instead of JSON files.

    Please review and create a more simple solution to a problem of stupid incompatibility. ^_^

    There are a number of operations in the file places.sqlite which are obsolete.
    For example,.

    setItemGUID (aItemId, aGUID) obsolete since Gecko 14.0 - returns a unique global identifier for the element. This is mainly for use by extensions that synchronize data between different profiles bookmark.



    Former id snippit:
    "title": "','id': 1,"dateAdded": 1306666129870000,"
    New snippit
    {"title": "","guid": "5rkFafJ6AnRZ",""id ": 1, 'index': 0, 'dateAdded': 1396387525168000"}

    There are other identifier here has changed, I think in version 14
    «Note: the importHTMLFromFileToFolder() method has been removed in Gecko 14.0 (14.0 Firefox / Thunderbird 14.0 / SeaMonkey 2.11).»

    But more likely the former is Netscape format: http://msdn.microsoft.com/en-us/libra.../aa753582%28VS.85%29.aspx

    I tried this however: I installed the old version (3.5) and updated to the current version. All my favorites were there. I had to check the updates and could not skip certain steps of 3.5 to 3.6 for example. He then went from 3.6 to 12, then with todays update went straight to 30. They're all here. However nothing is perfect, backup is recommended as well.

    Back to your question, makes it easier for backward compatibility, my hypothesis is that they changed with the updates and ignored some versions. Saved profiles or places.sqlite files may be missing this change because the format changes in the update?

    My suggestion would be filing a bug at this request, providing a few cases where this would be necessary. Currently only the current version of Firefox is supported, which can leave us to the work around that you are currently using.

    Reference documentation for the developer of the places :

  • New version will not work with the yahoo toolbar. How can I solve this problem?

    I downloaded the new version of Firefox, and it will not work with my yahoo toolbar more. It worked fine until I updated to the new version. I went back to the old version 16.0 and now he repeats to me my version is obsolete. How can I solve this problem and get the new version to work with my yahoo toolbar?

    To start, make sure you have the latest Yahoo toolbar.
    http://help.Yahoo.com/kb/index?page=content & y = PROD_TOOL & local = en_CA & ID = SLN5044 & print = false

  • I have Mozilla Firefox 9 and I have Kaspersky Anti-Virus 2012 but Kaspersky not compatiable with Mozilla... How can I solve this problem?

    Question
    I have Mozilla Firefox 9 and I have Kaspersky Anti-Virus 2012 but Kaspersky is not compatible with Mozilla... How can I solve this problem?

    The patch would be released after January 11, 2012 to settle the problem of the incompatibility of plugin.

    Please be aware that you are not less protected, as KIS/KAV products scan on the level of traffic without worrying.

  • the joystick does not work with windows 8

    Hello

    I have a problem using the joystick; When I used it with windows 7 it works, but when I tried to use it with windows 8, even if it is detected in windows, it does not work with any of my VIs(labview_2012).is there an issue with labview, or there is a solution to solve this.

    Thank you

    I wrote this VI in order to study how to integrate a Joystick into my LabVIEW code (I called the "Joystick Sampler" VI).  It has two parts - the lowest fact function, "Query Input Devices", an array of devices, their names and the number of Axes, buttons and POV "hat", in a table called "Joystick Info".  Look at this attention first, in pay to the array Index that seems to match your gamepad, when plug you it into a USB port.

    The upper code can enjoy (one of the) Joystick (s) at the rate of 10 Hz, which allows you to test the buttons, axes, etc..  Note that the primary function of "Initialize the Joystick" takes a parameter (default = 0) which corresponds to the Index of Joystick, you have discovered by looking at the table Info Joystick (see previous paragraph) - If your joystick, for example, seems to be at Index = 4, thread has '4' in the function Initialize Joystick.

    BS

  • Problem and error install monkey island 4 (escape from Monkey Island) - not compatible with my version of windows.

    This is to say that it is not compatible with my version of windows, I tried to open it with other versions of windows, xp, or 2000 and it does not open. He refuses to install and I am really frustrated. The bed 16-bit application error is...

    Any help would be greatly appreciated.

    Thank you

    Hi kirsteenie,

    1 Windows operating system you are using?

    2. you use 32-bit or the 64 bit version of Windows?

    16-bit applications are not supported in 64-bit Windows versions.

    If you use Windows 7, then you can install Windows XP mode and then install the game in XP mode and check if you can play the game or not.

    You can view the following link to use Windows XP mode:

    Install and use Windows XP Mode in Windows 7

    http://Windows.Microsoft.com/en-us/Windows7/install-and-use-Windows-XP-mode-in-Windows-7

    Note: Windows XP mode will run only in Windows 7 Professional, full and business editions.

    You can also contact the game manufacturer support and check.

    http://forums.LucasArts.com/index.jspa

    http://www.LucasArts.com/support/

    Hope this information is useful.

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • precision not align with excel calculation

    my original question was

    How would I do an average of an array of

    index 100 to 300?

    If I have an array of indices of 2000,

    How can I get an average of 100 to 300?

    in

    Excel it would be

    = AVG(C100:C300)

    I did the same method in labview but my numbers aren't right.

    I think that my framework does not go with the precision of the format?

    You also set the wrong lines.

    In LabVIEW, you give the starting index, number of elements. (you seem to have the end index and not the number of elements of wire!)

  • updatebr.inf is invalid fix gfwl not compatible with xp 64?

    original title: updatebr.inf is not valid

    Fix GFWL is not compatible with xp 64?
    Batman ac gives error unknown software exception to the release of game
    no progress
    don't ask about uninstall cycling for batman or gfwl .net 1-4
    gfwl doesn't work for xp 64

    Thank you

    I found the answer

    http://forums.steampowered.com/forums/archive/index.php/t-1870450.html

    and then

    http://www.Microsoft.com/games/en-US/Live/pages/livelaunch.aspx#.

    Initially, I needed this

    WindowsServer2003.WindowsXP - KB938759-v4 - x 64 - ENU.exe

    then this

    wllogin_64.msi

    I was then led the links above

    I read also to turn on automatically updates, I did, but didn't install anything, just turned on

    so now the gfwl lance actually

    He sailed for xbox live windows create page account, where I used my current hotmail account which is recognized

    Bob from your uncle and it works

    The end

  • Mozilla Firefox 10.0.2 is apparently not compatible with my system, and now I can't uninstall it.

    This program is apparently not compatible with my system and now I can't uninstall it, and I have problems loading when you try to access other Web sites, IE Facebook etc.

    You should ask in the forums of Firefox.
    http://forums.mozillazine.org/index.php?c=4
    http://support.Mozilla.org/en-us/questions

  • Vernissage in general case work; No preview with indexed search results folder

    When I open a folder in Explorer, I can click on Office documents and see the fine preview.

    When I run a search not indexed in a folder, I can click on Office documents and see the fine preview.
    When I run a search indexed, I can't get an overview of all documents.
    Any answer why? How can I change something for an overview of the documents with indexed search?
    Thanks in advance.

    Hi Paul,.

    Are you facing this problem only with Office documents?

    You can try to start the fixit from the following link and check if it helps.

    Difficulty of Windows Desktop Search when it hangs or no display of results

    Also see the following article:

    You do not find the files when you are looking for a Windows Vista-based computer, even if the files exist on the computer

  • 2602AP will not register with the 5508 controller

    Hello all-

    We have a 5508 controller that manages the HA to about 20 branches - each branch has its own subnet. We have a single branch (subnet) with new 2602 AP who will not register with the controller. All communications to that subnet appear normal and there is no ACL in place between the AP and the controller. The AP is able to resolve the IP address of the controller via DNS and start the registration process, but then timeout. We have installed 2602 AP successfully to other areas of the branch and they fit without any problems - it is a problem only in one branch. I have attached a few debug messages below for a single point of access (it's a production environment, so I analyzed useless info) and also included messages from the console to a different access point (the console AP messages are the same). There are currently 9 AP here and none of them will record this. Any ideas?

    Capwap debug events:

    * spamApTask0: 11 Dec 14:39:32.904: 44:2 b: 03:9 has: Discovery d1:10 request 10.29.9.190:44306

    * spamApTask0: 11 Dec 14:39:32.904: 44:2 b: 03:9 has: d1:10 join priority Processing status = 0, priority 1 of incoming Ap, MaxLrads = 300, joined Aps = 272

    * spamApTask0: 11 Dec 14:39:32.904: 44:2 b: 03:9's: Discovery d1:10 response to 10.29.9.190:44306

    * spamApTask0: 11 Dec 14:39:32.904: 44:2 b: 03:9's: Discovery d1:10 response to 10.29.9.190:44306

    * spamApTask0: 11 Dec 14:39:32.992: 44:2 b: 03:9 has: d1:10 DISCOVERY LWAPP APPLICATION received at 68:ef:bd:8e:48:6f on port "13"

    * spamApTask0: 14:39:32.992 Dec 11: Discovery 44:2 b request: 03:9 has: d1:10 elements in LWAPP of AP supporting CAPWAP

    * spamApTask0: 14:39:42.903 Dec 11: connection of DTLS 44:2 b: 03:9 has: d1:10 not found, creating new connection for 10:29:9:190 (44306) 10:5:13:4 (5246)

    * spamApTask0: 14:57:52.301 Dec 11: DTLS closed connection events receivedserver e8:ba:70:dc:d1:c0 (10:5:13:4 / 5246) client (10:29:9:190 / 44306)

    * spamApTask0: 11 Dec 14:57:52.301: e8:ba:70:dc:d1:c0 no entry there for AP (10:29:9:190 / 44306)

    * spamApTask0: 11 Dec 14:57:52.301: e8:ba:70:dc:d1:c0 entry no. AP exist in the temporary database for 10.29.9.190:44306

    * spamApTask0: 11 Dec 14:57:53.828: 44:2 b: 03:9 has: Discovery d1:10 request 10.29.9.190:44306

    * spamApTask0: 11 Dec 14:57:53.828: 44:2 b: 03:9 has: d1:10 join priority Processing status = 0, priority 1 of incoming Ap, MaxLrads = 300, joined Aps = 272

    * spamApTask0: 11 Dec 14:57:53.828: 44:2 b: 03:9's: Discovery d1:10 response to 10.29.9.190:44306

    * spamApTask0: 11 Dec 14:57:53.828: 44:2 b: 03:9's: Discovery d1:10 response to 10.29.9.190:44306

    * spamApTask0: 11 Dec 14:57:53.916: 44:2 b: 03:9 has: d1:10 DISCOVERY LWAPP APPLICATION received at 68:ef:bd:8e:48:6f on port "13"

    * spamApTask0: 14:57:53.916 Dec 11: Discovery 44:2 b request: 03:9 has: d1:10 elements in LWAPP of AP supporting CAPWAP

    * spamApTask0: 14:58:03.824 Dec 11: connection of DTLS 44:2 b: 03:9 has: d1:10 not found, creating new connection for 10:29:9:190 (44306) 10:5:13:4 (5246)

    Debug Capwap errors:

    * spamApTask0: 11 Dec 15:17:33.715: e8:ba:70:dc:d1:c0 abolition PT 10.29.9.190 which has not been surveyed

    * spamApTask0: 11 Dec 15:17:33.716: e8:ba:70:dc:d1:c0 DTLS connection has been closed

    Debug Capwap Details:

    * spamApTask0: 11 Dec 15:24:29.419: 44:2 b: 03:9 has: d1:10 CAPWAP control received Msg to 10.29.9.190:44306

    * spamApTask0: 11 Dec 15:24:35.542: 44:2 b: 03:9 has: d1:10 CAPWAP control received Msg to 10.29.9.190:44306

    * spamApTask0: 11 Dec 15:24:41.555: 44:2 b: 03:9 has: d1:10 CAPWAP control received Msg to 10.29.9.190:44306

    * spamApTask0: 11 Dec 15:24:49.555: 44:2 b: 03:9 has: d1:10 CAPWAP control received Msg to 10.29.9.190:44306

    * spamApTask0: 11 Dec 15:25:29.420: 44:2 b: 03:9 has: d1:10 CAPWAP control received Msg to 10.29.9.190:44306

    * spamApTask0: 15:25:29.420 Dec 11: connection of DTLS 44:2 b: 03:9's: d1:10 0x1a1703c8 closed by controller

    * spamApTask0: 15:25:29.421 Dec 11: msg closed connection CAPWAP DTLS

    Journal of the Console from the AP:

    Translate "CISCO-CAPWAP - CONTROLLER.ad.pps.k12.va.us"... the domain server (10.29.8.3)

    * 00:00:57.511 Mar 1: % 3-CAPWAP-ERRORLOG: did not get the server DHCP server log settings. [OK]

    * 00:01:10.511 Mar 1: % 3-CAPWAP-ERRORLOG: go join a capwap controller

    * 16:05:56.000 11 dec: % CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.5.13.4 peer_port: 5246

    * 16:06:17.495 11 dec: % CDP_PD-2-POWER_LOW: all disabled radios - NEGOTIATED WS-C3560E-24PD (68bc.0c03.8015)

    * 11 Dec 16:06:28.231: DTLS_CLIENT_ERROR:... /CAPWAP/base_capwap/DTLS/base_capwap_dtls_connection_db.c:2051 retransmission count Max reached!

    Kern of logging mechanism

    ^

    Invalid entry % detected at ' ^' marker.

    emergency logging trap

    ^

    Invalid entry % detected at ' ^' marker.

    Kern of logging mechanism

    ^

    Invalid entry % detected at ' ^' marker.

    emergency logging trap

    ^

    Invalid entry % detected at ' ^' marker.

    * 16:06:55.999 11 dec: % DTLS-5-SEND_ALERT: send FATAL: close notify alert at 10.5.13.4:5246

    * 16:06:55.999 3 dec: % CLIENTERRORLOG-3-LWAPP: LWAPP LED Init: incorrect led State 255

    * 16:07:06.367 11 dec: % 3-CAPWAP-ERRORLOG: go join a capwap controller

    * 16:07:07.000 11 dec: % CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.5.13.4 peer_port: 5246

    * 11 Dec 16:07:39.151: DTLS_CLIENT_ERROR:... /CAPWAP/base_capwap/DTLS/base_capwap_dtls_connection_db.c:2051 retransmission count Max reached!

    Kern of logging mechanism

    ^

    Invalid entry % detected at ' ^' marker.

    emergency logging trap

    ^

    Invalid entry % detected at ' ^' marker.

    Kern of logging mechanism

    ^

    Invalid entry % detected at ' ^' marker.

    emergency logging trap

    ^

    Invalid entry % detected at ' ^' marker.

    * 16:08:06.999 11 dec: % DTLS-5-SEND_ALERT: send FATAL: close notify alert at 10.5.13.4:5246

    * 16:08:06.999 11 dec: % CLIENTERRORLOG-3-LWAPP: LWAPP LED Init: incorrect led State 255

    * 16:08:17.367 11 dec: % 3-CAPWAP-ERRORLOG: go join a capwap controller

    * 16:08:17.000 11 dec: % CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.5.13.4 peer_port: 5246

    *Dec 17 15:53:47.463: %CAPWAP-3-ERRORLOG: Selected MWAR 'IRC-WLC-5508'(index 0).

    *Dec 17 15:53:47.463: %CAPWAP-3-ERRORLOG: Go join a capwap controller

    *Dec 17 15:53:47.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.5.13.4 peer_port: 5246

    *Dec 17 15:54:23.131: DTLS_CLIENT_ERROR: ../capwap/base_capwap/dtls/base_capwap_dtls_connection_db.c:2051 Max retransmission count reached!

    Get much better.

    WAP has selected the 5508 with good firmware.  WAP sends a JOIN request to 10.5.13.4 but cannot recover anything.

    Firewall?  Routing loop?

    What so-called "remote site", how is it connected to your office?  Dark fiber?  INTERNET SERVICE PROVIDER?

    You know what?  Can you post the output in the following commands:

    1 WAP: sh of stocks;

    2 WLC: sh sysinfo

    Nuts, I should already posed for these info before.

  • Windows 7 Search does not work - only index several elements then stops

    Hi, my first post here.

    I am running windows 7 64 bit on my new PC with all the latest updates installed. I have problems with the windows search tool. The tool detects files but not others and indexing is incomplete. I've been to the dialogue "indexing options" and have rebuilt the index several times and I even changed the location but it indexes only several hundred articles (normally 250-350) then stops and it is. I have thousands of photos and music files and the search tool is not find an any of them, but interesting, that it seems to not find what seems like all my program files and folders, what any of the other locations, even though I checked all the places I want to be pegged as photos, music, videos, etc in the "indexing options" dialog box.

    My computer is a Dell and I had a problem with it a copuple weeks back and the operating system must be reinstalled and I wonder if this could have something to do with it. Other than this problem, everything is fine and I am very happy. I have the latest version of McAfee antivurus and did a complete analysis of the system and have no problem there either...

    I really like to get the search engine works again, at this point when I do a ctrl + F for find, he can't find anything or even appear to be working away or by train. If anyone can help me it would be much appreciated.

    Please let me know if you have any ideas that I really want to get this function to work.

    Kind regards

    Kelvin

    I found the answer. It's a problem of incompatibility with McAfee Security Suite 2010, factory installed by Dell.

    I've tried EVERYTHING! Nothing has worked, search forums etc and after all that I uninstalled McAfee now indexing and seraching is fantastic work.

    Thanks for your help, much appreciated.

  • My Iphone will not update with itunes.

    My Iphone will not update with itunes. He hit a certain part and it's downloading but everything freezes, I can't it never ends downlaoding my photos or anthing. Also, my itunes does not connect to the itunes store.

    Original title: program compatibility Application Applications App Apps game games Legacy Crash crashes Hang hangs

    Hello

    Thanks for posting your query in the Microsoft Community Forums.

    The question you posted would be better suited in the ITunes Forums. I would refer you to the ITunes support link and check if it helps.

    ITunes - Support
    http://www.Apple.com/support/iTunes/

    See also: communities of Apple
    https://discussions.Apple.com/index.jspa

    Back to us for any problem related to the Windows operating system. We will be happy to help you. We at Microsoft try to provide our customers the best experience.

Maybe you are looking for