Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post Bbcode Doesnt Seem To Work? 
 
Um, when I make a signature on my site for example it somehow just shows the code itself but not what its supposed to do. So I put an image and it doesnt display, just the code itself. HTML doesnt work either. I know this is probably stupid.... but do I have to turn it on or something? How can I actually get it to display the function it has to do, not the code?
Also, how can I make "Attach signature" to be checked on by default?
 



 
LiTosSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
goto ACP/configuration/icyphoeni/posting and messages and turn on Enable all BBCodes

   
 




____________
Mods and themes for Icy Phoenix 1.3

IcyPhoenix UK is off-line permanently due to lack of time to update mods.
if anyone is interested in my templates I will upgrade them to Icy 2.0.
 
DWhoSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Thanks, also, how can I make it not resize the images? You know like when you click them and they pop up with the ajax gallery thing, I want them not to resize or at least not to get cut off on the edges. And how do I make attach signature stay on by default?
 



 
LiTosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
You should look around ACP -> Configuration -> Limit Image Width -> Mod Configuration.

Check in your profile preferences that "Always attach my signature:" is set to YES.  Also, check the options I outlined in red in the picture.  If I understand you correctly, you are clicking "Attach signature (signatures can be changed in profile)" in the options block under the text field in a new post.  Try going to your profile and checking to see if those options outlined in red are set correctly.

 signatures
 signatures2

The "ajax gallery" thing you are talking about is LightBox Preview.  I don't like it either.

To turn it on and off, ACP -> Photo Album -> Thumbnail Settings -> Enable LightBox Preview.
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Looks like you got me a bit wrong.
What I meant was when you look at signatures on the forum, theyre resized automatically to a smaller size because apparantly it thinks its too big to be shown in its original size which corrupts the pixels and it looks bad. I never had lightbox preview enabled.
And as for the signatures I want the always show my signature enabled by default so when members register its checked and they dont have to go to their profile and check it.

Sorry, I'm not that stupid, I have some experience with forumming and webbing, just dont feel like messing around this time, I prefer just asking.
Cheers
 



 
LiTosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Uh...hello? anyone?
 



 
LiTosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Uh....hello!

I've got something you can try.

ACP -> Configuration -> Icy Phoenix -> Images In Posts -> Thumbnails in posts

Set this to NO and clear your cache.

I think I remember seeing a topic with some code to insert into your database to fix the problem of signatures not being set to ON by default.  I'm still looking.

**EDIT** I was wrong.  The code was for something else, but it could probably be adapted to fix the problem you are having: http://www.icyphoenix.com/viewtopic.php?t=4314

Please be patient and wait for someone to show you how to do this.  I'm not totally sure and I definitely don't want to mess your Icy Phoenix up.

Thanks!
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
Edited by Chaotic, Mon 08 Dec, 2008 00:47: Added a new link.
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Oh. How could I miss that. Thanks.
Oh and about the code, I'm pretty sure if you change the user_allow_pm_in to whatever the signature table is, it should work. If it doesnt then it just wouldn't make sense... so does anyone know what to replace it will and can anybody confirm if it will work?
Thanks again.
 



 
LiTosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
I can't believe how easy this was, but I found the solution.  To have "Always attach my signature" set to YES by default, try this:

OPEN: ip_root/includes/usercp_register.php

FIND:

Code: [Download] [Hide] [Select]
        $attachsig = ( isset($_POST['attachsig']) ) ? ( ($_POST['attachsig']) ? true : 0 ) : $userdata['user_attachsig'];


REPLACE WITH:

Code: [Download] [Hide] [Select]
        $attachsig = ( isset($_POST['attachsig']) ) ? ( ($_POST['attachsig']) ? true : 0 ) : true;

 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Didnt work for me. Its still not on by default and also if i go to the register page i get this on the top
Code: [Download] [Hide]
  1. Warning: Cannot modify header information - headers already sent by (output started at /home/elinaaks/public_html/litos-hq/includes/usercp_register.php:1) in /home/elinaaks/public_html/litos-hq/includes/page_header.php on line 1402  
  2.  
  3. Warning: Cannot modify header information - headers already sent by (output started at /home/elinaaks/public_html/litos-hq/includes/usercp_register.php:1) in /home/elinaaks/public_html/litos-hq/includes/page_header.php on line 1404  
  4.  
  5. Warning: Cannot modify header information - headers already sent by (output started at /home/elinaaks/public_html/litos-hq/includes/usercp_register.php:1) in /home/elinaaks/public_html/litos-hq/includes/page_header.php on line 1405  
  6.  


EDIT: Wait, didn't you mean

Code: [Download] [Hide]
  1.        $attachsig = ( isset($_POST['attachsig']) ) ? ( ($_POST['attachsig']) ? true : 1 ) : $userdata['user_attachsig']; 

Hold on, let me try that
edit: ah damn, same result. What now?
 



 
LiTosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Did you clear the cache?

Also, would you mind attaching your usercp_register.php file here for me?  I have no idea why it isn't working for you as it's working perfectly for me.  It doesn't go back and change already registered members.  The change is only seen when a new user registers.  Those errors are kind of baffling.
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Yeah I thought about that, but when those errors came up on registration page is bothered me.
No, I didn't clear my cache.
But is it possible to make my own signature always display? or do i have to remove my account and recreate it to get it working? theres only a few accounts registered and its brand new so its ok if i remove them and tell them to re register again, but what about myself?

usercp_register.rar
Description: Heres the file. 
Download
Filename: usercp_register.rar
Filesize: 19.74 KB
Downloaded: 124 Time(s)

 



 
LiTosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
Having your users register their account again isn't a bad idea.  If you had 2908309283 users, that wouldn't be an option.

You on the other hand as the administrator can just edit your profile preferences and tick the check box manually.  After you do it the first time, it'll stay ticked and your signature will always show up.

Try uploading this file to ip_root/includes/.

usercp_register.rar
Description: /includes/usercp_register.php 
Download
Filename: usercp_register.rar
Filesize: 19.81 KB
Downloaded: 125 Time(s)

 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
ok, thanks a lot. It worked. How did you do it though?
 



 
LiTosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Bbcode Doesnt Seem To Work? 
 
I followed my post: http://www.icyphoenix.com/viewtopic...&p=34701#p34701



Marking topic as solved.
 




____________
| Icy Phoenix ColorizeIt! |
Bipolar Disorder - Not good for you and definitely not good for everyone else.
 
ChaoticSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron