Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Mootools
This discussion has been closed.
Comments
mootools.class.php
Find line 43if(!is_file("$Dir/cache/$Hash")) {
and change it to thisif(!is_file("$Dir/cache/$Hash".".js")) {
Find line 50
$this -> WriteFile("$Dir/cache/$Hash".".js", $Script, 'x');
and change it to this$this -> WriteFile("$Dir/cache/$Hash", $Script, 'x');
Find line 53
$File = "extensions/Mootools/cache/$Hash";
and change it to this$File = "extensions/Mootools/cache/$Hash".".js";
mootools.class.php
Find line 48-49$Packer = new JavaScriptPacker($Script); $Script = $Packer -> pack();
and change comment it out/*$Packer = new JavaScriptPacker($Script); $Script = $Packer -> pack();*/
I was bored so I Everything seems to work well still, along side JQuery and some other extensions. Size for the cached file is ~44kb and ~13kb GZipped.Edit: If anyone wants to try it, download it and give it a go.
Maybe we should post what extensions we are using to see if there is a common element to what is causing this problem? My extensions are as follows:
<?php // Make sure this file was not accessed directly and prevent register_globals configuration array at$ if (!defined('IN_VANILLA')) exit(); // Enabled Extensions include($Configuration['EXTENSIONS_PATH']."Mootools/default.php"); include($Configuration['EXTENSIONS_PATH']."AccountPictures/default.php"); include($Configuration['EXTENSIONS_PATH']."AjaxQuote/default.php"); include($Configuration['EXTENSIONS_PATH']."ApplicantEmailVerification/default.php"); include($Configuration['EXTENSIONS_PATH']."Audioscrobbler/default.php"); include($Configuration['EXTENSIONS_PATH']."CAPTCHA/default.php"); include($Configuration['EXTENSIONS_PATH']."CategoryIcons/default.php"); include($Configuration['EXTENSIONS_PATH']."CategoryJumper/default.php"); include($Configuration['EXTENSIONS_PATH']."CategoryRoles/default.php"); include($Configuration['EXTENSIONS_PATH']."ChatStatus/default.php"); include($Configuration['EXTENSIONS_PATH']."CommentRemoval/default.php"); include($Configuration['EXTENSIONS_PATH']."ForcedBBCode/default.php"); include($Configuration['EXTENSIONS_PATH']."GoogleAnalytics/default.php"); include($Configuration['EXTENSIONS_PATH']."GuestWelcome/default.php"); include($Configuration['EXTENSIONS_PATH']."HiddenText/default.php"); include($Configuration['EXTENSIONS_PATH']."DiscussionFilters/default.php"); include($Configuration['EXTENSIONS_PATH']."JQuery/default.php"); include($Configuration['EXTENSIONS_PATH']."JQmedia/default.php"); include($Configuration['EXTENSIONS_PATH']."ModTools/default.php"); include($Configuration['EXTENSIONS_PATH']."./default.php"); include($Configuration['EXTENSIONS_PATH']."MyComicVine/default.php"); include($Configuration['EXTENSIONS_PATH']."MyGamerCard/default.php"); include($Configuration['EXTENSIONS_PATH']."NewDiscussions/default.php"); include($Configuration['EXTENSIONS_PATH']."PageMng/default.php"); include($Configuration['EXTENSIONS_PATH']."ParticipatedThreads/default.php"); include($Configuration['EXTENSIONS_PATH']."PredefinedAttributes/default.php"); include($Configuration['EXTENSIONS_PATH']."PreviewPost/default.php"); include($Configuration['EXTENSIONS_PATH']."PrivateMessages/default.php"); include($Configuration['EXTENSIONS_PATH']."ReportPost/default.php"); include($Configuration['EXTENSIONS_PATH']."RoleListFix/default.php"); include($Configuration['EXTENSIONS_PATH']."SetList/default.php"); include($Configuration['EXTENSIONS_PATH']."Signatures/default.php"); include($Configuration['EXTENSIONS_PATH']."SpellChecker/default.php"); include($Configuration['EXTENSIONS_PATH']."UserFilters/default.php"); include($Configuration['EXTENSIONS_PATH']."Vanillacons/default.php"); include($Configuration['EXTENSIONS_PATH']."Nugget/default.php"); include($Configuration['EXTENSIONS_PATH']."PFC/default.php"); include($Configuration['EXTENSIONS_PATH']."Mootools/appendix.php"); ?>
include($Configuration['EXTENSIONS_PATH']."./default.php");
Warning: main(/kunden/121606_86830/rckmydsk/extensions/Mootools/appendix.php) [function.main]: failed to open stream: No such file or directory in /kunden/121606_86830/rckmydsk/conf/extensions.php on line 23 Warning: main(/kunden/121606_86830/rckmydsk/extensions/Mootools/appendix.php) [function.main]: failed to open stream: No such file or directory in /kunden/121606_86830/rckmydsk/conf/extensions.php on line 23 Warning: main() [function.include]: Failed opening '/kunden/121606_86830/rckmydsk/extensions/Mootools/appendix.php' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/121606_86830/rckmydsk/conf/extensions.php on line 23