Microsoft KB Archive/246894: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
(2 intermediate revisions by the same user not shown)
Line 72: Line 72:
<div class="indent">
<div class="indent">


<pre class="fixed_text">&lt;FORM METHOD=&quot;POST&quot;
<pre class="fixed_text"><FORM METHOD="POST"
     ACTION=&quot;xt_data_add_update.asp&quot;&gt;
     ACTION="xt_data_add_update.asp">
     &lt;INPUT TYPE=&quot;HIDDEN&quot; NAME=&quot;type&quot; VALUE=&quot;Autor&quot;&gt;
     <INPUT TYPE="HIDDEN" NAME="type" VALUE="Autor">
                     </pre>
                     </pre>


Line 83: Line 83:
<div class="indent">
<div class="indent">


<pre class="fixed_text">&lt;FORM METHOD=&quot;POST&quot;
<pre class="fixed_text"><FORM METHOD="POST"
     ACTION=&quot;xt_data_add_update.asp&quot;&gt;
     ACTION="xt_data_add_update.asp">
     &lt;INPUT TYPE=&quot;HIDDEN&quot; NAME=&quot;type&quot; VALUE=&quot;author&quot;&gt;
     <INPUT TYPE="HIDDEN" NAME="type" VALUE="author">
                     </pre>
                     </pre>


</div>
</div>
Note that &quot;author&quot; must be lowercase.
Note that "author" must be lowercase.


</div>
</div>

Latest revision as of 13:50, 21 July 2020

Knowledge Base


Cannot Add New Authors to MSPress Sample Site in German Version of Site Server 3.0

Article ID: 246894

Article Last Modified on 11/25/2002



APPLIES TO

  • Microsoft Site Server 3.0 Commerce Edition



This article was previously published under Q246894

SYMPTOMS

When you try to add a new author to the MSPress sample site in the German version of Site Server 3.0, Commerce Edition, the following error message occurs:


Wir knnen Ihre Anforderung leider nicht verarbeiten:
Unbekannter ADD-Typ verwendet: Autor
Bitte gehen Sie zurck, korrigieren Sie den Fehler, und wiederholen Sie den Vorgang.


Note: This only effects the German version of Site Server Commerce Edition 3.0

CAUSE

There is a typo in the Author_new.asp file located in the Inetpub\Wwwroot\Mspress30\Manager directory.

RESOLUTION

The following asp code is incorrect:

<FORM METHOD="POST"
    ACTION="xt_data_add_update.asp">
    <INPUT TYPE="HIDDEN" NAME="type" VALUE="Autor">
                    



Change the code to the following:

<FORM METHOD="POST"
    ACTION="xt_data_add_update.asp">
    <INPUT TYPE="HIDDEN" NAME="type" VALUE="author"> 
                    

Note that "author" must be lowercase.

STATUS

Microsoft has confirmed that this is a problem in Site Server 3.0, Commerce Edition.

Keywords: kbbug kbfix KB246894