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?

Aborting quiz causes error
(1 viewing) (1) Guest
component
Go to bottomPage: 12
TOPIC: Aborting quiz causes error
#48712
Re:Aborting quiz causes error 9 Years, 12 Months ago Karma: 0
Well, I'll try it. But this function still worked by using the same template ...
The administrator has disabled public write access.
 
#48713
Re:Aborting quiz causes error 9 Years, 12 Months ago Karma: 746
The error occurs in site template code, it is not "ARI Quiz" issue.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#48717
Re:Aborting quiz causes error 9 Years, 12 Months ago Karma: 0
First of all I want to apologize, you were absolutely right. The problem was that with a redirect no item has been set. In the template "Haven", the problem can be solved as follows. The rows 18 and 19

Code:

18 $params = $menu->getParams( $active->id );
19 $pageclass = $params->get( 'pageclass_sfx' );



must be replaced.

Code:

if ($active != NULL) {
$params = $menu->getParams( $active->id );
$pageclass = $params->get( 'pageclass_sfx' );
} else {
$pageclass = '';

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