Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I'm try using phpLDAPadmin to connect openldap server, but when I try to create new user account with Generic: User Account, I get the error :
"Template Value Error
This template uses a selection list for attribute [gidNumber], however the selection list is empty.
You may need to create some dependancy entries in your LDAP server so that this attribute renders with values. Alternatively, you may be able to define the appropriate selection values in the template file."
I'm quite newbie with ldap and I had tried to search error related with gidNumber but don't have result, I don't know how to solve it. However, I can using software LdapAdmin to connect server and add new uid acc, and I using Ubuntu Server 13.04 to install ldap server. Hope someone can help me out with it.
Thanks.
You probably just want to create an end user account by selecting the 'Default' option and selecting the inetOrgPerson object class and click the "Proceed" button. On the next screen, you can complete the attribute template to create your entry.
If you really do want a Posix account, first create a Generic: Posix group. After the group is created, the Group ID field will be populated in the Generic User template.
try to make o (organization), ou (organization unit), g (group) then try to make some user.. GID is Group ID, so when GID is empty the template value is error :)
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
Currently, as far as I know, there is no command-line interface for querying Firestore. The only way to query our documents is to do it through our own program, or through Firestore console. In the console, the only way to query a document by its id is to use the browser "Find" feature. However, when the number of documents in a collection increases above a threshold, which I don't know, Google Chrome cannot find the id. It's very inconvenient to scroll through the list of documents and use the find function of the browser again and again to find the id.
Please advise a more efficient way or implement a more efficient way to query documents by id in Firestore Console.
While you can't filter a collection by a document ID, you can find a document with a specific ID by entering it in the little address bar/breadcrumb trail that sits above your data structure in the console.
Steps:
Select the collection that the document is in
Hover over the breadcrumb trail at the top and click on the pencil icon
Enter a / and then the ID of the document
Hit Enter
The console will now load the document with the ID you entered.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 5 years ago.
Improve this question
I know what is "use case", but I haven't any idea about "E2E" in this context.
What does "E2E use case" mean?
It should be "End to End" Use Case.
As Emil said it means End to End.
As with most terminology it can mean different things from company to company. So always ask your group to explain what they mean with this word.
For me an "End to end use-case" means a list of steps that follow the full process from beginning to end. For example buying some from a web-shop:
Open website
Put stuff in basket
Register a new account
Pay
Receive the order confirmation
Receive the shipping confirmation
Get the actual stuff
In the world of software development I would also add that it uses the full-stack (e.g. from UserInterface till database and back) as it would be in a production environment.
Other reads:
UML E2E use-case example: http://www.modernanalyst.com/Resources/Articles/tabid/115/ID/2017/End-to-End-UML-Use-Case-Diagram.aspx
In my practice 'e2e' means 'End to end test scenarios' and defines business-relates scenarios.
Not checking button is checked only or control contains expected value, but describes real business processes, the value user gets moving through this process.
So this processes should be automated or checked with higher priority than others.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 1 year ago.
Improve this question
My company's user naming schema changed and we like to apply the new naming schema on our existing Trac instance. We already added the new users, so new tickets and changes will use the new names. What's left to do is to migrate the user names for existing tickets and changes so our existing reports and statistics remain useful.
We are using trac 0.12 with sqlite as database. In principle it should be enough to take a look at the Trac database schema, find all tables with fields containing user names and issue SQL update statements. Still it probably takes a couple of hours to get everything right, so I'd rather use an existing tool than write something from scratch.
Any recommendations?
(We also need to change the user names in our Subversion repository. svndumptool seems to solve this using svndumptool transform-revprop svn:author oldname newname repo.dump newrepo.dump.)
The best place to look for tools like this is a website called Track Hacks. A quick search there turned up three potential solutions for renaming users.
http://trac-hacks.org/wiki/RenameUsersScript
http://trac-hacks.org/wiki/RenameTracUsersScript
http://trac-hacks.org/wiki/RenameUserPlugin
I hope that one of these can help you out.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm working with Drupal-7; where i have installed so many different modules in it. one of them modules is "Search API".
The problem what i'm facing is Result of searched keyword. whenever i use to search for a particular keyword it working for the Exact match with that key word.
For example : keyword = "Drupal" ;
then result only retrieved if this exact word will match with the content of database. but i would like to get result which are having any of these characters.
For example : keyword = "Dru" ;
then also all the result will retrieved which is having only word "Dru" as well as "Drupal" & etc..
In short now Query is working with "=" operator but i would like to make it with "LIKE" operator.
What should i do in which page to get resolve this..?
I have tried to many things but not get success..Please help me out.
Drupal core does not allow partial search string search. Below are your options if you want partial string search in your results.
1) Use Apache solr server.
2) http://drupal.org/project/porterstemmer is another one
3) use google custom site search instead . http://drupal.org/project/google_cse
Hope this helps.
Cheers,
Vishal
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Let say that I have a website with some information that could be access externally. Those information need to be only change by the respected client. Example: Google Analytic or WordPress API key. How can I create a system that work like that (no matter the programming language)?
A number of smart people are working on a standard, and it's called OAuth. It already has a number of sample implementations, so it's pretty easy to get started.
Simple:
Generate a key for each user
Deny access for each request without this key
Currently, I use a concatenation of multiple MD5s with a salt. The MD5s are generated off of various concatenations of user data.
A good way of generating a key would be to store a GUID (Globally Unique Identifier) on each user record n the database. GUID is going to be unique and almost impossible to guess.
There are also infrastructure services that manage all this for you like http://www.3scale.net (disclosure I work there), http://www.mashery.com and http://www.apigee.com/.