Hi,
few days ago i started receive spam message form form on my site so I decide to add anti spam feature, and i have one problem
This is my site with test form here
As You can see the Captcha is visible on form, but when I tried to send this form this error appear
Any Idea how to solve this?
few days ago i started receive spam message form form on my site so I decide to add anti spam feature, and i have one problem
This is my site with test form here
As You can see the Captcha is visible on form, but when I tried to send this form this error appear
Fatal error: session_start() [<a href='function.session-start'>function.session-start</a>]: Failed to initialize storage module: user (path: /tmp) in /home/users/wikaro/public_html/joomla/components/com_chronocontact/chronocontact.php on line 200
Any Idea how to solve this?
Hi Qbik,
I believe that this is fixed in the latest release, please upgrade and check.
Bob
I believe that this is fixed in the latest release, please upgrade and check.
Bob
Hi Bob,
ok Now it's work, but after entering antispam code and send i have this message
And One more question is there any options to save input fields when the code is not enter?
Now i have popup information that I have have to write this code and all fields are blank again😟
ok Now it's work, but after entering antispam code and send i have this message
Parse error: syntax error, unexpected '<' in /home/users/wikaro/public_html/joomla/components/com_chronocontact/chronocontact.php(425) : eval()'d code on line 51
And One more question is there any options to save input fields when the code is not enter?
Now i have popup information that I have have to write this code and all fields are blank again😟
Hi Qbik,
Check your OnSubmit before code box - looks as though there's a typo in there somewhere (around line 51).
Bob
Check your OnSubmit before code box - looks as though there's a typo in there somewhere (around line 51).
Bob
And please check the FAQs section on how to keep the fields data when the captcha is wrong
Cheers
Max
Cheers
Max
Hi Max,
I try to add text from FAQ and I'm doing something wrong Can You help me with it
on site form look like this http://wikaro.pl/index.php?option=com_chronocontact&task=send&chronoformname=kontakt_testowy
and code of form
[code]<div class="form_kontakt"><label for="nazwisko">Imię i Nazwisko:</label>
<input name="nazwisko" value=" />" type="text"></div>
<div class="form_kontakt"><label for="email">Adres email:</label>
<input class="required validate-email" name="email" value=" />" type="text"></div>
<div class="form_kontakt"><label for="telefon">Telefon: <small>(np. 502072464)</small></label>
0
I try to add text from FAQ and I'm doing something wrong Can You help me with it
on site form look like this http://wikaro.pl/index.php?option=com_chronocontact&task=send&chronoformname=kontakt_testowy
and code of form
[code]<div class="form_kontakt"><label for="nazwisko">Imię i Nazwisko:</label>
<input name="nazwisko" value=" />" type="text"></div>
<div class="form_kontakt"><label for="email">Adres email:</label>
<input class="required validate-email" name="email" value=" />" type="text"></div>
<div class="form_kontakt"><label for="telefon">Telefon: <small>(np. 502072464)</small></label>
0
Hi Qbik,
Replace value=" />" with value ="", or perhaps you want to show the post values in which case it should be
PS I'm sorry, the site is having some serious problems displaying code at the moment :-(
Replace value=" />" with value ="", or perhaps you want to show the post values in which case it should be
value="<?php echo $_POST['field_name']; ?>"
Bob
PS I'm sorry, the site is having some serious problems displaying code at the moment :-(
Thx GreyHead its work now for input and what about text area?
the same code has no efect😟
Other Question how i can change refresh button (add image) of validation code?
the same code has no efect😟
Other Question how i can change refresh button (add image) of validation code?
Hi, textareas don't take a value attribute, add this in between the textarea tags
there is some posts about the refresh captcha here in the forums
Cheers
<ax
there is some posts about the refresh captcha here in the forums
Cheers
<ax
Ok I try to find something about textarea and captcha
but it not work
Now it's look like that
[code] <div class="kontakt_info"><fieldset>
<legend>Masz jakieś uwagi, opinie lub pytania, napisz do nas.</b><br />
Jeśli na stronie są jakieś nieprawidłowości lub błędy napisz nam o tym.</legend>
<img src="../images/mail-48x48.png" alt="kontakt" hspace="20px" vspace="10px" align="right">
<div class="form_kontakt"><label for="nazwisko">Imię i Nazwisko:</label>
<input name="nazwisko" value="<?php echo $_POST['nazwisko']; ?>" type="text"></div>
<div class="form_kontakt"><label for="email">Adres email:</label>
<input class="required validate-email" name="email" value="<?php echo $_POST['email']; ?>" type="text"></div>
<div class="form_kontakt"><label for="telefon">Telefon: <small>(np. 502072464)</small></label>
0
but it not work
Now it's look like that
[code] <div class="kontakt_info"><fieldset>
<legend>Masz jakieś uwagi, opinie lub pytania, napisz do nas.</b><br />
Jeśli na stronie są jakieś nieprawidłowości lub błędy napisz nam o tym.</legend>
<img src="../images/mail-48x48.png" alt="kontakt" hspace="20px" vspace="10px" align="right">
<div class="form_kontakt"><label for="nazwisko">Imię i Nazwisko:</label>
<input name="nazwisko" value="<?php echo $_POST['nazwisko']; ?>" type="text"></div>
<div class="form_kontakt"><label for="email">Adres email:</label>
<input class="required validate-email" name="email" value="<?php echo $_POST['email']; ?>" type="text"></div>
<div class="form_kontakt"><label for="telefon">Telefon: <small>(np. 502072464)</small></label>
0
Hi Qbik,
For a textarea there is no 'value' attribute. The saved code needs to go between the tags:
For a textarea there is no 'value' attribute. The saved code needs to go between the tags:
<textarea name="wiadomosc" ><?php echo $_POST['wiadomosc']; ?></textarea>
Bob
This topic is locked and no more replies can be posted.