Thread Rating:
  • 3 Vote(s) - 4.33 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PlugIn Contact Form Getsimple
Hi Cumbe

1. First, Sorry I have written so much ! !

2. I am using your Contact Form plugin in the main body of a page, using the tag format (% cbcontact …. %) . Also I am wanting to use the PHPMailer option for sending an email because I need SMTP authorisation with username and password

3. Note I have implemented the code for the PHPMailer which now seems to work for me. Note the SMTP settings are specific to me, eg I defined the server as localhost, because on the hoster, the smtp mail server is local, etc .. I attach the moded comprueba.php for info

4. But in the process, I have seen a few problems with Contact Form .. in the area of the PHPMailer and also disabling captcha validation ….


Serious problems

5. If have a mail send SMTP problem with PHPMailer, eg the server name is not valid or bad To address, then we get a crash with no form display, because of the following PHPMailer uncaught exception
a. Fatal error: Uncaught exception 'phpmailerException' with message 'SMTP Error: Could not connect to SMTP host.' …
b. Adding in a try catch block solves this … see attached code


6. For the PHPMailer you need a foreach loop to add the other GS user TO addresses … see attached code

7. You have $message->FromName = $from; .. where $from is the from email address from the form field ‘Email’ , but $message->FromName is intended for the from name that appears infront of the from email address , eg From : fromName <me@myemail.com>

a. This gives a mail send SMTP Error

b. This should be
i. $message->From = $from;
ii. $message->FromName = $_POST['contact'][i18n_r('cbcontact/Nb')]; .
c. Where
i. $message->From is the from email address
ii. $message->FromName is the name that appears infrin of the from email address , eg From : fromName <me@myemail.com>

8. $ captcha problem …
a. If I enter false or true in (% cbcontact …. %) for the $captcha boolean parameter, then the function ALWAYS wants to validate the captcha code.

b. That is, it seems that in the captcha validate code the IF statement : if ($captcha == "true" or $captcha == true) ALWAYS returns true, independent of the value of $captcha …

c. I did a test to confirm this, where in my case I am using the (% .. %) syntax, and found that $captcha is a STRING, and it seems from the reference below, that if $captcha = “true” or “false”, then the statement if ($captcha = = true) ALWAYS returns true. It only returns false if $captcha = “0” or “”

d. Check ref : http://stackoverflow.com/questions/47752...lue-in-php

e. Note - I understand that if I use the function directly then the variable $captcha is a boolean … so IN GENERAL it can be EITHER a string or a boolean …
i. In a boolean comparison, String "" and "0" are considered FALSE, else true
ii. if ($mybool == "hello") => It looks like it converts the left hand side to "" if false, or "1" if true, and then does the comp
iii. if ($mystring == true) => It looks like if $mystring is equal to "0" or "", then the IF equates to false, else it equates to true … so if (“false” == true) equates to TRUE !!

f. Also have the same problem with

if ($sendphpmail == false or $sendphpmail == 'false') {
… Use simple PHP mail()
} else if ($sendphpmail == true or $sendphpmail== 'true') {
… Use PHPMailer class
}

… but here this works … for all cases “false”, false, “true”, true … because the first IF tests for “false”/false and not “true”/true …

BUT I think the following would NOT work , even though the sense is the same

if ($sendphpmail == true or $sendphpmail== 'true') {
… Use PHPMailer class
} else if ($sendphpmail == false or $sendphpmail == 'false') {
… Use simple PHP mail()
}

… because the first test ($sendphpmail == true) would return true for BOTH strings “true” and “false” .. ! !

g. SUGGESTION
i. Convert $captcha (which can be either string or boolean) to a DEFINITE boolean, eg $captchaboolean, BEFORE it is used in the captcha validation code … and then it is clear what is happening … Then the validation code can use a simple

if ($captchaboolean = = = true) { do captcha validation }

ii. Looking at the above url ref, I think the following works

$captchaboolean = false;
if (($captcha == false) or (strtolower($captcha) == "false"))
{ $captchaboolean = false; }
else
{ $captchaboolean = true; }

iii. The above gives : $captcha -> $captchabool : "1" ->T, "true"->T, "TRUE"->T, "0"->F, "false"->F, "FALSE"->F, ""->F, "Any"->T, true->T, false->F


iv. … Also can do the same for $sendphpmail … and then do not have to have the complicated if statement above for $sendphpmail for choosing the mail send method. Instead can do

if ($sendphpmailboolean = = = false) {
… Use simple PHP mail()
}
else
{
… Use PHPMailer class
}

v. Also $echocontact .. ??

vi. Can put string/bool to Bool f conversion in a helper fn


Minor Problems

9. $result variable in comprueba.php
a. Mixes string and int .. confusing .. but seems to work
b. Just to say : the php simple mail() function returns a boolean true = success / false = send error
c. And the PHPMailer class send() function also returns boolean true/false
d. .. So why not assign / compare booölean values true/false instead of string / integer ?? … it would be less confusing

