Basic Questions? »  Show posts from    to     

Icy Phoenix


Old Support Topics - Basic Questions?



Sarken [ Sat 17 May, 2008 02:40 ]
Post subject: Basic Questions?
Well, I have two ¿basic? questions. Read this please:

1.- How can I make "default activated signature, avatar AND PM"? because my users have to activate it manually ¬¬.

2.-The first letter of all the words on the titles of ALL the topics are in capital letter. How could I change it?

Thanks a lot mates

See you,

Ps: Sorry for my absolutly terrifying english.


Mighty Gorgon [ Sun 18 May, 2008 00:58 ]
Post subject: Re: Basic Questions?
Default DB values have to be changed in your phpMyAdmin:

Code: [Hide] [Select]
ALTER TABLE `phpbb_users` CHANGE `user_allow_pm_in` `user_allow_pm_in` TINYINT(1) NOT NULL DEFAULT '1';
ALTER TABLE `phpbb_users` CHANGE `user_allow_mass_email` `user_allow_mass_email` TINYINT(1) NOT NULL DEFAULT '1';


Or something similar.

Regarding the second point you have to edit this...

OPEN includes/functions_post.php
FIND
Code: [Hide] [Select]
if (($userdata['user_level'] != ADMIN) && (($board_config['force_large_caps_mods'] == true) || ($userdata['user_level'] != MOD)))
{
//$post_subject = strtolower($post_subject);
$post_subject = ucwords($post_subject);
}

REPLACE WITH
Code: [Hide] [Select]
//$post_subject = ucwords($post_subject);




Powered by Icy Phoenix