[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-09-04T14:49:47-07:00 https://integramod.com/forum/feed.php?f=17&t=863 2006-09-04T14:49:47-07:00 2006-09-04T14:49:47-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=14924#p14924 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
Can this be done?

Statistics: Posted Author: richiebgood — Mon Sep 04, 2006 2:49 pm


]]>
2006-05-23T05:32:11-07:00 2006-05-23T05:32:11-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6982#p6982 <![CDATA[create a new bbcode tag for inserting pictures from album]]> Statistics: Posted Author: Tom_S — Tue May 23, 2006 5:32 am


]]>
2006-05-23T05:27:11-07:00 2006-05-23T05:27:11-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6981#p6981 <![CDATA[create a new bbcode tag for inserting pictures from album]]> http://integramod.com/forum/viewtopic.php?p=6956#6956 this is the post about adding this to advanced bbcode box.

A

Statistics: Posted Author: Adrian Rea — Tue May 23, 2006 5:27 am


]]>
2006-05-23T02:06:54-07:00 2006-05-23T02:06:54-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6965#p6965 <![CDATA[create a new bbcode tag for inserting pictures from album]]> Statistics: Posted Author: Tom_S — Tue May 23, 2006 2:06 am


]]>
2006-05-23T00:56:29-07:00 2006-05-23T00:56:29-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6963#p6963 <![CDATA[create a new bbcode tag for inserting pictures from album]]> Can we add the bbcode [siteimg] this will allow users to directly link the a picture in an album on the forum as at the moment no album pictures can be shown in a post, unless you can find out thier true url here is my suggestion
 ##-----[ OPEN ]------------------------------------------#includes/bbcode.php  ##-----[ FIND ]------------------------------------------#// We do URLs in several different ways..     $bbcode_tpl['url1'] = str_replace('{URL}', '\1', $bbcode_tpl['url']);     $bbcode_tpl['url1'] = str_replace('{DESCRIPTION}', '\1', $bbcode_tpl['url1']);  ##-----[ BEFORE, ADD ]------------------------------------------#        // site img code for doing local images in the press mod.    $bbcode_tpl['siteimg'] = str_replace('{IMG_NUM}', '\1', $bbcode_tpl['siteimg']);    // end site image    ##-----[ FIND ]------------------------------------------#    // [flash=,]image_url_here[/flash:p988ikp3] code..    // This one gets first-passed..  ##-----[ BEFORE, ADD ]------------------------------------------#          //site image for printing press    // [siteimg]image number here[/img]    $local_patterns[5] = "#[siteimg:$uid]([0-9]+)[/siteimg:$uid]#si";    $local_replacements[5] = $bbcode_tpl['siteimg'];     $text = preg_replace($local_patterns, $local_replacements, $text);     //site image for printing press end    ##-----[ FIND ]------------------------------------------#     // [flash=,:p988ikp3]image_url_here[/flash:p988ikp3] code..     $text = preg_replace("#[img]((http|ftp|https|ftps)://)([^ ?&=#"nrt<]*?(.(jpg|jpeg|gif|png)))[/img]#sie", "'[img]\1' . str_replace(' ', '%20', '\3') . '[/img]'", $text);    ##-----[ BEFORE, ADD ]------------------------------------------              // [siteimg]image_url_here[/img] code..    $text = preg_replace("#[siteimg]([0-9]+)[/siteimg]#sie", "'[siteimg:$uid]\1[/siteimg:$uid]'", $text);       // siteimg-end  ##-----[ OPEN ]------------------------------------------#templates/fisubice/bbcode.tpl  ##-----[ FIND ]------------------------------------------#<BEGIN><a>{DESCRIPTION}</a><END>  ##-----[ AFTER, ADD ]------------------------------------------#  <BEGIN><a><img></a><END>      ##-----[ SAVE/CLOSE ALL FILES ]------------------------------------------#  

This will allow the use of code
[siteimage]thumbnail id number (ie 3 )[/siteimage] for example [siteimage]3[/siteimage]


The only other thing to add to this would be a site image bbcode button.[hr]gffb
Also been able to add the bbc image and .js script

upload any image called album_pic.gif to YOURFORUMFOLDERbbcode_boximages

 ##-----[ OPEN ]------------------------------------------#templatespost_message.js  ##-----[ FIND ]------------------------------------------#fade_help = "Fade text]text[/fade:p988ikp3]";  ##-----[ AFTER, ADD ]------------------------------------------#  siteimg_help = "Insert Pic ID # from album gallery:[siteimg]Pic ID#[/siteimg]";  ##-----[ FIND ]------------------------------------------#var is_submit = false;  ##-----[ AFTER, ADD ]------------------------------------------#  var siteimg = 0;  function BBCsiteimg() {var FoundErrors = '';var enterURL = prompt("Enter the Pic ID#");if (!enterURL) {FoundErrors += "You didn't enter the number";}if (FoundErrors) {alert("Error :"+FoundErrors);return;}var ToAdd = "[siteimg]"+enterURL+"[/siteimg]";document.post.message.value+=ToAdd;document.post.message.focus();}  ##-----[ SAVE/CLOSE ALL FILES ]------------------------------------------#  
