11-29-2017, 03:43 PM
Yeah. My first thought would be to look at z_us_root.php and make sure there are no spaces and that there are no spaces in there. The path should be single quotes. TBH, I know we released a fix for the spaces issue.
I'm guessing you mean the table in the db is physically truncated, not that the display of some of the pages on the html table have been cut off, right?
That page basically works by reexamining all the pages in the project and deleting ones that it can't see anymore, so if it's being deleted it is because that function can no longer retrieve a list of pages.
My thoughts are that I would do some dumps or dnds at various places and figure out what you're working with.
I would add to line 2 of z_us_root to start
I would add right before the $dbpages = fetchAllPages(); line of admin_pages.php and see if you can get a sense of what's going on.
Let me know if I can help.
I'm guessing you mean the table in the db is physically truncated, not that the display of some of the pages on the html table have been cut off, right?
That page basically works by reexamining all the pages in the project and deleting ones that it can't see anymore, so if it's being deleted it is because that function can no longer retrieve a list of pages.
My thoughts are that I would do some dumps or dnds at various places and figure out what you're working with.
I would add
Code:
dump($path);
I would add
Code:
dnd($pages);
Let me know if I can help.