Custom Tiitle Mod : very strange problem!!

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Custom Tiitle Mod : very strange problem!!
djMattg
CZ Newbie
djMattg has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: May 19, 2006
0.00 posts per day
Posts: 6
Points: 175
   
Hello!

I download your Custom Title Mod, installation seem work fine but when I run the installer (title_install.php) nothing is added to my database...

I follow the instruction, edited the 14 files anc run the installer in this way : modules.php?name=Forums&file=title_install but I've always the same problem...

This is the message show after running the installer :

Information
Database type :: mysql
Aexoden's Custom Title Version:: 1.0.1

This installs the necessary database schema for Aexoden's Custom Title MOD. Currently, only the MySQL aspect has been tested. If you're using any other database, please report your results to Aexoden.



I attach my package downloaded from your site.

I hope you can help me!! Your mods are cool!!! But it's the only that give me problems... icon_cry.gif



Attached Files
Customtitle.zip (7.51 KB, Downloaded: 5238 Time(s))


Back to top Reply with quote
#2   
Gareth
CZ Addict
 Codezwiz Site Donator
Gareth has been a member for over 19 year's 19 Year Member
uk.gif
Occupation: Student, Webmaster
Gender: Male
Fav. Sports Team: Liverpool FC
Status: Offline
Joined: May 29, 2004
0.08 posts per day
Posts: 587
Points: 38,220
   
Your installer php file is the same as the one you download from the site. But for some reason it doesn't have anything under mysql:


switch ( SQL_LAYER )
{
   case 'mysql':
   case 'mysql4':


Which is, im assuming, your database type?

Thats the problem, I don't know why its like that though icon_rolleyes.gif


Back to top Reply with quote
#3   re: Custom Tiitle Mod : very strange problem!!
djMattg
CZ Newbie
djMattg has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: May 19, 2006
0.00 posts per day
Posts: 6
Points: 175
   
My database is MYSQL... simply...

There is not a way to make the installer working fine?? icon_cry.gif



Back to top Reply with quote
#4   
Gareth
CZ Addict
 Codezwiz Site Donator
Gareth has been a member for over 19 year's 19 Year Member
uk.gif
Occupation: Student, Webmaster
Gender: Male
Fav. Sports Team: Liverpool FC
Status: Offline
Joined: May 29, 2004
0.08 posts per day
Posts: 587
Points: 38,220
   
Well, since it was updated for PHP-Nuke by Telli, i'm sure he can help you out with the querys to install the database tables. I'd love to help but i'm not the greatest at MySQL commands. icon_rolleyes.gif

Gareth




_________________
[ Register or login to view links on this board.]
Back to top Reply with quote
#5   re: Custom Tiitle Mod : very strange problem!!
djMattg
CZ Newbie
djMattg has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: May 19, 2006
0.00 posts per day
Posts: 6
Points: 175
   
nope man! I'll wait icon_biggrin.gif



Back to top Reply with quote
#6   
Gareth
CZ Addict
 Codezwiz Site Donator
Gareth has been a member for over 19 year's 19 Year Member
uk.gif
Occupation: Student, Webmaster
Gender: Male
Fav. Sports Team: Liverpool FC
Status: Offline
Joined: May 29, 2004
0.08 posts per day
Posts: 587
Points: 38,220
   
I used all my brainpower, and it hurt. But I think i've come up with something you can run manually in your phpmyadmin.


ALTER TABLE nuke_users ADD user_custom_title VARCHAR( 255 ) NULL ;
ALTER TABLE nuke_users ADD user_custom_title_status TINYINT( 1 ) NOT NULL DEFAULT '0';

INSERT INTO nuke_bbconfig (config_name, config_value)
   VALUES ('custom_title_days', 0);

INSERT INTO nuke_bbconfig (config_name, config_value)
   VALUES ('custom_title_posts', 0);

INSERT INTO nuke_bbconfig (config_name, config_value)
   VALUES ('custom_title_mode', 0);

INSERT INTO nuke_bbconfig (config_name, config_value)
   VALUES ('custom_title_maxlength', 45);


It's basically what the installer does. Just I converted the first bit to mysql. I tested it on mine and theres nothing wrong with the syntax. So the only thing is we need to know is if the format is right etc. Always backup icon_smile.gif

Gareth

edit: this is assuming you're nuke prefix is nuke_


Back to top Reply with quote
#7   re: Custom Tiitle Mod : very strange problem!!
djMattg
CZ Newbie
djMattg has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: May 19, 2006
0.00 posts per day
Posts: 6
Points: 175
   
good! I'll try...



Back to top Reply with quote
#8   re: Custom Tiitle Mod : very strange problem!!
djMattg
CZ Newbie
djMattg has been a member for over 17 year's 17 Year Member
Gender: Male
Status: Offline
Joined: May 19, 2006
0.00 posts per day
Posts: 6
Points: 175
   
yehA!! Now in the admin panel all works fine!!

But... In my profile panel i can't see the field to add the custom title!!!!!

How is possible?!?!?No more error message or other problem... icon_evil.gif icon_cry.gif



Back to top Reply with quote
#9   
Gareth
CZ Addict
 Codezwiz Site Donator
Gareth has been a member for over 19 year's 19 Year Member
uk.gif
Occupation: Student, Webmaster
Gender: Male
Fav. Sports Team: Liverpool FC
Status: Offline
Joined: May 29, 2004
0.08 posts per day
Posts: 587
Points: 38,220
   
You can't see the field meaning there is no text box, or it is not saving correctly? I've never used the mod but you may need to go through the editing for usercp_register.php again. If that fails, I suggest re-editing or checking it all.

Gareth




_________________
[ Register or login to view links on this board.]
Back to top Reply with quote
#10   
Gareth
CZ Addict
 Codezwiz Site Donator
Gareth has been a member for over 19 year's 19 Year Member
uk.gif
Occupation: Student, Webmaster
Gender: Male
Fav. Sports Team: Liverpool FC
Status: Offline
Joined: May 29, 2004
0.08 posts per day
Posts: 587
Points: 38,220
   
By the way, posting your site URL makes it easier for us to see the problem in full. But no problem if you can't for any reason icon_mrgreen.gif

Gareth




_________________
[ Register or login to view links on this board.]
Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum