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


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 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.


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?
Go to bottomPage: 123456789
TOPIC: Multiple tables
#47484
Re:Multiple tables 11 Years, 3 Months ago Karma: 763
What do you wan to do not "not case sensitive"?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#47485
Re:Multiple tables 11 Years, 3 Months ago Karma: 0
is about the user names.

Some register on the website with USER NAME, and then the reports shows User Name, and therefore the table dont see it as the same thing.

i would like to make it not case sensitive for that reason.

Thanks again...
The administrator has disabled public write access.
 
#47486
Re:Multiple tables 11 Years, 3 Months ago Karma: 763
It requires to modify the extension. Open <joomla_directory>\modules\mod_aridatatables\includes\kernel\CSV\class.CSVParser.php file, find the following code:

Code:


if ( ($op == '=' || $op == 'equals' || $op == 'is') && $row[$field] == $value )



and replace it the following one:

Code:


if ( ($op == '=' || $op == 'equals' || $op == 'is') && strcasecmp($row[$field], $value) === 0 )



Regards,
ARI Soft
The administrator has disabled public write access.
 
#47489
Re:Multiple tables 11 Years, 3 Months ago Karma: 0
Hi..
For some reason i cant find the mod_aridatatables inside de modules folder...


is there somewhere else i can search for it?

Thank you so much...
Last Edit: 2014/01/23 11:52 By Villasante.
The administrator has disabled public write access.
 
#47490
Re:Multiple tables 11 Years, 3 Months ago Karma: 0
this caption might give you a better idea of where i am looking for it.
Am i looking in the right place?
The administrator has disabled public write access.
 
#47491
Re:Multiple tables 11 Years, 3 Months ago Karma: 763
It is located inside "modules" folder.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 123456789