I don't find any result about a select in the Alfresco Databases. I search in the server application ans anything.
how can I get the node referencies by a select in a database or in a file in terms of the project name ?
You can achieve the same from going to Admin Tools > Node Browser (login as admin)
Related
I need to Disable directory listing in .
Any suggestions ?
I tried to search for result in google but didn't find any
I only found a way that you can block the connection to the URL but this isn't what i need
If you are looking to disable the directory-listing for particular users, then you can achieve this by adding providing the repository path exclude-pattern at the permission target end.
In the below example, I have enabled anonymous user access only to specific packages, Please refer below steps for the same:
I have created a PyPI local repository, deployed python packages into it as shown in the below screenshot:
screenshot
After this, created a permissions target to restrict access to a specific folder called st-fraud-infra to the anonymous user. Hence added st-fraud-infra/** as a exclude pattern, kindly refer to the below screenshot for the same:
screenshot
Add anonymous users from the Users tab and provided appropriate permissions based on your requirement.
screenshot
Once you saved the permission target while accessing the Artifactory through the anonymous user, I could not see the excluded folder which is st-fraud-infra.
screenshot
Title says it simply.
I have a MS Access Database on a shared drive and the majority of users aren't experts so quite often the leave their PC with the Database open then it locks the PC, someone else will come along and switch it to their account, go to open the Database and get confused by the two files with the same name.
I can think of solutions for this e.g. using shortcuts so they dont actually see the laccdb or accdb file
But what I want to know is if there are any settings in Access (2010) that can make the .laccdb file hidden when it is created or just give it a random name like word or excel tmp files?
When I google this the results are more for removing people from the database so you can delete the laccdb file
This is actually a multi-user setup even though just one user can be active.
So you need to distribute the frontend to each user while having the backend in a folder with access for all users - that could be a subfolder of C:\Users\Public.
Here's is a script that will handle the distribution:
Deploy and update a Microsoft Access application in a Citrix environment
We have recently moved to Visual Studio Online. In there we have multiple projects. There are many people in different roles in our team.
The last thing that challenged me was about access right for certain things in VSO.
Here is the scenario for Employee "E1".
"E1" should be able to contribute to project "P1". It should be able to see the changesets and make changes in the code. And it should also be able to see/modify/delete all WorkItems in "P1" project.
"E1" should be able to see project "P2" 's changesets, workitems but E1 should not be able to modify workitems or source code in "P2"
"E1" should be able to access to "P3" but only for WorkItems with read-only access.
"E1" should be able to access to "P4" to manage WorkItems with read-write access. It should not see Changeset.
Can I setup E1 access to P1, P2, P3, P4 projects based on the given restriction ?
Thank you in advance.
Yes, VSO provide several groups with different access permission to the project. You can add your users to corresponding groups to control their permission or set the permission for user directly.
To set the permission to work items:
Open your project from web portal
Click “Manage Project” icon in the up right corner.
Click “Area” tab.
Right click on the area and select “Security”.
Then you can edit the permission for these groups and users. To control the access to work items, you can set the permission for “Edit work items in this node” and “View work items in this node”.
One thing you need to know is that the work items cannot be deleted from web portal. You can only delete the work item from command line via “witadmin destroywi” command and you must be a member of the “Team Foundation Administrators” security group or the “Project Administrators” security group for the team project collection. Instruction about destroywi: https://msdn.microsoft.com/en-us/library/dd236908.aspx
To set the permission to code resource:
1.Open your project from web portal.
2.Click “Code” tab.
3.Right click your code resource and select “Security…”
Set “Read” permission to read the code/changeset and set “Check In” permission to make changes in the code.
For more information about VSO permission, please refer to this link from MSDN for details: https://msdn.microsoft.com/en-us/library/ms252587.aspx
I´m using Alfresco-LDAP to migrate all my ldap users to Alfresco service.
So far I achieve transfer all users but for every user the home folder created in Alfresco for them is his name, and what I would like, is to share a folder for all members of the ldap group, since I have multiple groups and every user of that group only can get files from that group.
This is the property
ldap.synchronization.defaultHomeFolderProvider
I read in the Alfresco documentation http://wiki.alfresco.com/wiki/Security_and_Authentication#Creating_home_spaces_-_from_1.4_onwards
But seems like what I´m trying to do is not contemplated.
Any suggestion please?
unfortunately there is no configurable HomeFolderProvider for groups supporting specific spaces. You need to crate your own HomeFolderProvider in Java for that. Out of the box you could use the companyHomeFolderProvider which is normally used if you want to disable the homefolder feature. The user object requires a userhome to be able to log in and the work around is to set the root (company_home) for that.
s.
[1] https://wiki.alfresco.com/wiki/Security_and_Authentication#Creating_home_spaces_-_from_1.4_onwards
[2] Disable the user home folder creation
I have folders in share shared folder. Is there any way to specify share to search for a particular file in particular folder of the shared folders?
Yes, but there is no user friendly out of the box solution (I know of).
As admin, go to http://your-host.domain.name/share/page/console/admin-console/node-browser and execute a (fts-alfresco) search like the following:
PATH:"/app:company_home/app:shared//*" AND #cm\:name:"filename.txt"
This will find all files named "filename.txt" below the shared folder.
I guess you will have to customize the search UI if you want to offer that functionality in a user friendly fashion or to non admin users.
Further details are at http://wiki.alfresco.com/wiki/Search#Path_Queries
We've developed a solutions where you can search within a folder through the advanced search form: http://addons.alfresco.com/addons/alfresco-share-folder-search
It's free for download so you can look around how it's done.
In short: in 4.2.e you can send an extra param rootNode to the /slingshot/search repo webscript.
If you check the client side JavaScript in Share components/search/search.js
There is method _buildSearchParams The following params are send: site={site}&term={term}&tag={tag}&maxResults={maxResults}&sort={sort}&query={query}&repo={repo}&rootNode={rootNode}&pageSize={pageSize}&startIndex={startIndex}
So fill in the rootNode with a qnamePath or NodeRef and it will present the results of that folder.
For a possible implementation, I wrote a long post about it on the alfresco community forum .