Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Main Settings not working

Asked Modified Viewed 5,575 times
M
mdiaz
M
mdiaz 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
asked
Newbie

Whenever I update something like the site title, nothing updates. It just stays the same way, even in the admin main page settings.
0 replies

14 posts

W
wheeler
W
Michael Wheeler
  • Member, joined since
  • Contributed 87 posts on the community forums.
  • Started 21 threads in the forums
answered
Member

Even in the Admin main page settings? Isnt that how you would do it anyways? Have you made any changes to your site recently, Added / deleted anything? Maybe even moved to a different webhost, Using a blind domain such as a .tk domain etc?
0 replies
M
mdiaz
M
mdiaz 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
answered
Newbie

no, nothing at all
0 replies
A
aljesmi
A
  • Newbie, joined since
  • Contributed 1 post on the community forums.
answered
Newbie

I have Same problem .. ??
0 replies
M
muscapaul
M
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

Sites: Diptera.info (site owner); Online-Keys.net (site owner); Sciomyzidae.info (site co-owner); muscapaul.com (defunct; site owner)
  • Veteran Member, joined since
  • Contributed 1,075 posts on the community forums.
  • Started 8 threads in the forums
answered
Veteran Member

Simple suggestion: see if a re-upload of the administration folder cures the problem.

Additional question: Did you do a recent PHPFusion system upgrade?
0 replies
F
fetloser
F
  • Senior Member, joined since
  • Contributed 275 posts on the community forums.
  • Started 2 threads in the forums
answered
Senior Member

the latest upgrade adds a bit of stuff to settings in the database.

preview this in a custom page once then try to change the main settings. (back up first of course)

