The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
|
#12
|
||||
|
||||
Quote:
|
#13
|
||||
|
||||
Anything you use is a "third party". Any mod you download here is considered a "third party" plugin, as it's not made by vBulletin.
vBulletin and Cheverto are two individual "parties". When used together, one is a "3rd party" to another. As is "postimage" as is the mod that you keep referencing. It's like being on a date. If I'm going on a date with vBulletin and I decide to bring someone else along, they're considered the "third wheel". Nothing wrong with a third party, however. Some would argue that three parties can sometimes be better |
#14
|
||||
|
||||
You don't understand the context.
Postimage loads the images on their server, not yours. That makes those images and the "service" 3rd party. The other two methods mentioned here are first party, as you control them completely and the images are on your server, not someone else's. They are NO different from vBulletin itself, in that regard. You control them, and the images are stored locally. |
#15
|
||||
|
||||
If external images are hosted on your own server then there is no need for a first party program... just attach images and upload them using vb default attach... kinda senseless using another program to up files to your own server....
Save space on your server and upload to a third party server... |
#16
|
||||
|
||||
Quote:
The separate software also has lots of features not found with vBulletin, especially the one the OP wants to use. |
#17
|
|||
|
|||
Hello,
The thing is that I'm quite jealous about security here, so I'd rather have an external image server hosted on my own with all the features that it has (In this case, it's a paid script called chevereto). The external image server is hosted on a different domain and a different server but I own both. Thing is, I already managed to add a button to the quick and full reply boxes that opens my imageserver webpage on a separate window but I would like to aproach it in a different way. Something like embedding an iframe on the reply box with a simple upload page. Regards, visual |
#18
|
|||
|
|||
So, little update here:
I managed to add THIS button: to my quick and full reply boxes. So far, I managed to make it open my own imageserver onclick which works more or less like I wanted it to. Thing is, I wrote an html code that calls for my imageserver API in order to upload images in a quick and simple way to my server. However, I don't find a way to make the button call for an iframed or a lightbox/fancybox'd version of my html code. I tried almost every single way but I don't seem to make it work. Here's the code of the button (It's in CKE) Code:
CKEDITOR.plugins.add( 'myimageserver', { init : function( editor ) { // This adds the button editor.ui.addButton('myimageserver', { // label: adds a hover text to the button. This uses the vBulletin // phrase "celButtonDemo" which you will have to add to your phrases // and to pass to CKE in a plugin label : editor.config.vbulletin.phrase.myimageserver, // command: the command that will be executed. It's defined later // in this file command : 'myimageserver', // icon: The path to the icon file you want to use for your button. // Here we use buttonimage.png in the buttons directory defined for // the current style (default: /images/editor) icon: 'https://mywebpage.com/images/buttons/myimageserver.png', }); // This defines the command that's executed when the button is clicked editor.addCommand('myimageserver', { // modes: decide in what editor modes the button will be active; // set to 0 to grey it out modes : { enhancedsource:1, wysiwyg:1 }, // Execute your JS Code - CKE offers a great API: >>I DON'T KNOW WHAT TO PUT HERE TO MAKE IT CALL FOR AN HTML FILE IFRAMED OR IN A LIGHT/FANCYBOX<< } }); } }); Regards, visual |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|