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.
Vanilla Packer
This discussion has been closed.
Comments
I shall start mucking around with things now
Comments Links 1.4 doesn't copy the links when you click on the format you want. Turning packer off allows it to work.I lied - Comment Links 1.4 doesn't allow me to copy anything at all, no matter packer being on or off
Dinoboff, minor little thing... default.php line 14, if you could capitalise the 2nd "Options" - change it from:
$Context->SetDefinition('ExtensionOptions', 'Extension options');
to:$Context->SetDefinition('ExtensionOptions', 'Extension Options');
then it would appear in the same place as the Jazzman's various Extension Options
I will look at Comment Links 1.4
http://exhibitq.com/talk/themes/vanilla/styles/europeaftertherain/images/file_attach.gif
You have to copy images/file_attach.gif to /themes/vanilla/styles/europeaftertherain/
To install it you need to copy /extensions/CommentLinks/CommentLinksTheme/search_results_comments.php into your themes folder (/themes/vanilla/styles/europeaftertherain/; since you don't use the default theme, you might need to edit it).
You also need to edit /extensions/CommentLinks/CopyMenu.js line 6 :
var BaseUrl = '/talk/';
It 's all I did and it is working, on my local server.
With the style correction, is that a general problem with the style independent of the Packer?
Try by disabling the packer, but I don't think it is a problem with the packer.
$Head->AddScript('http://maps.google.com/maps?file=api&v=1&key='.$Context->Configuration['GOOGLEMAP_KEY']);
I changed it to:
$Head->AddScript('http://maps.google.com/maps?file=api&v=1&key='.$Context->Configuration['GOOGLEMAP_KEY'],'~',350,0);
$Head->AddScript('http://maps.google.com/maps?file=api&v=1&key='.$Context->Configuration['GOOGLEMAP_KEY'], '');
or better$Head->AddScript('http://maps.google.com/maps?file=api&v=1&key='.$Context->Configuration['GOOGLEMAP_KEY'], '', 450);
The first one is the correct use of AddScript with or without the patch. For exemple, on this forum
$Head->AddScript('http://maps.google.com/maps?file=api&v=1&key='.$Context->Configuration['GOOGLEMAP_KEY'], '');
will create<script src="/community/http://maps.google.com/maps?file=api&v=1&key=xxxxxxxxx"...
The second works on my testing server (php 5.1.6) without the patch but since without patch AddScript has only 2 arguments maybe some other version of php would trow a warning message.
$Head->AddScript('js/tinymce/jscripts/tiny_mce/tiny_mce.js');
by:
$Head->AddScript('js/tinymce/jscripts/tiny_mce/tiny_mce.js', '~', 450, 0);
I will try to see why it can't be packed later this month.