I'm making some progress on this :wink: Each time I complete a section I'll submit it to the MOD Team for review. Once they have reviewed it I'll post it here for peer review.
You could possibly post it here before submitting it to the MOD Team for review... Possibly have some sort of running ...
Search found 56 matches
- Fri Aug 29, 2003 11:09 pm
- Forum: General EM Discussion
- Topic: emc
- Replies: 33
- Views: 33552
- Fri Aug 29, 2003 9:00 pm
- Forum: General EM Discussion
- Topic: emc
- Replies: 33
- Views: 33552
emc
[i tried replying to the sticky, but it wouldn't accept my post, so i'm trying a new topic instead]
Is there some way in which i could help out?
Is there some sort of document or template of a document that is started that could be fleshed out and/or added to? If so, where can this be found?
Is there some way in which i could help out?
Is there some sort of document or template of a document that is started that could be fleshed out and/or added to? If so, where can this be found?
- Fri Aug 29, 2003 8:47 pm
- Forum: General EM Discussion
- Topic: [rejected] Check the whole mod for FIND-errors
- Replies: 14
- Views: 15833
Re: [rejected] Check the whole mod for FIND-errors
Just out of curiousity, can't you keep track of where your current filepointer is, store a copy of it or something perhaps, and if you hit the end of the file while still searching, revert to your backup filepointer, skip the bork FIND, and go onto the next?
my fileaccess php skillz are not l33t ...
my fileaccess php skillz are not l33t ...
- Fri Aug 29, 2003 10:56 am
- Forum: General EM Discussion
- Topic: [Considering] Author Notes
- Replies: 12
- Views: 11533
Re: Author Notes
interesting. i suggested this a week or two ago in Mod Authors on phpBB2, and i got what seemed like a fairly firm rejection or stoney silence...
Edit: maybe that's overdoing it, i guess that's just the impression i got
If anyone is intersted in reading, i found the link, it's here
Edit: maybe that's overdoing it, i guess that's just the impression i got
If anyone is intersted in reading, i found the link, it's here
- Thu Aug 28, 2003 6:53 am
- Forum: General EM Discussion
- Topic: EM Compliant MODs
- Replies: 3
- Views: 6508
EM Compliant MODs
Will you be creating a list of (reportedly) EM compliant MODs?
also when will you be releasing a standards doc so we know how to actually make things EMC in the first place? I would enjoy forwarding people using my MODs to use EM, if i only knew how to be sure that EM will install my MODs properly ...
also when will you be releasing a standards doc so we know how to actually make things EMC in the first place? I would enjoy forwarding people using my MODs to use EM, if i only knew how to be sure that EM will install my MODs properly ...
- Tue Aug 12, 2003 4:06 am
- Forum: [3.0/Olympus] Discussion
- Topic: PHP coding style
- Replies: 4
- Views: 7031
Re: PHP coding style
Well, as an alternate suggestion, for those *really long* queries, what about logical groupings?
Instead of
$sql = "SELECT u.username,
u.user_id,
u.user_posts,
u.user_from,
u.user_website,
u.user_email,
u.user_icq,
...
p.*,
pt.post_text,
pt.post_subject,
pt.bbcode_uid
FROM ...
Instead of
$sql = "SELECT u.username,
u.user_id,
u.user_posts,
u.user_from,
u.user_website,
u.user_email,
u.user_icq,
...
p.*,
pt.post_text,
pt.post_subject,
pt.bbcode_uid
FROM ...