Foros del Web » Programación para mayores de 30 ;) » Programación General »

Problema formulario

Estas en el tema de Problema formulario en el foro de Programación General en Foros del Web. Hola a todo me descargue una plantilla [URL="http://www.eplantillas.com/plantillas-flash/25126.html"]25126[/URL] y tengo problemas Mi problema es que al intentar configurar el xml del formulario de contacto web ...
  #1 (permalink)  
Antiguo 23/01/2011, 03:28
 
Fecha de Ingreso: enero-2011
Mensajes: 6
Antigüedad: 13 años, 3 meses
Puntos: 0
Pregunta Problema formulario

Hola a todo me descargue una plantilla [URL="http://www.eplantillas.com/plantillas-flash/25126.html"]25126[/URL] y tengo problemas


Mi problema es que al intentar configurar el xml del formulario de contacto web (En los soucers me viene un .asp y un .php) no se si me servirán para algo

Código XML:
Ver original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3.         Please read this information to learn how to set up the contact form integrated
  4.         into the template.
  5.        
  6.         This readme file explains in details the meaning of the settings that can be
  7.         done in the fcContactFormConfiguration.xml configuration file.
  8.        
  9.         It is recommended for you to use an XML editor to make changes to this file
  10.         because it’s less possible to make an error in the markup which can cause to
  11.         a not working contact form.
  12.  -->
  13. <contactFormConfiguration>
  14.            
  15.     <!--
  16.             An e-mail address which will be used to receive messages from your contact form.
  17.             You can specify several e-mail addresses separating them with a comma.
  18.       -->
  19.     <emailTo>[email protected]</emailTo>
  20.    
  21.     <!--
  22.             A server script type which will process sending e-mails. It depends on your
  23.             hosting and in the current version of the contact form it is allowed to use
  24.             two types:  php (Apache, PHP Hosting); asp (IIS web server, ASP).
  25.       -->
  26.     <serverProcessorType>php</serverProcessorType>
  27.    
  28.     <!--
  29.             A name of the script file which process sending e-mails on your server (without
  30.             extension). The name contact is used by default.
  31.       -->
  32.     <serverProcessorFileName>contact</serverProcessorFileName>
  33.    
  34.     <!--
  35.             Set whether to validate only required fields (true/false).  The default value is
  36.             true which means the not required fields of your contact form will not be validated.
  37.             For example if the e-mail field of your form is set as not required (imagine it)
  38.             the form will be processed even if the user types in an incorrect e-mail address.
  39.       -->
  40.     <validateRequiredOnly>false</validateRequiredOnly>
  41.    
  42.     <!--
  43.             Set whether to submit the form when the Enter key is pressed even if the focus is
  44.             not on the Submit button (true/false).
  45.       -->
  46.     <submitFormOnEnter>false</submitFormOnEnter>
  47.    
  48.     <!--
  49.             Text showing to the user when the form is submitted without any errors.
  50.       -->
  51.     <messageSentText>Thank you for your message.</messageSentText>
  52.    
  53.     <!--
  54.             Text showing in case the form is not submitted because of a server error.
  55.       -->
  56.     <messageSentFailedText>Thank you for your message.</messageSentFailedText>
  57.    
  58.     <!--
  59.             Text your visitor will see while waiting till the processing is over.
  60.       -->
  61.     <formProcessingText>processing...</formProcessingText>
  62.    
  63.     <!--
  64.             Your SMTP server (for ASP only).
  65.       -->
  66.     <smtpServer>localhost</smtpServer>
  67.    
  68.     <!--
  69.             Your SMTP port (for ASP only).
  70.       -->
  71.     <smtpPort>25</smtpPort>
  72.    
  73.     <!--
  74.             Set whether to send the message as a plain text (true) or as HTML (false).
  75.       -->
  76.     <plainText>false</plainText>
  77.    
  78.     <!--
  79.             ID of the input field (in the structure XML file) to use for the “from: ”
  80.             or email to use instead (for example: [email protected]).
  81.       -->
  82.     <emailFromSource>2</emailFromSource>
  83.    
  84.     <!--
  85.             Subject of the e-mails that will be sent through this contact form or ID of
  86.             the input field (in the structure XML file) to use for the “subject: ” label
  87.             in your e-mail client.
  88.       -->
  89.     <subjectSource>Contact Form from your site</subjectSource>
  90.    
  91.     <!--
  92.             Validation error messages that are showing to the user when the form fails to
  93.             validate. The form supports different types of validators. You can change the
  94.             text of the error messages the validators produce here.
  95.        
  96.             You can use the {LABEL} keyword in these messages. It will replace it with the
  97.             label value of the field where an error occurs.
  98.       -->
  99.     <validationErrorMessages>
  100.            
  101.         <!--
  102.                 A required field is not filled in.
  103.           -->
  104.         <message type="fieldIsRequired">{LABEL} is required.</message>
  105.        
  106.         <!--   
  107.                 The specified e-mail address is incorrect.
  108.           -->
  109.         <message type="emailNotValid">{LABEL} - is not valid email address.</message>
  110.        
  111.         <!--
  112.                 The specified number of characters in a field is less than a required minimum.
  113.           -->
  114.         <message type="minCharsLimitError">{LABEL} - The specified number of characters in a field is less than a required minimum.</message>
  115.        
  116.         <!--
  117.                 The specified string does not match with the regular expression.
  118.           -->
  119.         <message type="reqExpError">{LABEL} - The specified string does not match with the regular expression.</message>
  120.        
  121.         <!--
  122.                 The specified number is greater than an acceptable biggest number for this field.
  123.           -->
  124.         <message type="biggerThanMaxError">{LABEL} - The specified number is greater than an acceptable biggest number for this field.</message>
  125.        
  126.         <!--
  127.                 The specified number is lower than an acceptable lowest number for this field.
  128.           -->
  129.         <message type="lowerThanMinError">{LABEL} - The specified number is lower than an acceptable lowest number for this field.</message>
  130.        
  131.         <!--
  132.                 The data is not a number.
  133.           -->
  134.         <message type="notANumberError">{LABEL} - The data is not a number.</message>
  135.        
  136.         <!--
  137.                 The specified number must not be negative.
  138.           -->
  139.         <message type="negativeError">{LABEL} - The specified number must not be negative.</message>
  140.        
  141.         <!--
  142.                 The minimum number of variants is not selected
  143.           -->
  144.         <message type="minRequirementError">{LABEL} - The minimum number of variants is not selected</message>
  145.        
  146.         <!--
  147.                 The number of variants selected exceeds the maximum
  148.           -->
  149.         <message type="maxRequirementError">{LABEL} - The number of variants selected exceeds the maximum</message>
  150.        
  151.         <!--
  152.                 The fields that should be equal do not match
  153.           -->
  154.         <message type="shouldBeEqualError">{LABEL} - values do not match</message>
  155.  
  156.         <!--
  157.                 The date has wrong format.
  158.           -->
  159.         <message type="dateIsNotValidError">{LABEL} - date has wrong format</message>
  160.  
  161.     </validationErrorMessages>
  162.    
  163. </contactFormConfiguration>

Muchas gracias a todos de antemano

Última edición por Stain3; 23/01/2011 a las 03:38
  #2 (permalink)  
Antiguo 24/01/2011, 14:16
Avatar de Libras
Colaborador
 
Fecha de Ingreso: agosto-2006
Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 17 años, 8 meses
Puntos: 774
Respuesta: Problema formulario

y cual es el problema??

Etiquetas: formulario
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 10:52.