Hi guys,
What does mean by (gid) field name inside jos user table in db?
If we change it value will it effected our form?can your give some example if we change that value?
What does mean by (gid) field name inside jos user table in db?
If we change it value will it effected our form?can your give some example if we change that value?
Hi Kayrie,
It's the Group ID for the user.
You should never change the jos_users table directly unless you know **exactly** what you are doing. And even then you should use the Joomla! User Object methods.
Bob
It's the Group ID for the user.
You should never change the jos_users table directly unless you know **exactly** what you are doing. And even then you should use the Joomla! User Object methods.
Bob
Hi Bob,
So if we change the group id value what actually will happen?can your discuss little bit?
So if we change the group id value what actually will happen?can your discuss little bit?
Hi Kayrie,
There's a small possibility that you will break your site; a bigger possibility that you will give your users access to areas that you didn't intend. If you don't know **exactly** what you are doing please don't edit the jos_users table.
Bob
There's a small possibility that you will break your site; a bigger possibility that you will give your users access to areas that you didn't intend. If you don't know **exactly** what you are doing please don't edit the jos_users table.
Bob
Hi Bob,
Thanks for your advice.
I wanna know what the uses of params field inside jos_user table?
Just to know in detail so it can archive my target..
Thank You..
Thanks for your advice.
I wanna know what the uses of params field inside jos_user table?
Just to know in detail so it can archive my target..
Thank You..
Hi kayrie,
You can use the User Parameters for any simple data that you need. Remember that parameters are stored in an INI file with one name=value set on each line so you can't use long text items.
You should get and set parameters with the Joomla! User Object methods.
Bob
You can use the User Parameters for any simple data that you need. Remember that parameters are stored in an INI file with one name=value set on each line so you can't use long text items.
You should get and set parameters with the Joomla! User Object methods.
Bob
Hye guys,
Just wanna to know how does we can list all the name and id from user table?
I mean it like drop down list that list all name from user table.
Because if we use
This only show one name.
Thank You.
Just wanna to know how does we can list all the name and id from user table?
I mean it like drop down list that list all name from user table.
Because if we use
<?php
$user = JFactory::getUser();
$Name = $user->name;
?>
This only show one name.
Thank You.
Hi kayrie,
Joomle has a command for this, please see this post Use the code in a Custom element in CFv4.
Bob
Joomle has a command for this, please see this post Use the code in a Custom element in CFv4.
Bob
Hi bob,
can you give a brief what the meaning of this code line
'list.users' = ?
really appreciate.
Thank You
can you give a brief what the meaning of this code line
echo JHTML::_('list.users', 'user_id', true, 0, NULL, 'name', false);
'list.users' = ?
really appreciate.
Thank You
Hi kayrie,
It's the Joomla! code to give you a select box list of all active users.
See the Joomla! docs here - though they aren't very helpful :-(
Bob
It's the Joomla! code to give you a select box list of all active users.
See the Joomla! docs here - though they aren't very helpful :-(
Bob
i tried to use it.
But it store id, not name that been choices in table field in db.
How does it can store the name selected?
I'm using v3.
Really appreciate.
Thank You.
But it store id, not name that been choices in table field in db.
How does it can store the name selected?
I'm using v3.
Really appreciate.
Thank You.
This topic is locked and no more replies can be posted.