News:

Join the Facebook Fan Page.

Main Menu

Recent posts

#1
SMF 2.1.x Support / Re: Admin - Make backups.
Last post by User2 - Today at 03:32:31 AM
I created the theme inaccurately. I wanted to point out that there is a discrepancy on the forum.
#2
SMF 2.1.x Support / Re: Admin - Make backups.
Last post by MobileCS - Today at 03:30:06 AM
Do you have SSH access? If so, I would recommend using a MySQL backup script.

I believe the most popular option is AutoMySQLBackup, but it hasn't been updated in five years. I've created a new tool with many more features. If you'd like to check it out, you can do so by visiting this link:

https://github.com/qcybb/mysqlbackup-plus

You can set it up to back up entire databases or specific tables, choose from multiple compression methods, automatically rotate weekly and monthly backups, auto analyze and optimize tables and more.

#3
SMF 2.1.x Support / Admin - Make backups.
Last post by User2 - Today at 02:33:45 AM
Forum version: 2.1.4.
Path: Admin - Maintenance - Forum Maintenance - Database.
Here in the title it says: Optimize tables, make backups, check for errors, and prune boards with these tools.
Pay attention to the "make backups".
But there is no "make backups" on this webpage.
#4
News and Updates / Re: SMF 2.1.6 released
Last post by M.Uzun - Yesterday at 10:04:37 PM
Thank you :)
#5
Theme Site Themes / Re: ProCurve
Last post by M.Uzun - Yesterday at 10:01:35 PM
Thank you ☺️
#6
Theme Site Themes / Re: Halloween
Last post by M.Uzun - Yesterday at 09:59:37 PM
Thank you
#7
SMF 2.1.x Support / Re: Undefined array key "mail_...
Last post by Randem - Yesterday at 09:10:56 PM
Hi, I got this message on a 2.1.4 system upgraded to 2.1.6 system with only the contact page package installed. This package is installed on every system we have and is not the issue. The other suggestions in this thread do not help, the email system was working fine before the upgrade. This is a test system and the issue cannot be reduced to other mods. It is a SMF code issue that this is not found.

I installed the SMF 2.1.4 system and this issue does not present when sending an email with the same MOD installed.
#8
SMF 2.0.x Support / Re: Can't login
Last post by Sir Osis of Liver - Yesterday at 09:04:25 PM
Yes, I know, but OP was already familiar with ACP, and may not have used repair_settings, so it would have required more explanation.  Simplest way is best way.
#9
Graphics and Templates / Re: windowbg and/or post_wrapp...
Last post by Antechinus - Yesterday at 05:49:40 PM
The problem is due to the .poster div being floated. Since .post_wrapper has no overflow attribute declared it will not wrap floated content. This is very old school stuff that a lot of people still don't know (or maybe have forgotten). The result is that .post_wrapper is collapsing to fit the height of .postarea (which is not floated).

Honestly it's daft that 2.1 is still using a float here, because it just causes problems with things like this and with RTL support. Grid is the way to go in this instace, for sanity with default markup.

I am running this on default markup:
.post_wrapper {
display: grid;
grid-template-columns: 175px minmax(0,calc(100% - 32px));
grid-auto-rows: 1fr min-content;
}
@media screen and (max-width: 720px) {
.post_wrapper {
display: block;
}
}
.poster {
grid-column: 1 / 2;
grid-row: 1 / 3;
width: 175px;
padding: 10px 0 15px 15px;
}
.postarea {
grid-column: 2 / 3;
grid-row: 1 / 2;
display: flex;
flex-direction: column;
margin: 0;
padding: 10px 15px 0 10px;
}
.moderatorbar {
grid-column: 2 / 3;
grid-row: 2 / 3;
margin: 0;
padding: 0 15px 10px 10px;
}
#10
SMF 2.1.x Support / Re: Display issue after 2.1.5 ...
Last post by Kindred - Yesterday at 03:55:07 PM
looks like you had a conflict with one of the avatar mods
Advertisement: