Problema con Form contatti

fradamma

Utente Attivo
28 Set 2012
93
0
0
Salve a tutti,
ho comprato da un sito un form in Ajax+Php molto carino. L'ho installato sulla mia nuova web page ed ho settato tutti i parametri nel modo corretto come indicato nella documentazione. Il problema è che quando vado a cliccare sul tasto "send" per provare mi esce questo messaggio:

"There was a problem

The page cannot be displayed
The page you are looking for cannot be displayed because an invalid method (HTTP verb) was used to attempt access.

Please try the following:

Contact the Web site administrator if you believe that this request should be allowed.
Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.

HTTP Error 405 - The HTTP verb used to access this page is not allowed.Internet Information Services (IIS)

Technical Information (for support personnel)

Go to Microsoft Product Support Services and perform a title search for the words HTTP and 405.
Open IIS Help, which is accessible in IIS Manager (inetmgr),
and search for topics titled Setting Application Mappings, Securing Your Site with Web Site Permissions, and About Custom Error Messages. "


Cosa significa? Avrei bisogno di una grande mano, entro fine settimana il sito dovrebbe essere on-line!
Grazie anticipatamente...
 

fradamma

Utente Attivo
28 Set 2012
93
0
0
HTML:
				    <!-- To copy the form start here -->
    <div class="quform-outer">
        <form class="quform" action="quform/process.php" method="post" enctype="multipart/form-data">
            <div class="quform-wrapper">
   	           <!-- <h1>Quform - <a href="http://codecanyon.net/item/quform-simple-yet-powerful-ajax-contact-form/148273">Ajax Contact Form</a></h1>
   	            <h2>Easy to install into any PHP / HTML web page</h2> -->
	   	        <div class="quform-inner">
	   	            <div class="quform-title">Richiesta Preventivo</div>
	                <div class="quform-elements quform-cf">                    
                        <!-- Begin Name element -->
                        <div class="element-wrapper name-element-wrapper quform-cf">
                            <label for="name">IMPRESA <span class="red">*</span></label>
                            <div class="input-wrapper name-input-wrapper">
                                <input class="name-element" id="name" type="text" name="name" />
                            </div>
                        </div>
                        <!-- End Name element -->
                        <!-- Begin Email element -->
                        <div class="element-wrapper email-element-wrapper quform-cf">
                            <label for="email">E-MAIL <span class="red">*</span></label>
                            <div class="input-wrapper email-input-wrapper">
                                <input class="email-element quform-tooltip" id="email" type="text" name="email" title="We will never send you spam" />
                            </div>
                        </div>
                        <!-- End Email element -->
                        <!-- Begin Phone element -->
                        <div class="element-wrapper phone-element-wrapper quform-cf">
                            <label for="phone">TELEFONO</label>
                            <div class="input-wrapper phone-input-wrapper">
                                <input class="phone-element quform-tooltip" id="phone" type="text" name="phone" title="We will only use your phone number to contact you regarding your enquiry" />
                            </div>
                        </div>
                        <!-- End Phone element -->
                        <!-- Begin Subject element -->
                        <div class="element-wrapper subject-element-wrapper quform-cf">
                            <label for="subject">OGGETTO</label>
                            <div class="input-wrapper subject-input-wrapper quform-cf">
                                <select id="subject" name="subject">
                                    <option value="General enquiry">RICHIESTA PREVENTIVO</option>
                                    <option value="Sales enquiry">RICHIESTA INFORMAZIONI</option>
                                    <option value="Support enquiry">RICHIESTA CONSULENZA</option>
                                    <option value="Other">ALTRO</option>
                                </select>
                            </div>
                        </div>
                        <!-- End Subject element -->
                        <!-- Begin Message element -->
                        <div class="element-wrapper message-element-wrapper quform-cf">
                            <label for="message">MESSAGGIO<span class="red">*</span></label>
                            <div class="input-wrapper message-input-wrapper quform-cf">
                                <textarea class="message-element" id="message" name="message" rows="7" cols="45"></textarea>
                            </div>
                        </div>
                        <!-- End Message element -->
                        <!-- Begin Captcha element -->
                        <div class="element-wrapper captcha-element-wrapper quform-cf">
                            <label for="type_the_word">Copia la parola<span class="red">*</span></label>
                            <div class="input-wrapper captcha-input-wrapper quform-cf">
                                <div class="quform-captcha-img"><img src="quform/images/captcha.png" alt="" /></div>
                                <input id="type_the_word" class="captcha-element" type="text" name="type_the_word" />
                            </div>
                        </div>
                        <!-- End Captcha element -->
                        <!-- Begin Submit button -->
                        <div class="button-wrapper submit-button-wrapper quform-cf">
                            <div class="quform-loading-wrap"><span class="loading">Prego attendere...</span></div>
                            <div class="button-input-wrapper submit-button-input-wrapper">
                                <input type="submit" class="quform-submit-button" value="Send" name="boom" />
                            </div>
                        </div>
                        <!-- End Submit button -->
	               </div><!-- .quform-elements -->
	           </div><!-- .quform-inner -->	  
            </div><!-- .quform-wrapper -->         
        </form>
	</div><!-- .quform-outer -->	
    <!-- To copy the form end here -->
