Phantom URL won't go away
PermalinkI have this site outline
Home
Shows
Relay
Molly West
Chelsea Huss
MORE
Let's Talk
Hillsong United
Jonathon Douglass
MORE
As expected, each of these pages has a locaton as you would expect
/ /shows /shows/relay /shows/relay/molly-west /shows/relay/chelsea-huss /shows/relay/more /shows/lets-talk /shows/lets-talk/hillsong-united /shows/lets-talk/jonathan-douglass /shows/lets-talk/more /shows/more
If I go the nav and mouseover 'Shows" I see, as expected "http:/site.com/shows" in the browsers target display. If I mouse over "Shows->More" I see "http://site.com/shows/more", but when I mouse over "Shows->Relay->More" I see "http://site.com/shows/more" !!
So, I deleted the "Shows/More" page, and still, when I mouse over either "Shows->Relay->More" or "Shows->Let's Talk->More" the target URL remains "http://site.com/shows/more".
Of course, I am running in a private non-cached browser and I clean the cache on the server via the console as well as deleting everything under application/files/cache, deleted the trash, and I even restart the apache and mysql server, thinking that maybe somewhere there is a cache file confusing things.
If I dump the database and search for the correct URL I see the correct URL
grep "shows/relay/more" dmp.sql INSERT INTO `PageSearchIndex` VALUES (338,'','MORE','','/shows/relay/more','2017-09-13 16:05:00','2017-09-13 16:16:00',NULL,0);
So, does anyone have ANY ideas as to why the target URL remains "http://site.com/shows/more" for any and all "MORE" pages I add?
More odd, is that URL does not even exist as a path in the database
mysql> SELECT -> Pages.cID, -> PagePaths.cPath, -> CollectionVersions.cvName -> FROM -> Pages -> Inner Join PagePaths ON Pages.cID = PagePaths.cID -> Inner Join CollectionVersions ON PagePaths.cID = CollectionVersions.cID -> WHERE -> PagePaths.cPath LIKE '/shows%' AND -> CollectionVersions.cvName = 'MORE' -> ; +-----+---------------------------+--------+ | cID | cPath | cvName | +-----+---------------------------+--------+
https://documentation.concrete5.org/editors/in-page-editing/the-tool...