Embedded types miscalculating base URL
-
Environment: IIS7, Windows 2008 Server, MySQL
Using latest version of TypesI’m using the option to embed the types plugin code into my theme.
On the post edit screen I was getting a JavaScript error about missing validation library and when inspecting the HTML code, it appear that Types is miscalculating the URL to its resources.For example, this is the resource path:
This works fine when using the plugin (i.e. not embedding).
I did a little digging and the issue seems to be confined to “path.php” in classes:
embedded_types/classes/path.php
- getDocRoot() : this method generates the doc root, but is actually coming back with the path to post.php
d://vhosts//mysite.com//httpdocs//wp-admin//post.php - It also has doubled forward-slashes.
- getFileUrl() the resultant $docroot is not a substring of $__FILE__ so it just concatenates them.
- getDocRoot() : this method generates the doc root, but is actually coming back with the path to post.php
- The topic ‘Embedded types miscalculating base URL’ is closed to new replies.