10. Why have $message->MsgHTML("$body") and not $message->MsgHTML($body); .. no “ ” around $body => but BOTH ways seem to work anyway.

11. If have a mail send SMTP problem with PHPMailer, eg the server name is not valid or bad To address, then the displayed form fields are reset to empty .. should these be left filled if we have an error ? … the user may think that he email has been sent ..

12. If have a mail send SMTP problem with PHPMailer, eg the server name is not valid or bad To address, then the Javascript alert box is not displayed … So you do not see in he alert box the error message "MSG_guestERR" => 'There was an error sending your message'. I added an echo statement directly before the Javascript alert code and this DOES SHOW the message 'There was an error sending your message' … ? I am not sure why the alert box does not show .. ..

13. Can you do a better docs text description of the installation / How to use the plugin / description of the cbcontact_page( ) function input parameteres … In the beginning I did not fully understand this !

14. Have a warning : Notice: Undefined index: cbcontact/CONTACT in … \plugins\cbcontact_form.php on line 43 ( Line : add_action('pages-sidebar','createSideMenu',array('cbcontact_form', $i18n['cbcontact/CONTACT'])); )


Feature request

15. Feature question - If disable captcha then also not display it ?


Other stuff

16. What does function vermensajes() do ?

Cheers Aldebaran



Moded comprueba.php file :

PHP Code:
<?php
//-----------------------------------------------------------------//
//--- comprueba.php: action if form is submit                      //
//-----------------------------------------------------------------//
if (!isset($_SESSION)) { session_start(); }

  
$imagenCadena $_SESSION["imagencadena"]; 
  
$pot trim(strtolower($imagenCadena));
  
$server_name getenv ("SERVER_NAME");       // Server Name
  
$request_uri getenv ("REQUEST_URI");       // Requested UR

// check antispam 
if (isset($_POST['contact-submit'])) {
    if (
$_POST['contact']['leaveso'] != 'leaveso' or $_POST['contact']['leaveblank']!=''){
       echo 
'<html>';
       echo 
'<head>';
       echo 
'</head>';
       echo 
'<body>';
       echo 
'<div style="padding: 20px; border: 4px double; margin: 20%;">';
       echo 
i18n_r('cbcontact/spam').'<br />';
       echo 
'<a href="'.$idpret.'">'.i18n_r('cbcontact/back').'</a>';
       echo 
'</div>';
       echo 
'</body>';
       echo 
'</html>';   
       exit; 
    }  
}

//------------------------
//START CONTACT
//------------------------
    
