nneonneo's Shoutbox

Started by nneonneo, December 26, 2006, 06:58:11 PM

Previous topic - Next topic

katib

Quote from: nneonneo on October 07, 2008, 09:45:47 PM
You want the "Permissions" option.
Thanks
Now, I can access soutbox settings in AdminCP


Quote from: nneonneo on October 07, 2008, 09:45:47 PM
As for why it does not work, try this fix: http://www.simplemachines.org/community/index.php?topic=137508.msg1697317#msg1697317
Yes, I tried this change, but no success
I remember that mod package installer was unable to modify default theme files
So maybe , I have something wrong
I will reinstall a fresh copy of SMF2 Beta4, as the current forum is an upgrade from 1.1.6
منتدى الحجاج ... منتدى للقراءة والكتاب
http://www.hijaj.net

cr34t1v3

Quote from: synicfan on October 08, 2008, 12:13:51 PM
Hi,
Im having trouble getting my TinyPortal center block to show my shoutbox.

Its the same problem with mine. Waiting for the solution from the seniors.
Notebook & Computer Online Store in Indonesia:
http://www.anugrahpratama.com
Computer & Notebook Forum in Indonesia:
http://forum.anugrahpratama.com
Computer & Laptop Review & News Blog:
http://blog.anugrahpratama.com

synicfan

Quote from: cr34t1v3 on October 08, 2008, 09:37:23 PM
Quote from: synicfan on October 08, 2008, 12:13:51 PM
Hi,
Im having trouble getting my TinyPortal center block to show my shoutbox.

Its the same problem with mine. Waiting for the solution from the seniors.

BTW, Im still having this issue.  :D
Please help!

nneonneo

@cr34t1v3: index.template.php looks OK. Does the phpbox show up empty?

@synicfan, cr34t1v3: Let me see your forum. Maybe something else is wrong.
Check out the AJAX Shoutbox (my one and only mod to date :P)
Do you like SMF? Are you using ProBoards, InvisionFree, ActiveBoards or some other web-hosted forum? I can help you convert to SMF (without having to purchase a DB conversion)...contact me [nneonneo {at} gmail *dot* com], and see this topic
spammers here!

cr34t1v3

#4044
yes its empty, just like synicfan's capture.

any idea?

Need to check some file maybe?
Notebook & Computer Online Store in Indonesia:
http://www.anugrahpratama.com
Computer & Notebook Forum in Indonesia:
http://forum.anugrahpratama.com
Computer & Laptop Review & News Blog:
http://blog.anugrahpratama.com

cr34t1v3

i sent via pm forum adress, username and password
Notebook & Computer Online Store in Indonesia:
http://www.anugrahpratama.com
Computer & Notebook Forum in Indonesia:
http://forum.anugrahpratama.com
Computer & Laptop Review & News Blog:
http://blog.anugrahpratama.com

nneonneo

What did you paste in the phpbox? It looks empty, i.e. there's no code in the block.
Check out the AJAX Shoutbox (my one and only mod to date :P)
Do you like SMF? Are you using ProBoards, InvisionFree, ActiveBoards or some other web-hosted forum? I can help you convert to SMF (without having to purchase a DB conversion)...contact me [nneonneo {at} gmail *dot* com], and see this topic
spammers here!

cr34t1v3

i paste the code from page 1...
Block Manager -> Center blocks -> Shoutbox

is that empty?
i just checked, and the code is still there.
Notebook & Computer Online Store in Indonesia:
http://www.anugrahpratama.com
Computer & Notebook Forum in Indonesia:
http://forum.anugrahpratama.com
Computer & Laptop Review & News Blog:
http://blog.anugrahpratama.com

nneonneo

Ah, but in your case, it is all on the same line. Try it again.

The code you want is
   // YSHOUT HERE - shoutbox code
   global $txt,$context,$boarddir;
   if(allowedTo('yshout_view'))
   {
      echo '<br /><b>',$txt['yshout_shoutbox'],'</b><br /><br />';
      echo '<div id="yshout">';
      include_once($boarddir.'/yshout/yshout.php');
      echo '</div>';
   }
   elseif($context['user']['is_guest'])
      echo $txt['yshout_no_guests'];
   // YSHOUT END - shoutbox code

