Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Retrieving more information than Name and Email
(1 viewing) (1) Guest
component
Go to bottomPage: 1234
TOPIC: Retrieving more information than Name and Email
#55906
Re:Retrieving more information than Name and Email 8 Years, 6 Months ago Karma: 0
I am haveing problems making some extra feilds, i have seen in the past you have edited the gusetform.xml for others is this still the case if so ,cani send you my xml file for you to edit
The administrator has disabled public write access.
 
#55907
Re:Retrieving more information than Name and Email 8 Years, 6 Months ago Karma: 747
Could you explain what problem do you have?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#55908
Re:Retrieving more information than Name and Email 8 Years, 6 Months ago Karma: 0
Not sure were to put the extra information example if i want to put in agent name field under email , were would i put it, i tryed it just brakes the code

<?xml version="1.0" encoding="UTF-8"?>
<form>
<params addpath="/administrator/components/com_ariquiz/elements">
<param type="text" name="UserName" size="50" label="COM_ARIQUIZ_LABEL_NAME" description="" />
<param type="text" name="Email" size="50" label="COM_ARIQUIZ_LABEL_EMAIL" description="" />
</params>
<params addpath="/administrator/components/com_ariquiz/elements" group="readonly">
<param type="literal" name="UserName" label="COM_ARIQUIZ_LABEL_NAME" description="" />
<param type="literal" name="Email" label="COM_ARIQUIZ_LABEL_EMAIL" description="" />
</params>
<validators addpath="/administrator/components/com_ariquiz/validators">
<validator type="required" error_message="COM_ARIQUIZ_ERROR_GUESTFORMNAMEREQUIRE" validate="UserName" />
<validator type="required" multiple="0" error_message="COM_ARIQUIZ_ERROR_GUESTFORMMAILREQUIRE" validate="Email" />
<validator type="email" multiple="0" error_message="COM_ARIQUIZ_ERROR_GUESTFORMMAIL" validate="Email" />
</validators>
<validators addpath="/administrator/components/com_ariquiz/validators" group="simple">
<validator type="email" multiple="0" error_message="COM_ARIQUIZ_ERROR_GUESTFORMMAIL" validate="Email" />
</validators>
</form>
The administrator has disabled public write access.
 
#55909
Re:Retrieving more information than Name and Email 8 Years, 6 Months ago Karma: 747
The updated XML file will look like:

Code:


<?xml version="1.0" encoding="UTF-8"?>
<form>
<params addpath="/administrator/components/com_ariquiz/elements">
<param type="text" name="UserName" size="50" label="COM_ARIQUIZ_LABEL_NAME" description="" />
<param type="text" name="Email" size="50" label="COM_ARIQUIZ_LABEL_EMAIL" description="" />
<param type="text" name="AgentName" size="50" label="Agent name" description="" />
</params>
<params addpath="/administrator/components/com_ariquiz/elements" group="readonly">
<param type="literal" name="UserName" label="COM_ARIQUIZ_LABEL_NAME" description="" />
<param type="literal" name="Email" label="COM_ARIQUIZ_LABEL_EMAIL" description="" />
<param type="literal" name="AgentName" label="Agent name" description="" />
</params>
<validators addpath="/administrator/components/com_ariquiz/validators">
<validator type="required" error_message="COM_ARIQUIZ_ERROR_GUESTFORMNAMEREQUIRE" validate="UserName" />
<validator type="required" multiple="0" error_message="COM_ARIQUIZ_ERROR_GUESTFORMMAILREQUIRE" validate="Email" />
<validator type="email" multiple="0" error_message="COM_ARIQUIZ_ERROR_GUESTFORMMAIL" validate="Email" />
</validators>
<validators addpath="/administrator/components/com_ariquiz/validators" group="simple">
<validator type="email" multiple="0" error_message="COM_ARIQUIZ_ERROR_GUESTFORMMAIL" validate="Email" />
</validators>
</form>



Regards,
ARI Soft
The administrator has disabled public write access.
 
#55952
Re:Retrieving more information than Name and Email 8 Years, 6 Months ago Karma: 0
thanks for that
The administrator has disabled public write access.
 
#56830
Re:Retrieving more information than Name and Email 8 Years, 2 Months ago Karma: 0
Okay I have added in an extra field called City.

Looking at the database I can see it is stored in ariquiz_statistics_extradata. The problem is that this extra data doesn't seem to get exported nor does it show up in the Quizzes Results table. I need for this data to show up in the exported data (at least). Is this possible?

Also I noticed a bug.

I have deleted all my quiz results for all quizzes and the table ariquiz_statistics_extradata still contains a pile of records. Shouldn't these records get deleted along with the rest of the quiz results.

Thanks
The administrator has disabled public write access.
 
Go to topPage: 1234