Quote:
Originally Posted by NLP-er
OWhen it will be ready and working also for frums which are not in main directory ( http://domain/forum) then I will start working on new release where links by default will be in new format.
|
Hey NLP-er,
When you include this in a release, I recommend the following:
(1) Put the code T2x is working on in it's own file, for example "./includes/t2x_vbseo.php"
(2) Then, simply add one line in vbseo.php, something like:
Code:
include_once('includes/t2x_vbseo.php');
This will be much easier for folks to install and maintain, and easier for you as well.
Plus, if anyone has a problem, they can simply comment out one line.
Or, even better, you can add a configuration flag and make it so users can turn it on and off in the configuration CP.
Code:
if (T2X_VBSEO_ENABLED) include_once('includes/t2x_vbseo.php');
.... something like that