Hi Maxi,
I have this set up using the following settings:
* {site_url} = http://www.example.com/index.php
* I made the template_group the default for the site.
* I put the following test code into the index of the template_group mentioned above:
{!--
This code just shows basic /channel/category_url_title/url_title processing
Assumes this code is placed in the default index. If not, the segments will need to be incremented
Segment 1 = desired channel
Segment 2 = category url title
segment 3 = channel entry url title
--}
{exp:channel:entries channel="{segment_1}" {if segment_3 != ""} url_title="{segment_3}"{/if} }
{if segment_3 != ""}
{!-- We have an entry --}
<h1>{title}</h1>
{if:else}
{!-- No entry found --}
{categories}
{if segment_2 != ""}
{!-- We have a category --)
{if category_url_title == "{segment_2}"}
<a href="http://{site_url}/{channel_short_name}/{segment_2}/{url_title}">{entry_id}: {title}</a>
{picture_1}
{/if}
{if:else}
{!-- No category --}
<a href="http://{site_url}/{channel_short_name}/{category_url_title}/{url_title}">{entry_id}: {title}</a>
{picture_1}
{/if}
{/categories}
{/if}
{/exp:channel:entries}
You should note that this will need to 404 checking to make it more robust.
Hope this helps you out!
Sincerely,
Barry