Codice:
jQuery(document).ready(function($) {
	$('form.quform').Quform();

	// Tooltip settings
	if ($.isFunction($.fn.qtip)) {
		$('.quform-tooltip').qtip({
			content: {
				text: false
			},
			style: {
				classes: 'quform-tt ui-tooltip ui-tooltip-shadow',
				width: '180px'
			},
			position: {
				my: 'left center',
				at: 'right center'
			}
		});
	}
	
	// Changes subject to a text field when 'Other' is chosen
	var $subjectWrapper = $('.subject-input-wrapper'),
		subjectHtml = $subjectWrapper.html();
	
	$('#subject').live('change', function () {		
		if ($(this).val() == 'Other') {
			$subjectWrapper.html('<input name="subject" type="text" id="subject" value="" />');
			
			$cancelOther = $('<a>').click(function () {
				$subjectWrapper.html(subjectHtml);
				$(this).remove();
				return false;
			}).attr('href', '#').addClass('cancel-button').attr('title', 'Cancel');
			
			$subjectWrapper.append($cancelOther);
		}
	});
	
	// Preload images
	$.preloadImages([
		'quform/images/close.png',
		'quform/images/success.png',
		'quform/images/err.png'
	]);
}); // End document.ready()
 
Ultima modifica di un moderatore:

fradamma

Utente Attivo
28 Set 2012
93
0
0
Ecco tutto il codice...scusa se ti ho inserito tutto...ma non vorrei lasciare nulla al caso...
Grazie...
 
Discussioni simili
Autore Titolo Forum Risposte Data
M Problema con controllo form in real time jQuery 6
alessandra86 [PHP] Popolamento database con form ricorsivi - problema array (foreach ) PHP 5
Emix Problema con creazione form css/mobile HTML e CSS 3
zammaeng [PHP] Problema form con lista PHP 8
B problema con i form Javascript 0
D Form Registrazione con conferma via email - problema PHP 10
P Problema creazione form con ajax PHP 1
S Problema con Form CSS HTML e CSS 1
F Problema con passaggio variabile da form PHP 3
J Problema con form in bootstrap HTML e CSS 0
O Problema con refresh/form PHP 0
M problema con form scrittura su mysql PHP 3
S Problema php con form PHP 0
T problema strano con procedura di controllo da database, di dati immessi in un form asp Classic ASP 5
A problema con un form HTML e CSS 77
S Problema con l'invio del form in php PHP 0
Y problema allineamento form con internet explorer HTML e CSS 2
A problema con form paypal HTML e CSS 0
A Piccolo problema con form email HTML e CSS 2
P problema validazione form con ajax e jquery Ajax 0
M Problema con form per accesso area riservata ai soci PHP 2
V problema con form in input/output PHP 3
L problema con form ed input PHP 6
D Problema nella validazione di un form con JQUERY ed AjAX jQuery 4
T Problema con form e recupero dati da mysql PHP 17
A problema con un semplice form per un loggin in php PHP 2
C problema invio mail con form php PHP 0
A problema con l'inserimento di valori in una tabella dopo una ricerca da form Classic ASP 1
A problema con form PHP 60
asevenx problema con funzione per far apparire e scomparire un form di commenti PHP 1
G Problema con la creazione di una tabella form PHP 9
C AJAX FORM MAIL - problema con gli a capo nel messaggio Javascript 0
G problema con plugin validazione form jquery jQuery 0
T Problema condizione di un form con mysql PHP 15
D problema con form che invia dati al database PHP 0
M problema form con piu allegati e pagamento online PHP 1
F Problema di reindirizzamento con alcune form PHP 4
I [PHP]Problema sito con form login in ogni pagina PHP 7
I Problema con Form html HTML e CSS 9
C Problema con il doppio invio nel form con onsubmit HTML e CSS 9
D Problema con allegato tramite form mail PHP 2
SolidSnake4 problema con form ajax Javascript 8
P Problema moduli Form.php con browser diversi PHP 2
E problema con Database e form PHP 15
M Problema con form dinamico Ajax 0
R Form Mail: Problema con Frame Supporto Mr.Webmaster 4
Ele84 Problema con form action="mailto:...." HTML e CSS 2
K Problema invio dati form con ASP Classic ASP 8
V Problema con FormMail e form!!! Programmazione 1
cosov Problema con numeri nel form Classic ASP 2

Discussioni simili