Hi.
Magnificent component! Me viene como anillo al dedo, but... I have 2 troubles without resolve. I have read all the posts in the forum about "'image verification' doesn't appear" and "Upload files 'not uploads the files to upload folder'" and can´t happen resolved the troubles. ¿what I can make?
The important for me is UPLOAD FILES. Thanks!
I use the sample form too for test😟
Versiones en uso:
Joomla! 1.0.13 Stable [ Sunglow ] 21 July 2007
ChronoForms 2.3.7 installation package for Joomla 1.0.x sites :dry:
Pantallas:
Magnificent component! Me viene como anillo al dedo, but... I have 2 troubles without resolve. I have read all the posts in the forum about "'image verification' doesn't appear" and "Upload files 'not uploads the files to upload folder'" and can´t happen resolved the troubles. ¿what I can make?
The important for me is UPLOAD FILES. Thanks!
I use the sample form too for test😟
Versiones en uso:
Joomla! 1.0.13 Stable [ Sunglow ] 21 July 2007
ChronoForms 2.3.7 installation package for Joomla 1.0.x sites :dry:
Pantallas:
Hi dmpitu,
Please take a form back from the Form Manager and post it her or mail it to me at the address in my sig and I'll take a closer look.
Bob
Please take a form back from the Form Manager and post it her or mail it to me at the address in my sig and I'll take a closer look.
Bob
Modificado de:
http://www.chronoengine.com/content/view/32/39/
the code used in the form:
<?php
global $my,$mosConfig_live_site;
// first we check if the user is logged
// if so, then we fill out some fields and set them to read only
$readonl="";
$in="";
$out="";
if ($my->id) {
$out=" SELECTED";
$readonl=" readonly='readonly'";
} else {
$in=" SELECTED";
}
?>
<fieldset>
<legend>Sus Datos </legend>
<label for="fromname">Usuario: </label>
<input type="text" name="fromname" id="fromname" tabindex="510" value="<?php echo $my->name?>"<?php echo $readonl?> /><br />
<label for="fromemail">Email: </label>
<input type="text" name="fromemail" id="fromemail" tabindex="511" value="<?php echo $my->email?>"<?php echo $readonl?> /> <br />
<label for="inout">Nombre del grupo o artista: </label>
<label>
<input name="nombre" type="text" id="nombre" size="30">
</label>
<br />
<label for="futdate">fecha de creación: </label>
<input type="text" name="futdate" id="futdate" tabindex="513" value="dd/mm/yyyy" /> <br />
<i>Detalle del grupo o artista </i><br />
<br />
<label for="details">El texto : </label>
<textarea cols=49 rows=4 name="details" id="details" tabindex="514"></textarea>
<br>
<label>
<input type="file" name="file">
<br>
</label>
<input type="file" name="file2">
<br />
</fieldset>
<fieldset>
<legend>EnvÃo de datos </legend>
<!-- To use the following line, you have to change the chronoforms code as well, please see http://www.chronoengine.com/index.php?option=com_fireboard&Itemid=37&func=view&catid=2&id=912 -->
<!-- This line makes sure that only visitors see the image verification, not the registered members -->
<?php if(!$my->id){ ?>
{imageverification}
<?php } ?>
<input type="submit" name="Submit" value="1">
<input type="submit" value="2">
<input type="submit" value="Enviar" tabindex="515" />
<input type="reset" value="borrar datos" tabindex="516" />
</fieldset>
<script language="javascript">
document.ChronoContact_checkincheckout.fromname.focus();
</script>
RUN the file test_gd.php
<?php print_r(gd_info()); ?>
RESULT:
Array ( [GD Version] => bundled (2.0.28 compatible) [FreeType Support] => 1 [FreeType Linkage] => with freetype [T1Lib Support] => [GIF Read Support] => 1 [GIF Create Support] => 1 [JPG Support] => 1 [PNG Support] => 1 [WBMP Support] => 1 [XPM Support] => 1 [XBM Support] => 1 [JIS-mapped Japanese Font Support] => )
Thanks!🙂
<br><br>Post edited by: dmpitu, at: 2008/01/25 01:59
http://www.chronoengine.com/content/view/32/39/
the code used in the form:
<?php
global $my,$mosConfig_live_site;
// first we check if the user is logged
// if so, then we fill out some fields and set them to read only
$readonl="";
$in="";
$out="";
if ($my->id) {
$out=" SELECTED";
$readonl=" readonly='readonly'";
} else {
$in=" SELECTED";
}
?>
<fieldset>
<legend>Sus Datos </legend>
<label for="fromname">Usuario: </label>
<input type="text" name="fromname" id="fromname" tabindex="510" value="<?php echo $my->name?>"<?php echo $readonl?> /><br />
<label for="fromemail">Email: </label>
<input type="text" name="fromemail" id="fromemail" tabindex="511" value="<?php echo $my->email?>"<?php echo $readonl?> /> <br />
<label for="inout">Nombre del grupo o artista: </label>
<label>
<input name="nombre" type="text" id="nombre" size="30">
</label>
<br />
<label for="futdate">fecha de creación: </label>
<input type="text" name="futdate" id="futdate" tabindex="513" value="dd/mm/yyyy" /> <br />
<i>Detalle del grupo o artista </i><br />
<br />
<label for="details">El texto : </label>
<textarea cols=49 rows=4 name="details" id="details" tabindex="514"></textarea>
<br>
<label>
<input type="file" name="file">
<br>
</label>
<input type="file" name="file2">
<br />
</fieldset>
<fieldset>
<legend>EnvÃo de datos </legend>
<!-- To use the following line, you have to change the chronoforms code as well, please see http://www.chronoengine.com/index.php?option=com_fireboard&Itemid=37&func=view&catid=2&id=912 -->
<!-- This line makes sure that only visitors see the image verification, not the registered members -->
<?php if(!$my->id){ ?>
{imageverification}
<?php } ?>
<input type="submit" name="Submit" value="1">
<input type="submit" value="2">
<input type="submit" value="Enviar" tabindex="515" />
<input type="reset" value="borrar datos" tabindex="516" />
</fieldset>
<script language="javascript">
document.ChronoContact_checkincheckout.fromname.focus();
</script>
RUN the file test_gd.php
<?php print_r(gd_info()); ?>
RESULT:
Array ( [GD Version] => bundled (2.0.28 compatible) [FreeType Support] => 1 [FreeType Linkage] => with freetype [T1Lib Support] => [GIF Read Support] => 1 [GIF Create Support] => 1 [JPG Support] => 1 [PNG Support] => 1 [WBMP Support] => 1 [XPM Support] => 1 [XBM Support] => 1 [JIS-mapped Japanese Font Support] => )
Thanks!🙂
<br><br>Post edited by: dmpitu, at: 2008/01/25 01:59
_POST: Array ( [fromname] => usuario [fromemail] => [email]u@a.com[/email] [nombre] => [futdate] => dd/mm/yyyy [details] => [file] => upload_image.jpg [file2] => upload_audio.mp3 )
Case 2: Use template
E-mail: 'Yes' custom
Email sent<br><br>Post edited by: dmpitu, at: 2008/01/25 02:10
Case 2: Use template
E-mail: 'Yes' custom
Email sent<br><br>Post edited by: dmpitu, at: 2008/01/25 02:10
Hi dmpitu,
Please take a form back from the Form Manager (by clicking the Backup Form button) and post it here or mail it to me at the address in my sig and I'll take a closer look.
And please say which version of Joomla and ChronoForms you are using. Thanks
Bob
PS Do you have enctype="mulipart/form-data" set in the Form Tag attachment box?<br><br>Post edited by: GreyHead, at: 2008/01/25 08:43
Please take a form back from the Form Manager (by clicking the Backup Form button) and post it here or mail it to me at the address in my sig and I'll take a closer look.
And please say which version of Joomla and ChronoForms you are using. Thanks
Bob
PS Do you have enctype="mulipart/form-data" set in the Form Tag attachment box?<br><br>Post edited by: GreyHead, at: 2008/01/25 08:43
Hi, this is de file of the form backup.
I clear all and make all again. Upload file run. Image verification still wrong.
I don´t check Validation. (mmhhh..?)
Thanks again, and greath component!
Post:
http://www.chronoengine.com/component/option,com_fireboard/Itemid,37/func,view/id,5177/catid,3/
PD: I talk Castilian. SORRY the baaad write way
[file name=form_test_dmpitu.cfbak size=3787]http://www.chronoengine.com/components/com_fireboard/uploaded/files/form_test_dmpitu.cfbak[/file]
I clear all and make all again. Upload file run. Image verification still wrong.
I don´t check Validation. (mmhhh..?)
Thanks again, and greath component!
Post:
http://www.chronoengine.com/component/option,com_fireboard/Itemid,37/func,view/id,5177/catid,3/
PD: I talk Castilian. SORRY the baaad write way
[file name=form_test_dmpitu.cfbak size=3787]http://www.chronoengine.com/components/com_fireboard/uploaded/files/form_test_dmpitu.cfbak[/file]
This topic is locked and no more replies can be posted.