if (@$_GET['tp'] == 'contact') { 
        if (isset(
$_POST['contact-submit'])) {
      
         
// -------------------------------------------------- //
         //  Aldebaran Mod START                                //
         // -------------------------------------------------- //

         // $captcha -> $captchabool :  "1" ->T, "true"->T, "TRUE"->T, "0"->F, "false"->F, "FALSE"->F, ""->F, "Any"->T, true->T, false->F
         
$captchaboolean  false;  
         if ((
$captcha == false)  or  (strtolower($captcha) == "false"))
         { 
$captchaboolean false; }                          
         else 
         { 
$captchaboolean true; }
         
            
// Check captcha         
         
if ($captchaboolean === true)  {
         
// ORIG if ($captcha == "true" or $captcha == true) {
         
         // -------------------------------------------------- //
         //  Aldebaran Mod END                               //
         // -------------------------------------------------- //

                
if ( $pot == trim(strtolower($_POST['contact']['pot']))) {
                    
$err '';
                } else {
                    
$err i18n_r('cbcontact/MSG_CAPTCHA_FAILED');
                }
            }
          
            
//check name
            
if ( $_POST['contact'][i18n_r('cbcontact/Nb')] != '' ) {
                if (
$_POST['contact'][i18n_r('cbcontact/Nb')] == i18n_r('cbcontact/Nb')){
                    
$_POST['contact'][i18n_r('cbcontact/Nb')] = '';
                }
            }

            
//check email
            
if ( $_POST['contact'][i18n_r('cbcontact/Em')] != '' ) {
                if (
$_POST['contact'][i18n_r('cbcontact/Em')] == '(*)'.i18n_r('cbcontact/Em')) {
                    
$_POST['contact'][i18n_r('cbcontact/Em')] = ''//i18n_r('cbcontact/Em');
                
}
                if (
$_POST['contact'][i18n_r('cbcontact/Em')] != i18n_r('cbcontact/Em')){
                    
$from =  $_POST['contact'][i18n_r('cbcontact/Em')];
                } else {
                    
$_POST['contact'][i18n_r('cbcontact/Em')]='';
                }
            }
       
            
//check subject
            
$subject2 ''
            if ( 
$_POST['contact'][i18n_r('cbcontact/Sub')] != '' ) {
                if (
$_POST['contact'][i18n_r('cbcontact/Sub')] != i18n_r('cbcontact/Sub')){
                    
$subject stripslashes(html_entity_decode($_POST['contact'][i18n_r('cbcontact/Sub')]));
                } else { 
                    
$subject i18n_r('cbcontact/CONTACT_FORM_SUB').' '.i18n_r('cbcontact/WHO').' '.$SITENAME;
                    
$_POST['contact'][i18n_r('cbcontact/Sub')] = i18n_r('cbcontact/CONTACT_FORM_SUB').' '.i18n_r('cbcontact/WHO').' '.$SITENAME;
                    
$subject2 =  i18n_r('cbcontact/Sub');
                }
            } 

            
//check message
            
if ( $_POST['contact'][i18n_r('cbcontact/Ms')] != '' ) {
                if (
$_POST['contact'][i18n_r('cbcontact/Ms')] == '(*)'.i18n_r('cbcontact/Ms')) {
                    
$_POST['contact'][i18n_r('cbcontact/Ms')] = '';
                }
                if (
$_POST['contact'][i18n_r('cbcontact/Ms')] == i18n_r('cbcontact/Ms')){
                    
$_POST['contact'][i18n_r('cbcontact/Ms')] = '';
                }
            } 

            
$temp $_POST['contact'];

            
//release variables
            
unset($temp['pot']);
            unset(
$temp['contact-submit']);
            unset(
$temp['submit']);
            unset(
$temp['leaveso']);
            unset(
$temp['leaveblank']);

            if (
$err == '' && trim($_POST['contact'][i18n_r('cbcontact/Em')]) !='' && trim($_POST['contact'][i18n_r('cbcontact/Ms')]) !='') {

                
$headers "From: ".$from."\r\n";
                
$headers .= "Return-Path: ".$from."\r\n";
                
$headers .= "Content-type: text/html; charset=UTF-8 \r\n";

                
$body '"'.$subject.'": <a href="'.substr($idpret,0,-1).'">'.substr($idpret,0,-1).'</a>';
                
$body .= "<hr><br />";

                if ( ! 
file_exists($log_file) ) {
                    
$xml = new SimpleXMLExtended('<channel></channel>');
                } else {
                    
$xmldata file_get_contents($log_file);
                    
$xml = new SimpleXMLExtended($xmldata);
                }

                
$thislog $xml->addChild('entry');
                
$thislog->addChild('date'date('r'));
                
$cdata $thislog->addChild('captcha');
                
$cdata->addCData($captcha);
                
$cdata $thislog->addChild('ip_address');
                
$ip getenv("REMOTE_ADDR"); 
                
$cdata->addCData(htmlentities($ipENT_QUOTES'UTF-8'));
                
$body .= "Ip: "$ip ."<br />"
                foreach ( 
$temp as $key => $value ) {
                    if (
substr($key02) != 'q_') {
                        
$body .= ucfirst($key) .": "stripslashes(html_entity_decode($valueENT_QUOTES'UTF-8')) ."<br />";
                        
$cdata $thislog->addChild(clean_url($key));
                        
$cdata->addCData(stripslashes(html_entity_decode($valueENT_QUOTES'UTF-8')));
                    }
                }
                
XMLsave($xml$log_file);
                
//$seg = 2;  
                
$result 0;  // Aldebaran question, Why not  :  $result = false;  
            
                
if ($sendphpmail == false or $sendphpmail == 'false') {
                    
$result mail($EMAIL,$subject,$body,$headers);
                    if (
$usus != ''){
                        foreach (
$qusus as $key=>$value){
                            
$result =  mail($value,$subject,$body,$headers);
                            
$result1[$key] =  $result;
                        }
                    }
                } else if (
$sendphpmail == true or $sendphpmail== 'true') {
               
//echo 'GSPLUGINPATH: '.GSPLUGINPATH.'<br /<';
                    
if (is_dir(GSPLUGINPATH.'PHPMailer_v5.1') and file_exists(GSPLUGINPATH.'PHPMailer_v5.1/class.phpmailer.php')){
                        require(
GSPLUGINPATH.'PHPMailer_v5.1/class.phpmailer.php');   
                        
$message = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch

                      //GMAIL Configuration
                        /* $message->SMTPSecure = "ssl";                 // sets the prefix to the servier
                        $message->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP se
                        $message->Port       = 465;                   // set the SMTP port for the GMAIL server
                        $message->Username   = "....@gmail.com";   // GMAIL user account: youuser@gmail.com
                        $message->Password   = "....";         // GMAIL password 
                        $message->From   = "....@gmail.com";       // you GMAIL email 
                         */ //end GMAIL Configuration

                        //ONO configuration     
                        /*       $message->SMTPSecure = "";                  // sets the prefix to the servier
                        $message->Host       = "smtp.ono.com";       // sets ONO as the SMTP server
                        $message->Port       = 25;                   // set the SMTP port for the ONO server
                        $message->Username   = "username";               // ONO username 
                        $message->Password   = "pass";            // ONO password
                        $message->From   = "user@ono.com";           // you ono email 
                        */       //end ONO Configuration

                        //HOTMAIL configuration     
                        /*        $message->SMTPSecure = "tls";                   // sets the prefix to the servier
                        $message->Host       = "smtp.live.com";         // sets hotmail as the SMTP server
                        $message->Port       = 587;                     // set the SMTP port for hotmail server
                        $message->Username   = "youruser@hotmail.com";  // hotmail user account
                        $message->Password   = "yourpass";               // hotmail password
                        $message->From   = "youruser@hotmail.com";  */    // you hotmail email 
                        //end HOTMAIL Configuration

                  
                        
$message->CharSet "utf-8"
                        
$message->SMTPDebug false;    // enables SMTP debug information (for testing)
                                                        // false = disabled debug
                                                        // 1 = errors and messages
                                                        // 2 = messages only

                        
$message->IsSMTP();            // telling the class to use SMTP
                  
$message->SMTPAuth true;     // enable SMTP authentication
           

                  // -------------------------------------------------- //
                  //  Aldebaran Mod START                               //
                  // -------------------------------------------------- //
  
                  // Aldebaran : In my case I do not need to set this 
                  // $message->SMTPSecure = "ssl";   
                   
                  // Aldebaran : As this email.php script lives on the same server as 
                  // my email server I am  etting the HOST to localhost

                   
$message->Host "localhost";  // specify main and backup server
                   
$message->Port 25;  // Don't actually need to set this, 25 is the default anyway  
 
                   // Set the SMTP server username/password 
                   
$message->Username "myusername";  // SMTP username
                   
$message->Password "mypassword"// SMTP password

                  // set word wrap to 50 characters
                  
$message->WordWrap 50;

                  
// set email format to HTML
                  
$message->IsHTML(true);

                  
$fromEmail $from;  
                  
$fromName $_POST['contact'][i18n_r('cbcontact/Nb')];
                  
                  
$message->From $fromEmail;  //  The FROM email address - Form field 'Email'   
                  
$message->FromName $fromName;  // Form field 'Name' => The from name seen outside of the < > of the From email address 
                  
$message->Subject $subject// Form field 'Subject' 
                  
$message->MsgHTML($body);  // Set the message body 

                  // Add the TO email address of the main GS admin user. 
                  
$message->AddAddress($EMAIL''); 
                  
// echo 'Sent email to : '.$EMAIL.'<br>';
                  // Add the TO email addresses of the other GS users 
                   
                  
if ($usus != ''){
                           foreach (
$qusus as $key=>$value) { 
                        
$message->AddAddress($value''); 
                        
// echo 'Sent email to : '.$value.'<br>';
                           
}
                       } 

                  try {
                     
$result $message->Send();
                  }
                  catch (
phpmailerException   $ex){ 
                     
// echo $ex;
                  
}
                  catch (
Exception   $ex){ 
                     
// echo $ex;
                  
}
  
                  
// -------------------------------------------------- //
                  //  Aldebaran Mod END                               //
                  // -------------------------------------------------- //

                    
} else {
                        echo 
strtoupper(i18n_r('cbcontact/errphphmail'))."\n";
                    }
                }
           
                
//results    
               
if ($result == '1') {   //  Aldebaran question : Why not  :  if ($result == true) 
                    
$msgshw i18n_r('cbcontact/MSG_CONTACTSUC');
                } else {
                    
//$seg = 10;  
                    
$msgshw '<p>'.i18n_r('cbcontact/MSG_guestERR')."</p>\n";
                    
$msgshw .= "Mailer Error: " $message->ErrorInfo;
                }
            
            } 
// finaliza if $err=''
            
else 
            { 
// if $err != ''

                
if ($subject2 != '') {
                    
$temp[i18n_r('cbcontact/Sub')] = $subject2;
                }
                foreach(
$temp as $key=>$value){
                    
$mi_array[$key] = stripslashes(html_entity_decode($value));
                }

                if (
trim($err) !=''){
                    
$msgshw $err.'\nCaptcha code: '.$pot.'\nCode wrote: '.$_POST['contact']['pot'];
                } else {
                    
$msgshw '*** '.strtoupper(i18n_r('cbcontact/Co')).' ***';
                    
$err $msgshw;
                }
            }

        }
    }

   