[hr:p988ikp3]Jason Sanborn
I can add this into the Advanced BBCode Box as well. I'll create a new image for it, and place it next to the image button. I can update that tomorrow.[hr:p988ikp3]Jason Sanborn
Advanced BBCode Box was updated. I added [siteimg=left] and [siteimg=right] to the code as well, to keep with similar functionality of the [img] tag.[hr:p988ikp3]Hope that helps

A

Statistics: Posted Author: Adrian Rea — Tue May 23, 2006 12:56 am


]]>
2006-05-22T18:53:17-07:00 2006-05-22T18:53:17-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6954#p6954 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
I've installed Jason Sanborn's Advanced BBCode and it works wonderfully. Supposedly you can add different bbcodes into the Advanced BBCode in a fairly straightforward manner.

Statistics: Posted Author: tmotley — Mon May 22, 2006 6:53 pm


]]>
2006-05-22T18:43:52-07:00 2006-05-22T18:43:52-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6953#p6953 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
sanji

Statistics: Posted Author: sanji — Mon May 22, 2006 6:43 pm


]]>
2006-05-22T17:21:33-07:00 2006-05-22T17:21:33-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6944#p6944 <![CDATA[Re: create a new bbcode tag for inserting pictures from albu]]>
One button click, type in only number of picture from album, outputs code to make the image thumbnail linked to the full image...

Does your album image posting still work? Mine still does.

Statistics: Posted Author: tmotley — Mon May 22, 2006 5:21 pm


]]>
2006-05-22T16:18:16-07:00 2006-05-22T16:18:16-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6933#p6933 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
but I was Jon on the previous forum <img>

In fact, the modification works to allow the use of picture from the album in a message (otherwise impossible to protect prevent other sites from linking to your album), but the taf itself is not working.

That is why I now use the code written in my first post. I suspect the code has to be rewritten somehow, but I have no idea how...

Thanks,

sanji

Statistics: Posted Author: sanji — Mon May 22, 2006 4:18 pm


]]>
2006-05-22T16:01:14-07:00 2006-05-22T16:01:14-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6932#p6932 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
http://www.integrmod.com/home/viewtopic.php?t=7751

Look for a post by jon. It's the fifth posting...Mon Sep 19, 2005 8:01 pm

Might be a little old but I think it's the one I did a long time ago. Worth a try with appropriate backup?

Statistics: Posted Author: tmotley — Mon May 22, 2006 4:01 pm


]]>
2006-05-22T14:55:42-07:00 2006-05-22T14:55:42-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6926#p6926 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
sanji

Statistics: Posted Author: sanji — Mon May 22, 2006 2:55 pm


]]>
2006-05-22T14:39:06-07:00 2006-05-22T14:39:06-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6924#p6924 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
A

Statistics: Posted Author: Adrian Rea — Mon May 22, 2006 2:39 pm


]]>
2006-05-22T14:37:22-07:00 2006-05-22T14:37:22-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6922#p6922 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
"Sorry, but only users granted special access can read topics in this forum."

sanji

Statistics: Posted Author: sanji — Mon May 22, 2006 2:37 pm


]]>
2006-05-22T07:03:08-07:00 2006-05-22T07:03:08-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6874#p6874 <![CDATA[create a new bbcode tag for inserting pictures from album]]> http://integramod.com/forum/viewtopic.php?p=2693#2693

Statistics: Posted Author: Adrian Rea — Mon May 22, 2006 7:03 am


]]>
2006-05-22T03:17:10-07:00 2006-05-22T03:17:10-07:00 https://integramod.com/forum/viewtopic.php?t=863&p=6853#p6853 <![CDATA[create a new bbcode tag for inserting pictures from album]]>
I am now using a couple of modifications that allow users to add pictures from the album in their message, displaying at the same time the id of the picture in the album.

However, so far, they need to insert the following line to add a clickable thumbnail in their text :

[url=http][flash=,]http://www.secret-japan.com/forum/album_thumbnail.php?pic_id=XX[/flash:y5mj2i6d][/url]


This is obviously not very convenient, so I wonder if it would be difficult to create a simple extra bbcode, allowing users to only use the id of the picture bewteen a tag like for example

[picalbum]56[/picalbum]


which would insert the picture 56 with the corresponding link.

I unfortunately how no idea how to add a new bbcode, so if you have any suggestion where I should start looking at, it would be greatly appreciated. I haven't find any mod doing that so far...

Thanks in advance,

sanji

Statistics: Posted Author: sanji — Mon May 22, 2006 3:17 am


]]>