which MUST be on separate lines. synicfan, this might also apply to you (cr34t1v3, using the admin details you sent me, I have just gone ahead and fixed it for you)
Check out the AJAX Shoutbox (my one and only mod to date :P)
Do you like SMF? Are you using ProBoards, InvisionFree, ActiveBoards or some other web-hosted forum? I can help you convert to SMF (without having to purchase a DB conversion)...contact me [nneonneo {at} gmail *dot* com], and see this topic
spammers here!

cr34t1v3

super great jobs

thank you so much nneonneo.

maybe the code in the box should be modified, so that anyone that copy paste will get the same exact code including the paragraf alignment.

this is great stuff! thanks!
Notebook & Computer Online Store in Indonesia:
http://www.anugrahpratama.com
Computer & Notebook Forum in Indonesia:
http://forum.anugrahpratama.com
Computer & Laptop Review & News Blog:
http://blog.anugrahpratama.com

nneonneo

Which box? If you refer to the one on the main mod page, that is exactly what I copied.
Check out the AJAX Shoutbox (my one and only mod to date :P)
Do you like SMF? Are you using ProBoards, InvisionFree, ActiveBoards or some other web-hosted forum? I can help you convert to SMF (without having to purchase a DB conversion)...contact me [nneonneo {at} gmail *dot* com], and see this topic
spammers here!

cr34t1v3

ah...so that's only a problem to mine.

great stuff...great support..thanks.
Notebook & Computer Online Store in Indonesia:
http://www.anugrahpratama.com
Computer & Notebook Forum in Indonesia:
http://forum.anugrahpratama.com
Computer & Laptop Review & News Blog:
http://blog.anugrahpratama.com

synicfan

Hi again.
I copied and pasted your code into the PHPbox.
the shoutbox is still showing blank.

here is the way the code looked after I saved it in the box:


Quote from: nneonneo on October 09, 2008, 12:13:18 AM
Ah, but in your case, it is all on the same line. Try it again.

The code you want is
   // YSHOUT HERE - shoutbox code
   global $txt,$context,$boarddir;
   if(allowedTo('yshout_view'))
   {
      echo '<br /><b>',$txt['yshout_shoutbox'],'</b><br /><br />';
      echo '<div id="yshout">';
      include_once($boarddir.'/yshout/yshout.php');
      echo '</div>';
   }
   elseif($context['user']['is_guest'])
      echo $txt['yshout_no_guests'];
   // YSHOUT END - shoutbox code

which MUST be on separate lines. synicfan, this might also apply to you (cr34t1v3, using the admin details you sent me, I have just gone ahead and fixed it for you)

nneonneo

Yes, synicfan, that is all on one line. Try again.
Check out the AJAX Shoutbox (my one and only mod to date :P)
Do you like SMF? Are you using ProBoards, InvisionFree, ActiveBoards or some other web-hosted forum? I can help you convert to SMF (without having to purchase a DB conversion)...contact me [nneonneo {at} gmail *dot* com], and see this topic
spammers here!

synicfan

Quote from: nneonneo on October 09, 2008, 10:36:47 AM
Yes, synicfan, that is all on one line. Try again.

When I copy and paste your code, thats the way it shows up.
Do I need to format the code a certain way?

Sorry for being a pain.
I do appreciate your help!

nneonneo

What browser are you using? The code should look *identical* to what I posted.
Check out the AJAX Shoutbox (my one and only mod to date :P)
Do you like SMF? Are you using ProBoards, InvisionFree, ActiveBoards or some other web-hosted forum? I can help you convert to SMF (without having to purchase a DB conversion)...contact me [nneonneo {at} gmail *dot* com], and see this topic
spammers here!

gazza

nnenneo, i have installed the shoutbox but all i get is a message saying

...loading shoutbox...

And ideas?

synicfan

Quote from: nneonneo on October 09, 2008, 10:54:46 AM
What browser are you using? The code should look *identical* to what I posted.

Im using IE7.

Asshandler

How would you make it so that the Shoutbox is collapsed by default (for both Guests and Members) instead of expanded?

http://www.othersi.com
The only thing necessary for the triumph of evil is for good men to do nothing.

mraspy

I removed the old SB I had and installed 1.21. Everything seemed to install correctly, however, on page load.. it's there for a second then gone! No Shout Box. Any ideas? SMF ver. 1.1.6 Default theme, I just tweeked style.ccs

http://glendive-mt.net/GlendiveForum/index.php [nofollow]

thanks.

Advertisement: