PDA

View Full Version : Integration with vBulletin - [ITECH] Inferno External Lite


Inferno Tech
01-02-2008, 10:00 PM
----------------------------------
[ITech] Inferno External Lite
Created By Inferno Technologies (http://www.infernotechnologies.net)
Copyright 2004-2007
All rights reserved
Project Development Team: Zero Tolerance
Project Lead: Iain "Decado" Kidd
----------------------------------

Project Description

This product is designed to take data from your forum, and easily export it in a HTML format onto any type of website you have (note, the website must be on the same server as the forum). For instructions and features, read on.

Note
we can't provide screenshots of this in use as it would be completely unique to your website, but we have included the acp stuff :)

Features

Data Feeding
-----------------------
Inferno External's main purpose is to provide you with the power to easily display data from your forum, to your website, without any knowledge of programming!

Module Blocks
-----------------------
Creating a data feed has never been as easy, you can simply create a block by choosing what type of data you want to extract, customise it with options, and save, all through an Admin CP interface.

Previewing / Templates
-----------------------
As with most development processes, before taking anything live on a website you want to preview how it will look. Inferno External gives you a snapshot of how the block will look exactly on your website, with exception to your websites style/css.Customising blocks is no problem at all, either if it's a setting, or how it's displayed. Inferno External employs ITS ("Independant Template System") that allows you modify templates for a block without effecting any other block!

Module: No. Users Online
-----------------------
This compact version of users online simply displays the numbers of members, guests and hidden users online. You can configure this to only show members/guests or just hidden if you wish, and again hide certain usergroups!

Module: Threads
-----------------------
This module block can give you a listing of threads from x, y and z forums, kinda like creating your own forum display page! It has all kinds of configuration to handle data exactly how you want: * Max Threads To Display
* Maintain Permissions (So users only see threads they're supposed to!)
* Forums To Scrape (Which forums to fetch threads from)
* Filter Results (Enter custom search terms to customise which threads are shown!)
* Ordering (How you want the threads to be ordered, such as date, poster name, thread title)
* Display Threads From (Ranging from Today to This Month to This Year and more!)
* Titles/Username Cutting (So a long thread title doesn't bombard your style)

Module: Thread Posts
-----------------------
This is similar to the threads module, only instead of displaying a similar forum display look, it displays the first post of the threads! This could be used simply to show latest threads, custom blogs, or news! Also has extended configuration to meet your demands: * Max Posts To Display
* Maintain Permissions (So users only see posts they're supposed to!)
* Forums To Scrape (Which forums to fetch posts from)
* Filter Results (Enter custom search terms to customise which posts are shown!)
* Parse BBCode (The system cleverly makes sure images such as smilies and links work!)
* Ordering (How you want the posts to be ordered, such as date, poster name, thread title)
* Display Posts From (Ranging from Today to This Month to This Year and more!)
* Titles/Username/Post Cutting (So a long post doesn't bombard your style)

Tutorial On Usage

Inferno External as you know, provides you with the power to export certain data in a visual format to any part of your website. Ideally this is developed around the idea that you the user, wants to display data/information from your forum, onto your main website.

Where do you begin?
The first step is really to set up a new "block", the term block will refer to a set up you've configured in your ACP to export X data, in this example we're going to walk through how you'd set up an External Users Online. The users online has is a very simple interface, for users and guests.

To begin, go to your Admin CP, then 'Inferno External', and on this page you want to click 'Create New Block'. First you will see a drop down menu to choose what kind of block you want to create, select 'Users Online' here then hit 'Proceed'.

The next page takes you to the block configuration, now this block has a few custom options, you can decide what types of online data you wish to display (members, guests and hidden), additionally you can hide UGs from being counted here. There is also the default configuration which you get with all blocks:

Block ID
The block ID is an alphanumeric reference to the block you are creating, it can contain characters a-z, 0-9 and underscores (_). For this example, simply input 'my_users_online', which is a fairly useful ID to give this block.

Viewing Permissions
The viewing permissions is a global setting for all blocks, allowing you to create blocks that can be viewed by certain usergroups, or every usergroup. Don't touch this setting, for our example we want all usergroups to see our new block.

That's it for configuration, you'll find other blocks will have more settings depending on what they are, allowing you to customise them, remember aswell that you can create several blocks of the same type!

Hit 'Save Module Block' and this block will then be saved, and you'll be sent back to the main Inferno External admin page. Here, you should see your newly created block, and we can take a peak too, so click on 'Preview' for your newly created block.

The preview page will give you two things, one is the code you'd need to display this block on any page on your website, and secondly how the block will look. Note that how the block looks will differ, as it depends really on your websites style/css. In the preview here you'll be able to see the users online, all simple.

Hit 'Go Back' to return to the main admin page again, this time click 'Block Templates'. Inferno External employs an ITS ("Independant Template System"). This allows you to create a block, customise the templates for that block, and not have it affect any other block, even of the same types. So for example, if you have two user online blocks, and changed the templates on one of them, it would not effect the other!

If you want to in the future, you can come back to this page and change the templates as you see fit, if you ever make a mistake, simply leave the template blank and it will return to default.

Cool, I have my block, how can I put it on my website?
This is the main part of the system, putting blocks on your website. Firstly, you're website will need to be in php (don't panic!).

What if my site isn't PHP, but HTML?
Not to worry, let's say you have your main site file as 'index.htm' or 'index.html', simply rename the file to 'index.php' and your server will treat this file as php, and still parse your html!

Cool, it's php now, where do I begin?
You need to begin by 'loading' Inferno External into your website, to do this, open say index.php, or any other file on your website that's php and which you want to test (you could even create a test.php if you wish). At the very top of the file insert the following code:

<?php
require_once('./MYFORUM/infernoexternal.php');
?>

Please Note! You will need to alter this slightly, notice the 'MYFORUM' part, this needs changing to your forums directory, and assumes the file you're editing is one level above your forum directory. If that made little sense, not to worry!

Let's say your website is: mysite.com, and your forum is: mysite.com/forums/, and you're editing 'mysite.com/index.php', you'd use the following code:
<?php
require_once('./forums/infernoexternal.php');
?>

Another note, once this has been included in your PHP file once, you do not need to insert the code again, while it won't do any harm, it won't do anything either, this only needs to be at the top of your php files.

Okay, that's done, how do I display my cool new block?
You'll need to enter another peice of code to actually display the block, and that code is the one you saw when you previewed the block earlier in the acp, so run back there and copy that code. Now where-ever you want the block to display, place the code:

<?php echo $infernoexternal->display_block('my_users_online'); ?>

Two things to note here, one is the code I just showed has 'echo ', which the code in the preview doesn't, this command tells php to spit out whatever comes next to the page. If you know a bit about PHP, then you'll be able to tell this function returns the HTML rather than forcefully spitting out when called, so you can use it in other ways rather than just echo. Additionally there are the PHP tags, which are needed so the system parses this as PHP and not HTML/plain-text.

The second thing to note, is the 'my_users_online', and if you're asking yourself "I remember that from somewhere", then yes you do, it's the Block ID you gave to your block. So this is telling the system which block you want displaying.

Now that's done, save your file, upload, and you should see the block nicely sitting on your website where you told it to be, that easy!. You can now manage your block in your admin cp without having to come back to the code and modify it. I should point out that if you delete the block and you don't update the code on your website, your website will return an error message, so if you ever want rid of a block, it's better practice to update your files and strip the code which displays the block, before actually deleting it from the Inferno External admin cp.

Nice, my own block, that was easy!
Very much so! :)

If you have questions, issues, problems, or anything related, feel free to post and we'll take a look!

Enjoy everyone!

- Zero Tolerance

Reeve of shinra
01-03-2008, 02:29 AM
I have two sites on the same server (different domains and db's)

Would this allow me to display the most recent threads from Forum A on a custom page for Forum B?

Zaiaku
01-03-2008, 03:23 AM
Very Nice. Time to install this now!

Derek Chai
01-03-2008, 04:02 AM
Nice!

Magnumutz
01-03-2008, 04:40 AM
Sounds awesome :)

Defkalion
01-03-2008, 08:19 AM
This looks very interesting. Does this work if you have two websites on the same server but on different domains and different databases?

projectego
01-03-2008, 10:04 AM
/me clicks install

Inferno Tech
01-03-2008, 11:03 AM
If you have sites on the same server, assuming site a has the ability to access the inferno external file on site b, then yes.

For instance, if you had a site setup on your server which was infact just a folder on another site, eg:

Your main site was:
mysite.com

Your main forum was:
mysite.com/forums

Another site on your server was:
mysite.com/siteb/ but accessed normally through mysecondsite.com

Technically then your 'mysite.com' could acces both your forums and the other site. All you need is the ability to load the inferno external file and you can display data from that forum at your disposal :)

- Zero Tolerance

odonel
01-05-2008, 02:55 PM
where is the login box? lemme guess, we have to pay £20.00GBP = roughly $40 dollars before we can see it? is it worth that much ?

Inferno Tech
01-05-2008, 05:19 PM
The paid version comes with more than just a login box, as you can find out, but I won't use this thread to promote it :)

- Zero Tolerance

odonel
01-05-2008, 06:03 PM
If I can wrap text around the images in the posts, i am in...........

ltd
01-05-2008, 07:01 PM
Can we use this to display recent threads on forumhome page ?

yahoooh
01-06-2008, 10:19 AM
i still wait update for your quiz hack , i need it with more features because it is great product and vbulletin miss something like it

Nori362
01-09-2008, 03:18 PM
Fatal error: Cannot instantiate non-existent class: infernoexternal_acp in /home/agelade/domains/animegelade.com/public_html/forum2/infernoexternal/engine/inferno_acp.php on line 12

I get this error when trying to access Inferno External in the Admin CP.

odonel
01-10-2008, 06:14 PM
does that thing work for anybody ? images are not parsing, you can't login/logout from your homepage...good luck in trying to make that thin match your site's looks and feels....

iulianh
01-12-2008, 11:04 PM
wow , works great ! Is there any possibility to export this way the statistics ? Thanks again !

BassX
01-17-2008, 01:58 PM
Is this a replacement for vBExternal Lite?

Inferno Tech
01-18-2008, 09:30 AM
Thats right BassX :)

kevinpowertv
01-24-2008, 02:53 PM
Is there a way to add attachments to this? I want to attach an image to a post and have it show up externally on my PHP website. Thanks!

popmyzit
01-24-2008, 06:27 PM
Hello,
how do you get the avatars to display in the template like your mod pic?
https://vborg.vbsupport.ru/attachment.php?attachmentid=74095&d=1199334344
I purchased the paid one and cant get the avatars to display.

cheers

kevinpowertv
01-28-2008, 09:38 PM
If I have my forum on a different domain, such as forum.website.com, and my website is at mywebsite.com, how do I use this script? It seems to come up with a blank page when ever I put:


<?php
require_once('http://forum.website.com/infernoexternal.php');
?>



Thanks!!

Inferno Tech
01-29-2008, 08:00 AM
popmyzit, support for the pro (paid) version is done at our own forums, not in here, please post your problems in there, thanks.

DrKNickel
01-30-2008, 08:39 AM
I get the following error when i try to access the admin:

Fatal error: Cannot instantiate non-existent class: infernoexternal_acp in /infernoexternal/engine/inferno_acp.php on line 12

What can i do against it?

Thanks!

Lombardo
01-30-2008, 03:28 PM
I'm a bit confused by the last part of your instructions

Now where-ever you want the block to display, place the code:


where abouts do you mean? in the php file i just edited? or in a template in my acp?

Strafe
01-31-2008, 02:25 AM
I was hoping there would be more blocks for this release. Like the ability to export a poll possibly.

twitch
01-31-2008, 11:18 PM
this is awesome. Thanks! Does it work with 3.7 betas yet? Are there plans to update this as soon as 3.7 is gold or RC?

Inferno Tech
02-01-2008, 10:42 AM
We usually start updating our products when VB reaches the RC stage. sometimes it takes a while, and some don't get out until gold though :)

devilsmania
02-04-2008, 03:55 PM
wonderful job Inferno Tech

installed

DrKNickel
02-04-2008, 04:28 PM
I get the following error when i try to access the admin:

Fatal error: Cannot instantiate non-existent class: infernoexternal_acp in /infernoexternal/engine/inferno_acp.php on line 12

What can i do against it?

Thanks!

Anyone? Inferno :D

Fraik
02-09-2008, 03:55 PM
I'm having an issue... trying to create a news block but when I type in the number of posts to display and save it resets again, so its displaying all the posts!

Edit: When just displaying threads the number limit works just fine, it just doesn't work for thread posts :(

Warlord
02-11-2008, 04:32 PM
The following modification was done for vBExternal Lite, I would've posted this in that thread, but it's locked and says to come to this one.
I'm running vBulletin 3.6.4

Okay, I tried to modify this so it would work with attachments but unfortunately I'm coming up short for some reason.

Here's what I did.

In vbExternal.php find:

'threadid' => $Thread['threadid'],
'threadname' => $Thread['title'],
'postuserid' => $Thread['postuserid'],
'postusername' => $Thread['postusername'],
'replies' => vb_number_format($Thread['replycount']),
'views' => vb_number_format($Thread['views']),
'lastposter' => $Thread['lastposter'],



And REPLACE with this:



'threadid' => $Thread['threadid'],
'threadname' => $Thread['title'],
'postuserid' => $Thread['postuserid'],
'postusername' => $Thread['postusername'],
'replies' => vb_number_format($Thread['replycount']),
'views' => vb_number_format($Thread['views']),
'lastposter' => $Thread['lastposter'],
'attachments' => $show['attachments'],
'cellpadding' => $stylevar[cellpadding],
'thumbnailattachment' => $show['thumbnailattachment'],
'attachedthumbnails' => $vbphrase[attached_thumbnails],
'formspacer' => $stylevar[formspacer],
'thumbnailattachment' => $post[thumbnailattachments],
'imageattachment' => $show['imageattachment'],
'attachedimages' => $vbphrase[attached_images],
'imageattachments' => $post[imageattachments],
'imageattachmentlink' => $show['imageattachmentlink'],
'imageattachmentlinks' => $post[imageattachmentlinks],
'otherattachment' => $show['otherattachment'],
'attachedfiles' => $vbphrase[attached_files],
'otherattachments' => $post[otherattachments],
'moderateattachment' => $show['moderatedattachment'],
'attachmentspendingapproval' => $vbphrase[attachments_pending_approval],
'moderatedattachments' => $post[moderatedattachments],





Save and upload.

In NEWS.PHP (located in your root/vbExternal folder)

Find:

{post}

And BELOW it ADD:






<!-- attachments -->
<if condition="{attachments}">
<div style="padding:{cellpadding}px">

<if condition="{thumbnailattachment}">
<fieldset class="fieldset">
<legend>{attachedthumbnails}</legend>
<div style="padding:{formspacer}px">
{thumbnailattachments}
</div>
</fieldset>
</if>

<if condition="{imageattachment}">
<fieldset class="fieldset">
<legend>{attachedimages}</legend>
<div style="padding:{formspacer}px">
{imageattachments}
</div>
</fieldset>
</if>

<if condition="{imageattachmentlink}">
<fieldset class="fieldset">
<legend>{attachedimages}</legend>
<table cellpadding="0" cellspacing="{formspacer}" border="0">
{imageattachmentlinks}
</table>
</fieldset>
</if>

<if condition="{otherattachment}">
<fieldset class="fieldset">
<legend>{attachedfiles}</legend>
<table cellpadding="0" cellspacing="{formspacer}" border="0">
{otherattachments}
</table>
</fieldset>
</if>

<if condition="{moderatedattachment}">
<fieldset class="fieldset">
<legend>{attachmentspendingapproval}</legend>
<table cellpadding="0" cellspacing="{formspacer}" border="0">
{moderatedattachments}
</table>
</fieldset>
</if>

</div>
</if>
<!-- / attachments -->



Save and upload.

Now theoretically I think this should've worked, but like I said, I'm running into a few speedbumps.

1. It doesn't seem to recognize the IF statements for some reason
2. The actual attachments don't show. (you can tell it's trying, but I think maye my variables in vbExternal.php aren't defined correctly maybe?)

Any coder here want to tell me where I went wrong?

Attached is a screen shot of the results I've gotten so far.

Warlord
02-11-2008, 06:08 PM
Ok, I realized I added the variable definitions in the wrong block of code. (I was putting them in the Newest Threads block instead of the News block).

It's still not working correctly, but I think I'm getting closer.

To undo the changes I made in the above post and correct them to what I have now, you're just moving some code around:

In vbExternal.php find:



'attachments' => $show['attachments'],
'cellpadding' => $stylevar[cellpadding],
'thumbnailattachment' => $show['thumbnailattachment'],
'attachedthumbnails' => $vbphrase[attached_thumbnails],
'formspacer' => $stylevar[formspacer],
'thumbnailattachment' => $post[thumbnailattachments],
'imageattachment' => $show['imageattachment'],
'attachedimages' => $vbphrase[attached_images],
'imageattachments' => $post[imageattachments],
'imageattachmentlink' => $show['imageattachmentlink'],
'imageattachmentlinks' => $post[imageattachmentlinks],
'otherattachment' => $show['otherattachment'],
'attachedfiles' => $vbphrase[attached_files],
'otherattachments' => $post[otherattachments],
'moderateattachment' => $show['moderatedattachment'],
'attachmentspendingapproval' => $vbphrase[attachments_pending_approval],
'moderatedattachments' => $post[moderatedattachments],


And DELETE it.

Then find:



while($News = $db->fetch_array($NewestNews)){
$Data .= ParseTemplate($Template,
array(
'threadid' => $News['threadid'],
'threadname' => $News['title'],
'postuserid' => $News['postuserid'],
'postusername' => $News['postusername'],
'post' => $bbcode_parser->parse(unhtmlspecialchars($News['pagetext']), $f),
'comments' => vb_number_format($News['replycount']),




And UNDERNEATH that ADD:


'attachments' => $show['attachments'],
'cellpadding' => $stylevar[cellpadding],
'thumbnailattachment' => $show['thumbnailattachment'],
'attachedthumbnails' => $vbphrase[attached_thumbnails],
'formspacer' => $stylevar[formspacer],
'thumbnailattachment' => $post[thumbnailattachments],
'imageattachment' => $show['imageattachment'],
'attachedimages' => $vbphrase[attached_images],
'imageattachments' => $post[imageattachments],
'imageattachmentlink' => $show['imageattachmentlink'],
'imageattachmentlinks' => $post[imageattachmentlinks],
'otherattachment' => $show['otherattachment'],
'attachedfiles' => $vbphrase[attached_files],
'otherattachments' => $post[otherattachments],
'moderateattachment' => $show['moderatedattachment'],
'attachmentspendingapproval' => $vbphrase[attachments_pending_approval],
'moderatedattachments' => $post[moderatedattachments],



This gets rid of some of the extras that were beingt output on the page to make it look like this. I'm still having problems though as you can see from the attached thumbnail. I'm kind of lost at this point I think, so any help anyone would like to offer would be much appreciated. Thanks.

Fraik
02-14-2008, 01:33 PM
I'm having an issue... trying to create a news block but when I type in the number of posts to display and save it resets again, so its displaying all the posts!

Edit: When just displaying threads the number limit works just fine, it just doesn't work for thread posts :(

Any help, please?

Kalochero
02-20-2008, 07:53 AM
Same Problem here.

cddw.ltd
02-26-2008, 05:54 PM
Anyone know where to add the "require_once" code in Joomla?

If I put it in index.php (root) it logs me out.
If I put it into the template header it makes the page blank!?

azn_romeo_4u
02-26-2008, 08:02 PM
Holy crap you finally updated vbexternal.

*Bows down and cries in happiness*

pewp
02-28-2008, 05:22 AM
The thread posts block is not parsing images. it just shows a clickable link when i use the [ img ] [ /img ] tags

enjoymarcus
03-08-2008, 12:45 AM
Hi, great mod. I'm having trouble however, for some reason or another this script is pulling through more than just the block, and I'm finding title, html, head, and body tags appearing in my source, which is of course causing conflicts. How would I go about preventing said tags being pulled through? thanks.

Triky
03-19-2008, 04:21 PM
I will try it.

MrToasty
03-21-2008, 03:24 PM
I'm having an issue... trying to create a news block but when I type in the number of posts to display and save it resets again, so its displaying all the posts!

Edit: When just displaying threads the number limit works just fine, it just doesn't work for thread posts :(
Same here...

My block has the following entered into the DB, any ideas which part of the string is the problem? Or is it the file doing the parsing where the issue is?

a:12:{s:11:"maxpthreads";s:1:"5";s:12:"maintainperm";s:1:"0";s:6:"bbcode";s:1:"1";s:6:"forums";a:1:{i:0;s:2:"31";}s:10:"filtertext";s:0:"";s:10:"filtertype";s:5:"title";s:7:"orderby";s:4:"date";s:8:"orderdir";s:4:"desc";s:5:"range";s:3:"all";s:8:"maxtitle";s:0:"";s:11:"maxusername";s:0:"";s:8:"maxposts";s:0:"";}

MrToasty
03-24-2008, 12:51 PM
I'd like to pay for the full version of this mod, but I'd like to know if the full version has the same issue as I've posted above. (Where you cannot limit the number of first posts from a forum, as the insert and update queries doesn't seem to be sending that variable into the database...)

Anyone?

Inferno Tech
03-24-2008, 09:22 PM
The pro does not have that issue :)

- Zero Tolerance

Inferno Tech
03-27-2008, 04:08 PM
new pro version now available http://forums.infernotechnologies.net/Inferno-External-V15-Rel-t374.html

cheat-master30
03-29-2008, 11:58 PM
Do I need to try this? I think I already run the extremely outdated last version, and didn't notice a new version of the mod was released, so does this add many great features?

cheat-master30
03-30-2008, 12:24 AM
Never mind. Seems to be working on vBulletin 3.7 Release Candidate 1, but it did show 1970 as the date for any old topics. I kinda fixed this just by removing the whole column which shows the date from the templates.

Nice modification, although I do miss the 'Newest Member' part from the older one... thinking of bringing that back?

Inferno Tech
03-30-2008, 11:11 AM
Cheatmaster, newest members is available in the pro version =)

cheat-master30
03-30-2008, 01:52 PM
So that went from being a free option to a paid one? Thanks for that information. For some reason though, now I seem to be having a problem with this mod in that no data is shown. It worked earlier today and yesterday, yet it doesn't show up today, and there have been no changes to the .htaccess file or anything.

pewp
04-08-2008, 03:45 AM
for some reason if i'm not logged into the forums i cannot see the news post. i have this mod on another site/forum and don't have this issue. i'm running 3.7.0 RC2 on this site though. any thoughts?

Inferno Tech
04-08-2008, 04:45 AM
Hey pewp, could i request that you post your issue in the support forums on the itech website in the first post? Our support agents will be able to help you much faster that way

pewp
04-08-2008, 05:21 AM
Sure thing...

pewp
04-09-2008, 03:54 PM
Does anyone here that has this installed get the issue that I'm getting? When you are logged out or not a forum member you are unable to view the outputs? I went back to the old v1.6 on one of my sites cause it was the only one I can get to display the output if you aren't a site member.

sebiv
04-11-2008, 02:03 AM
This mods looks great - I just want to have a section on the front page of my website (which isn't run by vBulletin) that says "x active users on our forum".

Is there any way to make the mod display a TOTAL number of users online, instead of the seperate numbers for each group?

CommanderFluffy
04-14-2008, 03:58 PM
hi i just installed this mod. and well i get an error every time i try and put it in my php.

Unable to add cookies, header already sent.
File: /home/username/public_html/inside/includes/glob.php
Line: 2

line 2 is just <?php and when its a blank document with the style css it give me an error on line 1 where the style is located.

Warlord
06-01-2008, 02:19 PM
I will pay someone to mod vBexternal to display attachments. You can contact me on yahoo instant messenger at projectfanboy or email me at steven@projectfanboy.com if you're interested.

(I already contacted the author, but he said they didn't have time right now)

pewp
06-23-2008, 01:41 PM
I can't even get this to display images or parse any other BBcode. Posted about it yesterday and it's been viewed a few times, but no responses. I'm sure the author will get to it eventually, but if anyone here has had this issue and figured out a way to overcome it some info would be appreciated.

Neutral Singh
06-29-2008, 03:25 PM
i still wait update for your quiz hack , i need it with more features because it is great product and vbulletin miss something like it
Same here.

RedGTiVR6
07-24-2008, 03:30 PM
I'm interested in using the vBulletin Blogging component....but we need to be able to display these blog posts on our main page for a select number of users (or based on user group).

Would this mod allow us to do that?

marcopolo
08-16-2008, 09:57 AM
I've tried this, created a blank index2.php, added the code and all I get is a blank page

Any ideas?

Thanks

Warlord
08-17-2008, 04:13 PM
I ended up just using vbAdvanced instead, it's actually a lot more customizable then it used to be.

marcopolo
08-20-2008, 11:30 AM
I ended up just using vbAdvanced instead, it's actually a lot more customizable then it used to be.

I tried vBA but I want the look and feel of my site only showing a few items of the forum, so I'm still trying other methods.

Milez
09-01-2008, 12:24 PM
I am wanting to insert an ad into the text of a post, but only the first post, on my external news page. Will the Lite or paid version allow for this? If not is each post block numbered? If it's numbered I imagine I could hack this in myself fairly easily?

kleinschwanz
09-05-2008, 02:25 PM
Hey pewp, could i request that you post your issue in the support forums on the itech website in the first post? Our support agents will be able to help you much faster that way

trying to do so for days but the domain is not reachable... I have some support questions there on my ordered products open but I can't reach the page - so what is that? No answer over the messenger, not reachable over your supportboard and no info at all like an email to your customers or so. maybe you just have blocked my IP or my IP range as it has been before, but at the moment I am not able to go to an internet cafe or use a proxyserver to reach te page even when I can't reach it from home... remember?

well my question here is if I can do someting to break the pages somehow so it will not show a hundred results on one page but on lets say about twenty-five posts and then break the page with an arrow pointing back and forth to browse more efficient... when I show all the posts in the 3d section, the browser will take ages to load those masses when everything is to be shown on one page.

thx for the help

pewp
09-08-2008, 03:12 PM
Yeah their support site has been down for almost a month now I think.

So, if these guys don't come back is there anyone that might step up and take this addon over? It was really the only one of its kind and I loved it back when I had it fully functional on my old site. Since I've upgraded to 3.7.x I've not been able to get images to parse, but it still works.

MarceloS
09-10-2008, 02:06 PM
My forum is in Portuguese, and when I use this product, the data comes with accent errors. Is there any way to solve that? How could I change the code to UTF-8?
Thanks

kleinschwanz
09-21-2008, 01:34 PM
My forum is in Portuguese, and when I use this product, the data comes with accent errors. Is there any way to solve that? How could I change the code to UTF-8?
Thanks

Try this (http://www.vcharset.com/downloads) But make a backup first and read what the requirements are before you start anything =)

DeirdreBunny
09-24-2008, 07:50 PM
I'm interested in using the vBulletin Blogging component....but we need to be able to display these blog posts on our main page for a select number of users (or based on user group).

Would this mod allow us to do that?

I am looking for this info as well. On the mod description it does say the Thread Posts block can be configured to display Blogs on an external page, but I'm just not seeing a blog option in the blocks preferences. I have gotten it to work for recent posts, but not blogs.

Anyone figure this out?

Thanks much!

D. :)

RedGTiVR6
09-25-2008, 11:27 AM
I actually haven't done anything with this. Sorry!

pewp
10-12-2008, 03:24 PM
Anyone here heard anything from these guys? The site has been down for quite some time now. I went to purchase the pro version of this in hopes that I wouldn't have the bbocode parsing issues a month or so ago and their site was down. I guess I dodged a bullet there.

unitedbreaks
10-19-2008, 01:04 AM
Would DEFINATELY like this to be re-opened!! Excellent mod and so much potential.

unitedbreaks
10-19-2008, 07:26 PM
I'm having an issue... trying to create a news block but when I type in the number of posts to display and save it resets again, so its displaying all the posts!

Edit: When just displaying threads the number limit works just fine, it just doesn't work for thread posts :(

Open infernoexternal/blocks/inferno_block_thread_posts.php

Perform a "Find and Replace"

Find: maxthreads
Replace with: maxpthreads

Do this to ALL found results.

Reupload file. It was a simple variable typo not allowing the post data to save in MySQL.

xXTheOneRavenXx
11-09-2008, 10:27 PM
I am actually not impressed at all at Zero Tolerance. I paid for the full version of RPG Inferno for VB, and now they took their site down without any notification at all to anyone on the numerous site he visits. Even the domain itself is gone off of every search engine I looked up. Now I learn about a major security vulnerability caused by this Mod, and no one around to help to fix it. Sounds kind of fishy to me.

ssslippy
11-10-2008, 09:38 PM
Just to note I was on the tech support team for infernotechnologies, ZT has fallen off the earth and consider support gone. I will check up on the free threads and do what I can to help people but no guarantee.

DeirdreBunny
12-18-2008, 01:06 AM
NVM, I'm a tool. The answer is a few posts above.

Thanks Slippy -

I think the only pressing question is how many posts are displayed. Every time I choose a maximum of 10 and save the settings, the area I had entered 10 in is blank again.

Also, is there a way to remove the author of the posts from the display - so it just lists thread topics?

Thanks much! :)

~D

DeirdreBunny
01-07-2009, 08:16 PM
BBCode is not being parsed. i am seeing tags for color and so on when users apply these tags to their posts. Anyone having a similar issue? Have you found a work around?

xXTheOneRavenXx
01-20-2009, 10:13 PM
See, now that I have a partially made RPG for my site and Zero decides to take all support offline, that kinda *crewed me over. I do thank you ssslippy for your offer to help. I was going to use one of the codes he provided on the old site to allow members of my site to select a character, be able to travel around a global map, fight enemies, build stats, interact with each other, etc... but now I don't know what I'm going to do. :(

TheLastSuperman
01-22-2009, 10:45 PM
I found a few errors the same as many of the previous posters here... I quickly tried the older version found here and it works fine!

https://vborg.vbsupport.ru/showthread.php?t=147344

You don't have any snazzy admincp areas to help you keep it all organized but it works better IMO. If anyone needs help w/ the older version or ?'s on how to add more "blocks" then simply PM me for assistance - this is not one of my mod threads so I most likely will not be checking back here again unless I browse etc so please PM for help instead of posting, if it works then we post here what we did!

S-MAN

Edit: Ohh and I will be testing this for a 3.7.4 board this weekend (the older, stable version like I mentioned above) so I will post if it works after the test!

Byron
05-12-2009, 05:11 PM
Is there an updated one for the latest vb 3.8.2?

Konstantinos
06-11-2009, 06:06 AM
Fatal error: Class 'infernoexternal_acp' not found in /home/***/infernoexternal/engine/inferno_acp.php on line 12

C.Birch
11-08-2009, 10:30 AM
It's to bad this mod is dead, it was one of my fav as it let me use my forum as a cms without the front end looking like a cms.

robster1225
06-30-2010, 01:57 PM
Is there something like this for vBulletin 4?

devilsmania
07-26-2010, 07:32 AM
im still using it, with a 3.6.8, i don't know what to do when and if i upgrade...

James T Brock
11-27-2010, 01:59 PM
Is there something equivalent to this for vB 3.8?