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?

can't turn off Maintenance mode after upgrade

Asked Modified Viewed 3,849 times
V
vasiliok
V
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

Hi!

I've just upgraded my site from 6.00.105 to 6.00.304
All works fine except one thing: I can't turn off forum Maintenance mode (from admin>Miscellaneous Settings).

I can adjust all other forum settnings but "Miscellaneous Settings".

I press "save settings" button in "Miscellaneous Settings" page - page updating but no changes saved...

Could anyone please suggest what to do? :(
0 replies

11 posts

F
Falk
F
Falk 146
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 12 questions
answered
Super Admin

Run this through a custom page:
<?php
$result = dbquery("UPDATE ".$db_prefix."settings SET maintenance='0'");
Echo "maintenance off";
?>

make sure you have uploaded the new settings_misc.php file.
0 replies
V
vasiliok
V
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

Thank you for reply Digitanium!

I had run the script you wrote to me and it is turned off Maintenance mode!
Cool!

But I still have problem adjusting the settings on the "Miscellaneous Settings" page. "Save" button doesn't save any adjusted settings.

Sure I've uploaded new settings_misc.php file!
Tried to chmode it to 666, 755, 777 but it still doesn't work )-:
No change in database it makes.

What the problem with it???
0 replies
F
Falk
F
Falk 146
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 12 questions
answered
Super Admin

No dont chmod it, its probably a db issue, i'll help tomorrow as i have to go now.
0 replies
V
vasiliok
V
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

Thanx Digitanium!

Probably yes - it is db issue :(

I'll wait for your help tomorrow!
0 replies
F
Falk
F
Falk 146
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 12 questions
answered
Super Admin

Run this through a custom page, paste the result here

<?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
V
vasiliok
V
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

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
0 replies
— 1 year later —
R
ristom
R
ristom 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
answered
Newbie

i'm having same problem.
0 replies
M
moppentappers
M
  • Junior Member, joined since
  • Contributed 26 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

me2 DB issue indeed couse I had replaced all the related files
but nothing seems to be wrong
0 replies
R
ristom
R
ristom 10
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
answered
Newbie

so any ideas?
0 replies
— 3 months later —
D
darlingksr
D
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
answered
Newbie

Did we resolve this because I am having the same problem. Just moved to a new server, but everything transfered over fine, or so I thought.

I'm on 6.01.11 and just upgraded today and now cannot put site into maintenance mode. Sure would be nice.

I'll see what the scripts posted result in. Maybe I'll figure it out.

Darling
0 replies
D
darlingksr
D
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
answered
Newbie

Nevermind. It is working now. Not sure what it was.
0 replies

Category Forum

Bugs and Errors - 6

Labels

None yet

Statistics

  • Views 0 views
  • Posts 11 posts
  • Votes 0 votes
  • Topic users 5 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet