2017-05-11, 00:29:54
first of, you should detect the 'full path' of your xml file. You can do it with pwd command on ssh console from directory where the file is located.
Or you can do it with php from your template.php file:
you get something like this: /var/bla-bla/foo/theme/Innovation
so you can extend it with the relative path to your xml file: /var/bla-bla/foo/data/pages/important.xml
Or you can do it with php from your template.php file:
Code:
<?php echo __DIR__; ?>
you get something like this: /var/bla-bla/foo/theme/Innovation
so you can extend it with the relative path to your xml file: /var/bla-bla/foo/data/pages/important.xml