XMB Forum Software
Not logged in [Login - Register]
Go To Bottom

Printable Version  
 Pages:  1  2
Author: Subject: xmb1.10 smalltalk (formerly "minor caveats thread")
flushedpancake
Member
***


Avatar


Posts: 76
Registered: 4-1-2024
Location: England
Member Is Offline

Mood: meh

posted on 5-25-2025 at 10:43 PM Edit Post Reply With Quote



Looks good! I think it's worth seeing about integration. (Also, what's been up? It's been a little while, hasn't it?)

And don't fret, it wasn't boring. It's nice to have my eyes actually opened up to coding standards that aren't from like 2007, lol. :P



[insert witty quote here]
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 5-27-2025 at 04:55 AM Edit Post Reply With Quote



Working a lot right now so had to put some things on pause.

Symfony has some great features but also some limits to its documentation. I already raised 3 issues with the EventDispatcher docs project.
View user's profile Visit user's homepage View All Posts By User
flushedpancake
Member
***


Avatar


Posts: 76
Registered: 4-1-2024
Location: England
Member Is Offline

Mood: meh

posted on 6-1-2025 at 05:11 AM Edit Post Reply With Quote



That's okay, no worries. Take your time. :)

By the way, do you have an account on ycombinator/slashdot/etc? Might be worth putting out the news about XMB's redevelopment on those kind of programmer spaces - you never know quite who's lurking, and jogging once-thought-to-be-lost memories might actually be a decent shot.

Meanwhile, speaking of documentation, what's the XMB documentation like? I haven't looked into it much.



[insert witty quote here]
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 6-1-2025 at 01:55 PM Edit Post Reply With Quote



I maintain a few pages in the docs. Nobody has worked on the rest in a very long time.

https://docs.xmbforum2.com/index.php?title=Special:Contribut...
View user's profile Visit user's homepage View All Posts By User
flushedpancake
Member
***


Avatar


Posts: 76
Registered: 4-1-2024
Location: England
Member Is Offline

Mood: meh

posted on 6-3-2025 at 01:08 AM Edit Post Reply With Quote



Huh, no signup page?
I was going to fix up the BBCode one. :P



[insert witty quote here]
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 6-3-2025 at 04:58 PM Edit Post Reply With Quote



This community is too small to justify anonymous (spam) wiki usage. I will setup an account and send it to your email today.
View user's profile Visit user's homepage View All Posts By User
flushedpancake
Member
***


Avatar


Posts: 76
Registered: 4-1-2024
Location: England
Member Is Offline

Mood: meh

posted on 6-5-2025 at 05:52 AM Edit Post Reply With Quote



I don't think the email went through. Typical GMX moment I suppose.

Feel free to U2U the password or something.

(Also, there's a missing line break in the last section of the board rules on this very site. :P)



[insert witty quote here]
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 6-6-2025 at 02:34 AM Edit Post Reply With Quote



Just got busy, sorry. I'll work on it now.
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 6-11-2025 at 05:21 PM Edit Post Reply With Quote



Nice first edit. I can see that BBCode page has a lot of old formatting issues. Based on the short history, my guess is it didn't import very well either from the old wiki or the old HTML files.
View user's profile Visit user's homepage View All Posts By User
flushedpancake
Member
***


Avatar


Posts: 76
Registered: 4-1-2024
Location: England
Member Is Offline

Mood: meh

posted on 6-11-2025 at 07:29 PM Edit Post Reply With Quote



I did think it was a bit cumbersome. Still needs some work, but it's not as weird as it was.



[insert witty quote here]
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 6-16-2025 at 11:24 PM Edit Post Reply With Quote



Trying to untie a knot on the alpha site today. I tracked down a bug in a file I'm working on, with no errors thrown. When I stub an error_reporting() call it returns -10251 which... without some kind of binary calculator could mean just about anything. I'm also wondering if that level is invalid and where it's coming from.

https://github.com/php/php-src/issues/18867
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 6-17-2025 at 08:49 PM Edit Post Reply With Quote



Here's the problem with DreamHost: They wrote a proprietary PHP extension called dh_php_ext that forces a bit mask of ~2 & ~8 & ~2048 & ~8192 on the PHP error_reporting value.

The workaround is to add this to the .user.ini file in the site directory:

error_reporting_allow_deprecated = 1
error_reporting_allow_notice = 1
error_reporting_allow_strict = 1
error_reporting_allow_warning = 1

DreamHost recommends doing this in the phprc file, however those are version-specific and less convenient.

After that, it might be necessary to use an SSH login to kill the php processes.

killall -9 php84.cgi -u <username>

This implies you will have to create an SSH login if you don't already have one. Alternatively, it may be possible to wait several minutes for the PHP process to recycle on its own.
View user's profile Visit user's homepage View All Posts By User
miqrogroove
XMB 1.9.12 Lead Developer
*********


Avatar


Posts: 528
Registered: 10-1-2002
Member Is Offline

Mood: Past Three O'Clock

posted on 6-23-2025 at 02:18 PM Edit Post Reply With Quote



The Symfony Mailer is workable now. :cool: The readme file is updated accordingly. The alpha site is still using PHP mail() so nothing fancy to see there. I need to find out if we can use Symfony's DKIM signing along with their Sendmail Transport. If I can make that work, I will definitely switch the alpha site to the Symfony mode.
View user's profile Visit user's homepage View All Posts By User
 Pages:  1  2

  Go To Top

Powered by XMB 1.10.00-alpha (Debug Mode)
XMB Forum Software © 2001-2025 The XMB Group
[Queries: 14] [PHP: 24.8% - SQL: 75.2%]