Cold_Class
Cold_Class

Reputation: 3484

How to categorize records clearly in the backend of TYPO3 (6.2)

I used to have all my records in one page in the backend ("appointment data" in the picture below). That wasn't very user friendly because the backend users had a hard time finding the records they were looking for.
I want to make it easier for them by having different pages for different records.
In my extension-builder I created multiple entities that extend fe_users (in the example below: Workers, Students and Lawyers).
I want a page for each of these entitys like this:
enter image description here I then changed the pids of the fe_users to be in the corresponding page.

Now nothing works anymore. :(

I can't even log in after changing the pages-container setting to website users:
enter image description here
Not to mention none of my appointments show up even though I tried changing the Record storage page of my extension to my Data folder recursively:
enter image description here
I'm aware that I'm probably just missing some basics here.
But I don't even know what to search for because there might be a completely different way to do this categorization thing I want.

Can someone point me in the right direction here?

Upvotes: 1

Views: 79

Answers (2)

Cold_Class
Cold_Class

Reputation: 3484

Changing the Record Storage Page to the folder recursively like I did was correct after all.

The problem there like Bernd said was that I had disabled my Record Pages.

For the frontend login I found out eventually that in my root template I had set the storagePid to the old one and I didn't know you can set it to multiple ones (comma separated) like it says here in the description of storagePid.

The reason why it still didn't show up was because of an error in my query which I will ask in another question probably.

Upvotes: 1

Bernd Wilke πφ
Bernd Wilke πφ

Reputation: 10790

As far as I can recognize your page-icons from your screenshots I think you have your user data in pages which are hidden.

Records from hidden pages are also hidden. Hidden records are not available in the FrontEnd (FE), so no user can log in with this data.

Try to enable the pages!

Upvotes: 4

Related Questions