// Aldebaran Mod  .. Add some Echos 
   
echo '<br> msgshw = '.$msgshw.'<br>'
   echo 
'<br>';
   echo 
'<br> JUST BEFORE Javascript Alert code <br>'
               
////////////////////////////////////////////////////////////////
//
//     html page or alert of javascript
//
////////////////////////////////////////////////////////////////
?>

    <script type="text/javascript">
<!--    
        alert ("<?php echo $msgshw?>");
-->
    </script>
<?php

/*
  echo '<html>';
  echo '<head>';
  echo '<meta http-equiv="Refresh" content="'.$seg.';url=http://'.$server_name.$MIURL.$miarr.'">';
  echo '</head>';
  echo '<body>';
  echo '<div style="padding: 20px; border: 4px double; margin: 20%;">';
  echo $msgshw;
  echo i18n_r('cbcontact/redir'].$seg.i18n_r('cbcontact/redir1'].i18n_r('cbcontact/back'].'.<br />';
  echo '<a href="http://'.$server_name.$MIURL.$miarr.'">'.i18n_r('cbcontact/back'].'</a>';
  echo '</div>';
  echo '</body>';
  echo '</html>';*/
?>
Reply


Messages In This Thread
PlugIn Contact Form Getsimple - by cumbe - 2010-07-29, 02:56:36
RE: PlugIn Contact Form Getsimple - by Timbow - 2013-06-20, 20:21:16
RE: PlugIn Contact Form Getsimple - by cumbe - 2013-06-23, 01:15:16
RE: PlugIn Contact Form Getsimple - by cumbe - 2013-06-23, 01:20:49
RE: PlugIn Contact Form Getsimple - by leonku - 2013-08-30, 20:32:10
RE: PlugIn Contact Form Getsimple - by cumbe - 2013-09-16, 06:41:43
RE: PlugIn Contact Form Getsimple - by Fluc - 2013-09-18, 04:36:06
RE: PlugIn Contact Form Getsimple - by cumbe - 2013-09-22, 01:15:30
RE: PlugIn Contact Form Getsimple - by Timbow - 2013-09-23, 06:59:27
RE: PlugIn Contact Form Getsimple - by cumbe - 2013-09-24, 01:09:25
RE: PlugIn Contact Form Getsimple - by Timbow - 2013-09-24, 08:26:08
RE: PlugIn Contact Form Getsimple - by cumbe - 2013-09-24, 16:43:37
RE: PlugIn Contact Form Getsimple - by Timbow - 2013-09-24, 18:41:27
RE: PlugIn Contact Form Getsimple - by Timbow - 2013-09-26, 08:49:41
RE: PlugIn Contact Form Getsimple - by antoromani - 2013-10-19, 05:36:11
RE: PlugIn Contact Form Getsimple - by cumbe - 2013-10-20, 17:55:23
RE: PlugIn Contact Form Getsimple - by antoromani - 2013-10-21, 13:07:50
RE: PlugIn Contact Form Getsimple - by SoHo22 - 2014-04-30, 00:32:24
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-05-02, 04:58:00
RE: PlugIn Contact Form Getsimple - by krupers - 2014-05-06, 09:18:13
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-05-07, 04:02:55
RE: PlugIn Contact Form Getsimple - by mengi - 2014-05-15, 09:36:05
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-05-15, 16:31:20
RE: PlugIn Contact Form Getsimple - by Timbow - 2014-06-05, 23:59:14
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-06-07, 03:21:20
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-06-08, 01:33:36
RE: PlugIn Contact Form Getsimple - by Timbow - 2014-06-08, 08:04:25
RE: PlugIn Contact Form Getsimple - by ferchosj - 2014-06-21, 00:36:33
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-06-23, 06:17:22
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-07-27, 01:59:39
RE: PlugIn Contact Form Getsimple - by akd - 2014-08-06, 23:19:34
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-08-07, 04:52:56
RE: PlugIn Contact Form Getsimple - by akd - 2014-08-07, 20:35:58
RE: PlugIn Contact Form Getsimple - by sarnaiz - 2014-08-14, 07:32:49
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-08-15, 06:48:34
RE: PlugIn Contact Form Getsimple - by sarnaiz - 2014-08-15, 07:35:39
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-08-16, 01:50:11
Security issue - by kaborka - 2014-09-01, 03:41:10
RE: Security issue - by cumbe - 2014-09-02, 16:08:53
RE: PlugIn Contact Form Getsimple - by indyana - 2014-09-01, 09:25:23
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-09-02, 16:24:35
RE: PlugIn Contact Form Getsimple - by kaborka - 2014-09-29, 10:21:19
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-29, 12:50:26
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-29, 13:00:17
RE: PlugIn Contact Form Getsimple - by charlsouma - 2014-09-29, 21:27:05
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-29, 23:53:45
RE: PlugIn Contact Form Getsimple - by charlsouma - 2014-09-30, 00:18:28
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-30, 00:44:23
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-09-30, 01:49:51
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-30, 02:08:10
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-09-30, 02:54:10
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-30, 01:50:50
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-30, 03:33:57
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-30, 03:59:16
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-09-30, 05:05:41
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-30, 05:37:05
RE: PlugIn Contact Form Getsimple - by vtsimple - 2014-09-30, 06:16:35
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-09-30, 20:23:02
RE: PlugIn Contact Form Getsimple - by kaborka - 2014-10-01, 06:52:49
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-10-01, 17:10:29
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-01-10, 18:48:48
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-01-12, 02:30:50
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-01-12, 04:45:17
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-01-12, 22:57:05
RE: PlugIn Contact Form Getsimple - by ch.tanzer - 2015-01-12, 07:58:01
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-01-13, 05:45:32
RE: PlugIn Contact Form Getsimple - by Oleg06 - 2015-01-13, 06:35:21
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-01-19, 22:08:51
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-01-26, 03:45:08
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-01-27, 21:21:38
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-01-19, 22:12:59
Re : Problem language switching - by aldebaran - 2015-02-01, 21:00:10
RE: Re : Problem language switching - by indyana - 2015-02-17, 22:41:35
RE: PlugIn Contact Form Getsimple - by smilesk - 2015-02-12, 21:17:35
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-02-13, 22:54:06
RE: PlugIn Contact Form Getsimple - by indyana - 2015-02-18, 11:19:19
RE: PlugIn Contact Form Getsimple - by indyana - 2015-02-18, 12:08:09
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-02-21, 23:29:09
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-02-22, 02:35:10
RE: PlugIn Contact Form Getsimple - by aldebaran - 2015-02-22, 20:41:43
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-04-07, 05:21:58
RE: PlugIn Contact Form Getsimple - by maco-nl - 2015-04-12, 17:06:43
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-04-13, 03:09:31
RE: PlugIn Contact Form Getsimple - by maco-nl - 2015-04-13, 05:33:35
RE: PlugIn Contact Form Getsimple - by stwneu - 2015-06-30, 18:43:56
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-07-01, 00:19:03
RE: PlugIn Contact Form Getsimple - by stwneu - 2015-07-01, 19:33:47
RE: PlugIn Contact Form Getsimple - by pentaxeros - 2015-07-07, 05:11:46
RE: PlugIn Contact Form Getsimple - by datiswous - 2015-07-11, 02:20:40
RE: PlugIn Contact Form Getsimple - by 0zz - 2015-08-19, 21:27:42
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-08-20, 00:40:27
RE: PlugIn Contact Form Getsimple - by 0zz - 2015-08-20, 01:16:04
RE: PlugIn Contact Form Getsimple - by ross104 - 2015-09-29, 17:14:34
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-09-30, 04:40:13
RE: PlugIn Contact Form Getsimple - by ross104 - 2015-09-30, 05:05:18
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-10-02, 03:31:36
RE: PlugIn Contact Form Getsimple - by ross104 - 2015-10-02, 04:59:42
RE: PlugIn Contact Form Getsimple - by cumbe - 2015-11-29, 08:27:00
RE: PlugIn Contact Form Getsimple - by alanq - 2016-01-22, 00:29:48
RE: PlugIn Contact Form Getsimple - by cumbe - 2016-01-23, 03:47:56
RE: PlugIn Contact Form Getsimple - by alanq - 2016-01-27, 00:04:06
RE: PlugIn Contact Form Getsimple - by flurl - 2016-04-11, 05:41:07
RE: PlugIn Contact Form Getsimple - by GeoHub01 - 2016-08-02, 06:20:56
RE: PlugIn Contact Form Getsimple - by jlyon1515 - 2016-09-14, 10:46:34
RE: PlugIn Contact Form Getsimple - by roisag - 2016-12-17, 18:59:12
RE: PlugIn Contact Form Getsimple - by orthodox - 2016-12-28, 03:34:42
RE: PlugIn Contact Form Getsimple - by cumbe - 2016-12-29, 02:00:14
RE: PlugIn Contact Form Getsimple - by orthodox - 2017-03-10, 04:23:07
RE: PlugIn Contact Form Getsimple - by indyana - 2017-01-08, 04:33:24
RE: PlugIn Contact Form Getsimple - by cumbe - 2017-03-14, 22:40:21
RE: PlugIn Contact Form Getsimple - by orthodox - 2017-03-15, 04:27:34
RE: PlugIn Contact Form Getsimple - by hameau - 2017-03-17, 00:24:39
RE: PlugIn Contact Form Getsimple - by Timbow - 2017-03-17, 02:01:11
RE: PlugIn Contact Form Getsimple - by bigthanks - 2017-03-15, 04:02:43
RE: PlugIn Contact Form Getsimple - by jlyon1515 - 2017-03-18, 01:45:40
RE: PlugIn Contact Form Getsimple - by orthodox - 2017-04-22, 20:09:28
RE: PlugIn Contact Form Getsimple - by aquarius60 - 2017-05-24, 22:33:49
RE: PlugIn Contact Form Getsimple - by morvy - 2017-05-30, 18:35:54
RE: PlugIn Contact Form Getsimple - by ulli - 2017-10-26, 20:32:33
RE: PlugIn Contact Form Getsimple - by morvy - 2017-11-29, 23:46:00
RE: PlugIn Contact Form Getsimple - by Amid - 2023-04-14, 05:47:20
RE: PlugIn Contact Form Getsimple - by multicolor - 2023-04-14, 07:28:22
RE: PlugIn Contact Form Getsimple - by Amid - 2023-04-15, 07:10:00
RE: PlugIn Contact Form Getsimple - by multicolor - 2023-04-15, 07:40:21
RE: PlugIn Contact Form Getsimple - by Amid - 2023-04-15, 07:50:53
RE: PlugIn Contact Form Getsimple - by multicolor - 2023-04-15, 08:07:52
RE: PlugIn Contact Form Getsimple - by multicolor - 2023-04-15, 08:11:36
RE: PlugIn Contact Form Getsimple - by Amid - 2023-04-15, 19:59:33
RE: PlugIn Contact Form Getsimple - by multicolor - 2023-04-16, 02:53:43
PlugIn Contact Form Getsimple - by marrco - 2010-08-11, 05:57:58
RE: PlugIn Contact Form Getsimple - by charlsouma - 2014-09-13, 02:11:10
RE: PlugIn Contact Form Getsimple - by cumbe - 2014-09-13, 04:06:31
RE: PlugIn Contact Form Getsimple - by charlsouma - 2014-09-29, 21:22:58
PlugIn Contact Form Getsimple - by cumbe - 2010-08-19, 22:16:02
PlugIn Contact Form Getsimple - by madvic - 2010-09-03, 08:07:13
PlugIn Contact Form Getsimple - by cumbe - 2010-09-03, 18:02:21
PlugIn Contact Form Getsimple - by cumbe - 2010-09-13, 05:55:39
PlugIn Contact Form Getsimple - by Oleg06 - 2010-09-13, 06:14:17
PlugIn Contact Form Getsimple - by WebFXWorld - 2010-09-15, 14:17:02
PlugIn Contact Form Getsimple - by pinguino - 2010-09-16, 00:44:19
PlugIn Contact Form Getsimple - by cumbe - 2010-09-16, 04:05:03
PlugIn Contact Form Getsimple - by pinguino - 2010-09-16, 17:09:08
PlugIn Contact Form Getsimple - by xd1936 - 2010-09-22, 10:50:39
PlugIn Contact Form Getsimple - by Zegnåt - 2010-09-22, 16:25:33
PlugIn Contact Form Getsimple - by xd1936 - 2010-09-23, 14:38:04
PlugIn Contact Form Getsimple - by Zegnåt - 2010-09-23, 17:54:04
PlugIn Contact Form Getsimple - by cumbe - 2010-09-23, 19:32:20
PlugIn Contact Form Getsimple - by xd1936 - 2010-09-24, 15:23:17
PlugIn Contact Form Getsimple - by cumbe - 2010-09-25, 19:57:03
PlugIn Contact Form Getsimple - by xd1936 - 2010-09-27, 14:44:00
PlugIn Contact Form Getsimple - by cumbe - 2010-09-27, 16:38:04
PlugIn Contact Form Getsimple - by xd1936 - 2010-09-28, 15:04:24
PlugIn Contact Form Getsimple - by James - 2010-09-30, 00:23:53
PlugIn Contact Form Getsimple - by cumbe - 2010-09-30, 01:03:43
PlugIn Contact Form Getsimple - by James - 2010-09-30, 01:46:06
PlugIn Contact Form Getsimple - by ibizo - 2010-10-05, 00:29:00
PlugIn Contact Form Getsimple - by cumbe - 2010-10-05, 06:32:26
PlugIn Contact Form Getsimple - by ibizo - 2010-10-05, 22:35:01
PlugIn Contact Form Getsimple - by rozmiar - 2010-10-08, 23:48:17
PlugIn Contact Form Getsimple - by jkob - 2010-10-25, 21:50:09
PlugIn Contact Form Getsimple - by fauzievolute - 2011-01-26, 09:59:38
PlugIn Contact Form Getsimple - by Oleg06 - 2011-01-26, 16:46:47
PlugIn Contact Form Getsimple - by cumbe - 2011-01-31, 04:56:07
PlugIn Contact Form Getsimple - by wakh - 2011-03-08, 01:23:50
PlugIn Contact Form Getsimple - by wakh - 2011-03-08, 01:32:42
PlugIn Contact Form Getsimple - by rfuller - 2011-03-08, 10:58:44
PlugIn Contact Form Getsimple - by cumbe - 2011-03-08, 22:14:19
PlugIn Contact Form Getsimple - by rfuller - 2011-03-09, 05:58:38
PlugIn Contact Form Getsimple - by ogee - 2011-03-17, 18:15:46
PlugIn Contact Form Getsimple - by ancalimesh - 2011-04-14, 14:13:21
PlugIn Contact Form Getsimple - by Connie - 2011-04-14, 16:11:57
PlugIn Contact Form Getsimple - by PRAG - 2011-04-14, 18:24:26
PlugIn Contact Form Getsimple - by Connie - 2011-04-14, 19:17:28
PlugIn Contact Form Getsimple - by ancalimesh - 2011-04-15, 04:40:06
PlugIn Contact Form Getsimple - by Connie - 2011-04-15, 15:46:10
PlugIn Contact Form Getsimple - by cumbe - 2011-04-17, 04:13:28
PlugIn Contact Form Getsimple - by cumbe - 2011-04-17, 04:44:20
PlugIn Contact Form Getsimple - by mvlcek - 2011-04-17, 05:22:09
PlugIn Contact Form Getsimple - by pabloch - 2011-04-19, 05:31:41
PlugIn Contact Form Getsimple - by cumbe - 2011-04-20, 04:36:47
PlugIn Contact Form Getsimple - by cumbe - 2011-04-26, 05:25:48
PlugIn Contact Form Getsimple - by Oleg06 - 2011-04-26, 05:53:06
PlugIn Contact Form Getsimple - by cumbe - 2011-04-26, 07:22:03
PlugIn Contact Form Getsimple - by Oleg06 - 2011-04-26, 18:19:00
PlugIn Contact Form Getsimple - by cumbe - 2011-04-27, 03:31:29
PlugIn Contact Form Getsimple - by Oleg06 - 2011-04-27, 04:08:25
PlugIn Contact Form Getsimple - by cumbe - 2011-04-27, 06:52:56
PlugIn Contact Form Getsimple - by xd1936 - 2011-05-27, 03:44:29
PlugIn Contact Form Getsimple - by cumbe - 2011-05-28, 05:20:14
PlugIn Contact Form Getsimple - by xd1936 - 2011-05-29, 01:25:23
PlugIn Contact Form Getsimple - by pipila - 2011-11-20, 12:35:12
PlugIn Contact Form Getsimple - by cumbe - 2011-11-21, 04:24:43
PlugIn Contact Form Getsimple - by pipila - 2011-11-22, 04:20:15
PlugIn Contact Form Getsimple - by rfuller - 2011-11-22, 04:53:13
PlugIn Contact Form Getsimple - by cumbe - 2011-11-22, 05:03:21
PlugIn Contact Form Getsimple - by pipila - 2011-11-22, 12:29:35
PlugIn Contact Form Getsimple - by pipila - 2011-11-22, 13:11:32
PlugIn Contact Form Getsimple - by cumbe - 2011-11-22, 20:03:30
PlugIn Contact Form Getsimple - by pipila - 2011-11-23, 07:25:23
PlugIn Contact Form Getsimple - by mintika - 2011-11-23, 12:24:28
PlugIn Contact Form Getsimple - by cumbe - 2011-12-12, 04:59:59
PlugIn Contact Form Getsimple - by mintika - 2011-12-26, 15:15:29
PlugIn Contact Form Getsimple - by Dominic - 2012-02-09, 04:46:01
PlugIn Contact Form Getsimple - by cumbe - 2012-02-10, 17:18:22
PlugIn Contact Form Getsimple - by Dominic - 2012-02-11, 01:11:02
PlugIn Contact Form Getsimple - by cumbe - 2012-02-12, 09:46:30
PlugIn Contact Form Getsimple - by devaintfire - 2012-03-13, 22:33:55
PlugIn Contact Form Getsimple - by cumbe - 2012-03-17, 08:04:07
PlugIn Contact Form Getsimple - by AceLine - 2012-03-31, 15:52:58
PlugIn Contact Form Getsimple - by cumbe - 2012-04-01, 00:32:02
PlugIn Contact Form Getsimple - by AceLine - 2012-04-01, 08:10:36
PlugIn Contact Form Getsimple - by AceLine - 2012-04-01, 08:41:37
PlugIn Contact Form Getsimple - by cumbe - 2012-04-01, 10:00:42
PlugIn Contact Form Getsimple - by eisendrath - 2012-04-11, 21:04:50
PlugIn Contact Form Getsimple - by cumbe - 2012-04-12, 04:38:58
PlugIn Contact Form Getsimple - by eisendrath - 2012-04-12, 06:03:44
PlugIn Contact Form Getsimple - by cumbe - 2012-04-12, 06:59:37
PlugIn Contact Form Getsimple - by Carlos - 2012-04-12, 07:24:53
PlugIn Contact Form Getsimple - by eisendrath - 2012-04-12, 15:20:34
PlugIn Contact Form Getsimple - by andyash - 2012-04-15, 01:03:40
PlugIn Contact Form Getsimple - by cumbe - 2012-04-15, 02:30:00
PlugIn Contact Form Getsimple - by andyash - 2012-04-15, 02:48:18
PlugIn Contact Form Getsimple - by cumbe - 2012-04-15, 03:16:04
PlugIn Contact Form Getsimple - by andyash - 2012-04-16, 01:14:50
PlugIn Contact Form Getsimple - by cumbe - 2012-04-16, 06:54:09
PlugIn Contact Form Getsimple - by melted349 - 2012-07-02, 05:53:06
PlugIn Contact Form Getsimple - by madvic - 2012-07-06, 02:41:30
PlugIn Contact Form Getsimple - by melted349 - 2012-07-06, 03:31:42
PlugIn Contact Form Getsimple - by cumbe - 2012-08-02, 03:54:09
PlugIn Contact Form Getsimple - by majki - 2012-08-07, 21:39:58



Users browsing this thread: 2 Guest(s)