<?php
$result = dbquery("ALTER TABLE ".$db_prefix."panels ADD panel_display TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER panel_access";
$result = dbquery("ALTER TABLE ".$db_prefix."settings ADD news_style TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER opening_page";
$result = dbquery("UPDATE ".$db_prefix."settings SET version='6.00.301'";
?>
0 replies
T
tefo
T
tefo 10
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
answered
Newbie

I have the same problem, and this happened after I upgraded my php-Fusion.
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

Run this code through a custom page and paste the output here. Also ensure you have uploaded the complete update contents.

<?php
$result = mysql_query("SHOW COLUMNS FROM {$db_prefix}settings");
if (mysql_num_rows($result) > 0) {
echo "<table class='tbl-border'>\n<td colspan='2'><b>settings Table Scheme</b></td>\n";
while ($row = mysql_fetch_array($result)) {
echo "<tr><td class='tbl1'>".$row[0]."</td><td class='tbl2'>".$row[1]."</td></tr>\n";
}
echo "</table>\n";
}
?>
0 replies
I
ImmOr7aL
I
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 5 threads in the forums
answered
Junior Member

i have the same problem with misc_settings page... ??
0 replies
T
tefo
T
tefo 10
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
answered
Newbie

Quote

Digitanium wrote:
Run this code through a custom page and paste the output here. Also ensure you have uploaded the complete update contents.

<?php
$result = mysql_query("SHOW COLUMNS FROM {$db_prefix}settings");
if (mysql_num_rows($result) > 0) {
echo "<table class='tbl-border'>\n<td colspan='2'><b>settings Table Scheme</b></td>\n";
while ($row = mysql_fetch_array($result)) {
echo "<tr><td class='tbl1'>".$row[0]."</td><td class='tbl2'>".$row[1]."</td></tr>\n";
}
echo "</table>\n";
}
?>



I get The following:


settings Table Scheme
sitename varchar(200)
siteurl varchar(200)
sitebanner varchar(200)
siteemail varchar(100)
siteusername varchar(30)
siteintro text
description text
keywords text
footer text
opening_page varchar(100)
locale varchar(20)
theme varchar(100)
shortdate varchar(50)
longdate varchar(50)
forumdate varchar(50)
subheaderdate varchar(50)
timeoffset char(3)
numofthreads smallint(2) unsigned
attachments tinyint(1) unsigned
attachmax int(12) unsigned
attachtypes varchar(150)
enable_registration tinyint(1) unsigned
email_verification tinyint(1) unsigned
admin_activation tinyint(1) unsigned
display_validation tinyint(1) unsigned
validation_method varchar(5)
album_image_w smallint(3) unsigned
album_image_h smallint(3) unsigned
thumb_image_w smallint(3) unsigned
thumb_image_h smallint(3) unsigned
thumb_compression char(3)
album_comments tinyint(1) unsigned
albums_per_row smallint(2) unsigned
albums_per_page smallint(2) unsigned
thumbs_per_row smallint(2) unsigned
thumbs_per_page smallint(2) unsigned
album_max_w smallint(4) unsigned
album_max_h smallint(4) unsigned
album_max_b int(10) unsigned
bad_words_enabled tinyint(1) unsigned
bad_words text
bad_word_replace varchar(20)
guestposts tinyint(1) unsigned
numofshouts tinyint(2) unsigned
counter bigint(20) unsigned
version varchar(10)
maintenance tinyint(1) unsigned
maintenance_message text
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

Well there's your problem, you've not clicked upgrade under system admin. if that refuses now you will need to run this in a custom page:

<?php
$result = dbquery("ALTER TABLE ".$db_prefix."panels ADD panel_display TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER panel_access");
$result = dbquery("ALTER TABLE ".$db_prefix."settings ADD news_style TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER opening_page");
$result = dbquery("UPDATE ".$db_prefix."settings SET version='6.00.301'");
?>
Edited by Falk on 02-01-2006 19:59,
0 replies
I
ImmOr7aL
I
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 5 threads in the forums
answered
Junior Member

and i have this result:
settings Table Scheme
sitename varchar(200)
siteurl varchar(200)
sitebanner varchar(200)
siteemail varchar(100)
siteusername varchar(30)
siteintro text
description text
keywords text
footer text
opening_page varchar(100)
news_style tinyint(1) unsigned
locale varchar(20)
theme varchar(100)
shortdate varchar(50)
longdate varchar(50)
forumdate varchar(50)
subheaderdate varchar(50)
timeoffset char(3)
numofthreads smallint(2) unsigned
attachments tinyint(1) unsigned
attachmax int(12) unsigned
attachtypes varchar(150)
enable_registration tinyint(1) unsigned
email_verification tinyint(1) unsigned
admin_activation tinyint(1) unsigned
display_validation tinyint(1) unsigned
validation_method varchar(5)
album_image_w smallint(3) unsigned
album_image_h smallint(3) unsigned
thumb_image_w smallint(3) unsigned
thumb_image_h smallint(3) unsigned
thumb_compression char(3)
album_comments tinyint(1) unsigned
albums_per_row smallint(2) unsigned
albums_per_page smallint(2) unsigned
thumbs_per_row smallint(2) unsigned
thumbs_per_page smallint(2) unsigned
album_max_w smallint(4) unsigned
album_max_h smallint(4) unsigned
album_max_b int(10) unsigned
bad_words_enabled tinyint(1) unsigned
bad_words text
bad_word_replace varchar(20)
guestposts tinyint(1) unsigned
numofshouts tinyint(2) unsigned
counter bigint(20) unsigned
version varchar(10)
maintenance tinyint(1) unsigned
maintenance_message text
but this code doesnt works:
<?php
$result = dbquery("ALTER TABLE ".$db_prefix."panels ADD panel_display TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER panel_access");
$result = dbquery("ALTER TABLE ".$db_prefix."settings ADD news_style TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL AFTER opening_page");
$result = dbquery("UPDATE ".$db_prefix."settings SET version='6.00.301'");
?>

0 replies
T
tefo
T
tefo 10
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
answered
Newbie

Thank you for your replies,

but under system admin, I get:

There is no database upgrade available.


And I have uploaded all the upgrade files to the server.

Thanks again!
0 replies
T
tefo
T
tefo 10
  • Newbie, joined since
  • Contributed 8 posts on the community forums.
answered
Newbie

Thanks, the code worked, though!!

0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

I suspect you upgraded to v3.01 before you realised, not to worry.
0 replies

Category Forum

Bugs and Errors - 6

Labels

None yet

Statistics

  • Views 0 views
  • Posts 14 posts
  • Votes 0 votes
  • Topic users 8 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet