Changing the PHP code is no problem for me. Since some extensions weren't working in the first place because they did not get their path's set up correctly (should be dirname(__FILE__).'/file_in_your_folger.php') so I had to change their code, chang…
Aww damn :( So there is no way of setting global preferences which are not visible to the individual users (so they can't change them)?
I thought if enabling these preferences for every extension is so easy, why isn't disabling them by another exte…
Does "global changing" imply that the option to change it back is disabled or not visible for every single user but the admin?
Another extension, "Discussion Overview", only makes sense when it replaces the default index page. People can, however, s…
Changing the PHP code is no problem for me. Since some extensions weren't working in the first place because they did not get their path's set up correctly (should be dirname(__FILE__).'/file_in_your_folger.php') so I had to change their code, chang…
Aww damn :( So there is no way of setting global preferences which are not visible to the individual users (so they can't change them)?
I thought if enabling these preferences for every extension is so easy, why isn't disabling them by another exte…
Does "global changing" imply that the option to change it back is disabled or not visible for every single user but the admin?
Another extension, "Discussion Overview", only makes sense when it replaces the default index page. People can, however, s…
Extension didn't work on my server. Common "mistake" I would advice you to fix:
Get the extension directory:
define('SMARTY_PANTS_DIR', dirname(__FILE__) . '/'); // insert in line 22
And use it to require (rather than include to ensure it's really…
Change your include statement (line 71) to the following to make your extension work on restrictive servers:
include dirname(__FILE__) . '/members.php';
Change your include statement (line 71) to the following to make your extension work on restrictive servers:
include dirname(__FILE__) . '/members.php';
Didn't work on my server first. Open Basedir Restriction stuff is getting on my nerves already :) Change your code to have the following, that prevents users like me from getting blank websites or PHP errors:
require_once(dirname(__FILE__) . '/PageL…
Didn't work on my server first. Open Basedir Restriction stuff is getting on my nerves already :) Change your code to have the following, that prevents users like me from getting blank websites or PHP errors:
require_once(dirname(__FILE__) . '/PageL…
Had to make a lot of modifications... Guess you know your code better, so e.g. change line 86:
include(dirname(__FILE__) . '/settings_category_list.php');
Without dirname(__FILE__) my server declines access and other people's servers might do so as …
Had to make a lot of modifications... Guess you know your code better, so e.g. change line 86:
include(dirname(__FILE__) . '/settings_category_list.php');
Without dirname(__FILE__) my server declines access and other people's servers might do so as …
I'd like to be able to disable the Show Poll in Sidebar option completely and disable it for the whole forum so no polls attached to discussions are shown in the sidebar. It's unlikely that in a community for artists something like "global polls" wi…
I'd like to be able to disable the Show Poll in Sidebar option completely and disable it for the whole forum so no polls attached to discussions are shown in the sidebar. It's unlikely that in a community for artists something like "global polls" wi…
There was a problem when using this extension with the current Vanilla version.
classTextile.php was not accessible on my server.
This had to do with directory access restrictions I never understood on my server... The simple fix:
// Change/inser…
There was a problem when using this extension with the current Vanilla version.
classTextile.php was not accessible on my server.
This had to do with directory access restrictions I never understood on my server... The simple fix:
// Change/inser…
Oh, there was yet another thing: extensions that might need the DiscussionID parameter weren't redirected at all, so I added the following rule to your .htaccess file:
RewriteRule ^extension/([0-9]+)/?(.*)$ extension.php?DiscussionID=$1&$2 [QSA,…
There's a problem I experienced using the "Poll"-Extension by Jazzman but that could possibly affect other extensions as well when Friendy Urls is activated:
The Poll-Extension, when a poll is added to a discussion, inserts a '
.$this->PostBac…
Oh, there was yet another thing: extensions that might need the DiscussionID parameter weren't redirected at all, so I added the following rule to your .htaccess file:
RewriteRule ^extension/([0-9]+)/?(.*)$ extension.php?DiscussionID=$1&$2 [QSA,…
There's a problem I experienced using the "Poll"-Extension by Jazzman but that could possibly affect other extensions as well when Friendy Urls is activated:
The Poll-Extension, when a poll is added to a discussion, inserts a '
.$this->PostBac…
Needed to change the code a bit to make it work.
I suggest you add this to future releases to make your extension work on servers with really harsh restrictions for file opening:
include(dirname(__FILE__) . "/Framework.Functions.php");
Needed to change the code a bit to make it work.
I suggest you add this to future releases to make your extension work on servers with really harsh restrictions for file opening:
include(dirname(__FILE__) . "/Framework.Functions.php");