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...
 
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:
Ecco tutto il codice...scusa se ti ho inserito tutto...ma non vorrei lasciare nulla al caso...
Grazie...
 

Discussioni simili