Well, also, if you mean that you have a FOLDER name that changes during the site’s use and you want
to access various paths that way, you must make sure that your “/” are correct between the folders.
Your code: include(ABSPATH."{dynamic_path}/params.php") may not be placing the slash between
the absolute path and the dynamic path. I suggest you DEBUG the code. You can do that by testing it
with this code. Just replace the above line with this one:
[php]
die(ABSPATH."{dynamic_path}/params.php")
[/php]
What that will do is force the page to end at that point and show you what is being placed there. It will
show you what is really being included at that point. Then, you can see where it is failing and alter it as
needed…
Hope that helps…