Flattening databases hierarchy into a single root folder
Flattening databases hierarchy into a single root folder
Hi again, happy weekend:)
I still use Generator for the initial creation of all my personal databases, and I always choose the same options every time (I check everything and choose all the jquery-ui items).
As a result, I currently have a separate folder for each of my databases on my server, with all the folders duplicated, i.e. the sql, php, js, images and css folders which are in the downloaded Generator zip are duplicated for every database.
Is it possible to have only one root folder with the above folders within it, and just ensure all of my tables have a unique name so that the html files can all sit at the root level, and also ensure each table is similarly named uniquely so that all the table._name_.php
and table._name_.js
files can sit in the singular root-level js or php folder?
That part seems doable to me (please tell me if I am wrong) but I'm not sure how to deal with all the config.php files in the php/lib folder, since each table references a different root database in MySql..
If I left the "db" => "",
line blank, and used the same type, user, pass, host, port and dsn universally, would that work?
I'm speaking here of personal databases on a local XAMPP install, so professional principles and security are not a huge burden for me here...
Answers
Could you not just merge them together? They all have unique names so for each new table you create you'd add its files into the existing structure, thus ending up with something like:
That would do what you are looking for would it not?
Allan
Hi Allan, and thanks very much. Yes, that is exactly what I'm hoping to do. After a bit of experimenting, I've seemingly been able to use the following structure for all of my tables:
This flattens everything. I know the last entry for "js/table.tutorials.php" is still deep into the hierarchy, but I've tested and in fact I can move it to the same "../../../etc." flat-root folder with all of my tables.
But I'm still left with old structure remnants to deal with the config.php file in the Generator-created file/folder hierarchy. I'll do a deep search to see where these config.php files are referenced, and if I can find the files(s), I can just rename config.php to "config.name.php " and put these files in a similarly-flat folder...
You only need one config.js. If you just copy the table files from your second Generator output to the first, all the references will still be correct, since they all use the same structure. Then you can simply throw away the second Generator output.
Allan