Treehouse Meeting #10

Some Advanced URL manager testing
Summary: Test 2 worked without 404s while Test 1 Created 404s
ie Currently, you can’t make the CustomModule before your Page/Page folder.

Steps taken:


TEST 1 - Create Custom module first then pages / page folders second

  1. Create CustomModule: newzealand

  2. Create item in newzealand: auckland
    Create item in newzealand: christchurch

  3. Test URLs load in front end:
    /newzealand/auckland - OK
    /newzealand/christchurch - OK

  4. Create Page /newzealand

  5. Test URLs load in front end:
    /newzealand - Fail (404)
    /newzealand/auckland - OK
    /newzealand/christchurch - OK

  6. Delete ‘Page’ /newzealand

  7. Create ‘PageFolder’ /newzealand

  8. Test URLs load in front end:
    /newzealand - Fail (404)
    /newzealand/auckland - OK
    /newzealand/christchurch - OK


TEST 2 - Create Page Folder first then Custom Module second

  1. Create Page folder: /japan

  2. Test URL loads in front end: - OK

  3. Create Custom Module: /japan

  4. Test URL loads in front end: - OK

  5. Create item in japan: /tokyo
    Create item in japan: /sapporo

  6. Test all URLs load in front end:
    /japan - OK
    /japan/tokyo - OK
    /japan/sapporo - OK


Testing multi slug: Custom Module ‘Items’ fail (404)

Steps to recreate:

  1. Create Page Folder: /europe

  2. Create Page Folder: /europe/france

  3. Create Custom Module (multi-slug): /europe/france

  4. Test URLs load in front end:
    /europe - OK
    /europe/france - OK

  5. Create Custom Module Items:
    /europe/france/paris
    /europe/france/nice

  6. Test URLs load in front end:
    /europe - OK
    /europe/france - OK
    /europe/france/paris - Fail (404)
    /europe/france/nice - Fail (404)