Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:
...
<li class="Attachment "><a href=""></a></li>
<li class="Attachment "><a href=""></a></li>
<li class="Attachment zip"><a href="http://localhost/vanilla/?PostBackAction=Download&AttachmentID=3">32.zip</a></li>
...
Notice: Trying to get property of non-object in n:\home\localhost\www\vanilla\extensions\InlineImages\default.php on line 40
Notice: Trying to get property of non-object in n:\home\localhost\www\vanilla\extensions\Attachments\default.php on line 333
Notice: Trying to get property of non-object in n:\home\localhost\www\vanilla\extensions\Attachments\default.php on line 333
Notice: Trying to get property of non-object in n:\home\localhost\www\vanilla\extensions\Attachments\default.php on line 333
pbear, Sep 16th 2006
Note that on my installation I altered the Inline Image source files to make it use [Image_##] syntax with a lowercase "i" to minimize the need for the shift key.
$ImageTag = '[Image_'.$Attachment->AttachmentID .']';to: $ImageTag = '[image_'.$Attachment->AttachmentID .']';$Context->Dictionary['InlineImagesNotes'] = 'These settings are specific to inline images. With inline images you can display image attachments directly into your comments by using [Image_%AttachmentID%]. If an image width exceeds the maximum width it will be automatically resized.';to:$Context->Dictionary['InlineImagesNotes'] = 'These settings are specific to inline images. With inline images you can display image attachments directly into your comments by using [image_%AttachmentID%]. If an image width exceeds the maximum width it will be automatically resized.';Ito a lower case
i
if (!defined('IN_VANILLA')) exit(); in image.php is before the include of settings.php so IN_VANILLA is never defined and the script always exits.include('../../appg/settings.php');boagworld, Oct 1st 2006
I am getting a very strange problem with the attachment 2.0 plugin. It works perfectly on my local environment but I am having problems on the live server. In firefox is behaves itself, adds the attachment and submits the comment. However in IE 6 it adds the attachment and the comment BUT then throws an error post.php saying that the page cannot be found. Has anybody else encountered this? Files are identical (apart from settings) between local and remote. I dont get why it wont work in IE but will in firefox. Maybe a javascript problem? HELP!