Hello,
I have made changes to my directory/folder structer as shown below; all appears to be working as intended.
search.php Lines 25:32
I have moved the search_template.html to the /_search/ directory as well.
Do you know of any negative consequence I might face later on, by doing it this way?
Thank you in advance for your time!
I have made changes to my directory/folder structer as shown below; all appears to be working as intended.
search.php Lines 25:32
PHP Code:
$SETTINGSFILE = dirname(__FILE__)."/_search/settings.php";
$WORDMAPFILE = dirname(__FILE__)."/_search/zoom_wordmap.zdat";
$DICTIONARYFILE = dirname(__FILE__)."/_search/zoom_dictionary.zdat";
$PAGEDATAFILE = dirname(__FILE__)."/_search/zoom_pagedata.zdat";
$SPELLINGFILE = dirname(__FILE__)."/_search/zoom_spelling.zdat";
$PAGETEXTFILE = dirname(__FILE__)."/_search/zoom_pagetext.zdat";
$PAGEINFOFILE = dirname(__FILE__)."/_search/zoom_pageinfo.zdat";
$RECOMMENDEDFILE = dirname(__FILE__)."/_search/zoom_recommended.zdat";
Do you know of any negative consequence I might face later on, by doing it this way?
Thank you in advance for your time!
Comment