Bug #7152
CSV import of backenduser
| Status: | Closed | Start date: | 2010-04-07 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | - | % Done: | 100% |
|
| Category: | Bug | Spent time: | - | |
| Target version: | 2.7 | |||
| TYPO3 Version: | PHP Version: | |||
| Votes: | 0 |
Description
If you are logged in as a normal user you cannot import a csv-list.
After the second step (settings) i will come back to the first step.
If I am logged in as admin there are no problems
History
Updated by Ivan Dharma Kartolo about 3 years ago
- Status changed from New to Needs Feedback
Have you checked the rights of the normal user? they must have the rights to upload file (check it with the file module), access to the SysFolder (check it with list view and try to create a record there), the right to read and write to tt_address, and all the direct_mail tables.
regards,
Ivan
Updated by Alexey Gafiulov about 3 years ago
Since typo3 4.3 file operation permissions could be defined in group as well as in user's record.
Direct_mail is checking only user's permissions, not group ones.
So class.tx_directmail_importer.php should use
$user_perms = $BE_USER->getFileoperationPermissions();
instead of
$user_perms = ($BE_USER->user['admin'])?1:$BE_USER->user['fileoper_perms'];
But I think for 4.3 only, older versions need old way of checking.
Updated by Olivier Dobberkau over 2 years ago
- Target version changed from 2.6.7 to 2.6.9
Updated by Ivan Dharma Kartolo over 2 years ago
- Target version changed from 2.6.9 to 2.7
since I have to change the minimum of TYPO3 requirement, I will release this with the next feature release (2.7.0)
Updated by Ivan Dharma Kartolo about 2 years ago
- Status changed from Needs Feedback to Closed
- % Done changed from 0 to 100
fixed in SVN r47445