|
Page 1 of 2
|
LiTos 
Joined: November 2008
Posts: 48
|
 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?
|
#1 Mon 01 Dec, 2008 06:40 |
|
Sponsors

|
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
|
|
DWho 
Joined: August 2006
Posts: 1307
Location:  hampshire
|
 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.
|
#2 Mon 01 Dec, 2008 09:51 |
|
LiTos 
Joined: November 2008
Posts: 48
|
 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?
|
#3 Mon 01 Dec, 2008 20:51 |
|
Chaotic 
Joined: January 2008
Posts: 1369
Location:  Georgia
|
 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.
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.
|
#4 Tue 02 Dec, 2008 00:29 |
|
LiTos 
Joined: November 2008
Posts: 48
|
 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
|
#5 Sat 06 Dec, 2008 03:02 |
|
LiTos 
Joined: November 2008
Posts: 48
|
 Re: Bbcode Doesnt Seem To Work?
Uh...hello? anyone?
|
#6 Mon 08 Dec, 2008 00:01 |
|
Chaotic 
Joined: January 2008
Posts: 1369
Location:  Georgia
|
 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. |
#7 Mon 08 Dec, 2008 00:30 |
|
LiTos 
Joined: November 2008
Posts: 48
|
 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.
|
#8 Mon 08 Dec, 2008 21:30 |
|
Chaotic 
Joined: January 2008
Posts: 1369
Location:  Georgia
|
 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:
$attachsig = ( isset($_POST['attachsig']) ) ? ( ($_POST['attachsig']) ? true : 0 ) : $userdata['user_attachsig'];
REPLACE WITH:
$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.
|
#9 Wed 10 Dec, 2008 14:47 |
|
LiTos 
Joined: November 2008
Posts: 48
|
 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
- 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
-
- 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
-
- 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
-
EDIT: Wait, didn't you mean
- $attachsig = ( isset($_POST['attachsig']) ) ? ( ($_POST['attachsig']) ? true : 1 ) : $userdata['user_attachsig'];
Hold on, let me try that
edit: ah damn, same result. What now?
|
#10 Thu 11 Dec, 2008 02:42 |
|
Chaotic 
Joined: January 2008
Posts: 1369
Location:  Georgia
|
 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.
|
#11 Thu 11 Dec, 2008 03:19 |
|
LiTos 
Joined: November 2008
Posts: 48
|
 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?
Description: |
Heres the file. |
 Download |
Filename: |
usercp_register.rar |
Filesize: |
19.74 KB |
Downloaded: |
124 Time(s) |
|
#12 Thu 11 Dec, 2008 04:03 |
|
Chaotic 
Joined: January 2008
Posts: 1369
Location:  Georgia
|
 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/.
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.
|
#13 Thu 11 Dec, 2008 05:02 |
|
LiTos 
Joined: November 2008
Posts: 48
|
 Re: Bbcode Doesnt Seem To Work?
ok, thanks a lot. It worked. How did you do it though?
|
#14 Fri 12 Dec, 2008 00:02 |
|
|
Page 1 of 2
|
Was this topic useful?
Was this topic useful?
Link this topic |
URL |
|
BBCode |
|
HTML |
|
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
|
|
|
|