Cap'n Refsmmat Posted August 4, 2005 Posted August 4, 2005 I'm working on a new wiki software along with dave (maybe aeternus as well), mainly to use for SFN's OpenScience wiki (if we can do it fast enough). Anyways, I'd like to ask if there are any experienced PHP and MySQL developers here. I mean experienced as in able to do coding without referring to a dozen tutorials on the way. Also you ought to know how to deal with security issues if necessary. If you would like to join us, and you know you have enough time and will to work on the project, register at SourceForge and tell me your account name. I will add you. If you turn out to be a crappy coder, I'll just boot you out. Don't join unless you know you can do it. Moderators: dave approved this post, so don't tell me it's advertisement
Sayonara Posted August 4, 2005 Posted August 4, 2005 I can help with any problems that need solving ("what's the best way to X?", etc), but I won't have time to develop.
Cap'n Refsmmat Posted August 4, 2005 Author Posted August 4, 2005 Sure. I definitely need it. Anybody else interested?
5614 Posted August 5, 2005 Posted August 5, 2005 I have time but about 0 experience, sorry, will be good to use when it's finished though!
Cap'n Refsmmat Posted August 5, 2005 Author Posted August 5, 2005 Bleh. Anybody that has CVS experience (but not PHP really), I need help with that too. Argh.
Klaynos Posted August 5, 2005 Posted August 5, 2005 cvs clients? And you know where I am if you want me, always happy to help I just need kicking into doing stuff...
Cap'n Refsmmat Posted August 5, 2005 Author Posted August 5, 2005 Never mind the CVS, I figured it out. If you want klaynos, sign up for SourceForge and I'll put you in as a "troubleshooter" or something.
Cap'n Refsmmat Posted September 2, 2005 Author Posted September 2, 2005 I'd like to ask if anybody has ideas on how to implement a categories system. It would be easy, but for the fact that I want to do them so that you can have sub-categories and sub-sub-categories and so on. I can't figure out how to display them and such though. Help?
Dave Posted September 3, 2005 Posted September 3, 2005 The easiest way of doing it is by having a 'parent' field in the database. You might have something like this: +-------------+---------------+-----------+ | Category ID | Name | Parent ID | +-------------+---------------+-----------+ | 1 | Mathematics | 0 | | 2 | Physics | 0 | | 3 | Calculus | 1 | | 4 | Analysis | 3 | | 5 | Thermal | 2 | | 6 | Fractals | 1 | +-------------+---------------+-----------+ So here, 0 is our base category and then you can see which category belongs to which tree. In this case: - Mathematics `- Calculus `- Analysis `- Fractals - Physics `- Thermal The code for actually parsing this lot isn't too hard, but you do have to use recursion (obviously).
Cap'n Refsmmat Posted September 3, 2005 Author Posted September 3, 2005 The code is the bit that I'm trying to figure out, and it is difficult enough. Bleh. I'll see what I can get.
Cap'n Refsmmat Posted September 4, 2005 Author Posted September 4, 2005 Aha! It works! Thanks Aeternus (he got it to me on IRC). Anyways, if someone here knows good Smarty, HTML, and CSS I'd like to upgrade the default style of scWiki. It looks a bit boring, I must say. After this, all I have to do is the admin control panel (it's half-done) and bugfixes and scWiki should be done!
Cap'n Refsmmat Posted September 4, 2005 Author Posted September 4, 2005 ...what? By the way, I wouldn't mind if everybody took a look at the demo and told me if there were any bugs. This time you can actually register...
Cap'n Refsmmat Posted September 17, 2005 Author Posted September 17, 2005 Another call for help. Version 1.0 may be out soon, so I'd like someone capable of helping me advance the featureset for 1.2. I can't do it all by myself, you know.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now