Previous Thread
Next Thread
Print Thread
Hop To
#29240 10/18/2000 7:17 AM
Anonymous
Unregistered
Anonymous
Unregistered
Hail scream !! I'm so happy to see you starting PHP.
All of you curently running perl w3t, I can tell you you will LOVE php version <img border="0" title="" alt="[Wink]" src="images/icons/wink.gif" />

My suggestions for PHP version:

- All the current w3t feature
- Show total post
- Welcome last registered user
- Unlimitted subcategories depth

Clean code, not too much sql querries per page <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Also, a question: is there a difference between porting a product to php from perl or writing it from scratch ? Will it be as good as if it was originally made for PHP ?

Will you do convert utilities so we can convert other PHP forums database to w3t php ?

Thats it <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Benj

#29241 10/18/2000 11:26 AM
Joined: Jun 2006
Posts: 9,242
Likes: 1
R
Former Developer
Former Developer
R Offline
Joined: Jun 2006
Posts: 9,242
Likes: 1
The initial version will be a straight port, new features will be added once I get the base version caught up with the perl version.

One thing that I have always gotten compliments on is clean/commented code, so that shouldn't be a problem.

I've got almost 2 years in of optimizing the program for SQL and the number of SQL calls has always been kept to a minimun as a priority.

The difference between porting and writing from scratch depends upon the languages. If you have a fundamental difference in the logic of the language then it would probably be easier to write from scratch. But, the differences between PHP and PERL are minimal, the logic is basically the same so there will be no loss in doing a port.

If there is enough interest in a conversion script from different products, then yeah I would probably write one up.

---
Scream
<A HREF="http://www.wcsoft.net" target="_new">http://www.wcsoft.net</A>

#29242 10/18/2000 12:26 PM
Anonymous
Unregistered
Anonymous
Unregistered
One thing that I have always gotten compliments on is clean/commented code, so that shouldn't be a problem.

Even if your indentation is suspect! <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Lee
<P ID="edit"><FONT SIZE=-1><EM>Edited by lcantey on 10/18/00 09:27 AM.</EM></FONT>

#29243 10/18/2000 12:30 PM
Joined: Jun 2006
Posts: 9,242
Likes: 1
R
Former Developer
Former Developer
R Offline
Joined: Jun 2006
Posts: 9,242
Likes: 1
Hey, what's wrong with my indentation? <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

---
Scream
<A HREF="http://www.wcsoft.net" target="_new">http://www.wcsoft.net</A>

#29244 10/18/2000 1:58 PM
Anonymous
Unregistered
Anonymous
Unregistered
Nothing..

What editor do you use for developement?

HomeSite 4.5 is the best windows Perl editor if you ask me.

You can set the tabs to spaces, (how ever many you want, 3 or 4 is what I use) that way your code always looks clean regardless of the editor you view it in.

Some editors treat tabs different than others so using spaces is the best <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Oh and nothing beats HomeSite's syntax highlighting <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Ever consider putting your code in a CVS and giving reged users read privis? <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

------------------------------------------------
Jeremy 'PeelBoy' Amberg

#29245 10/18/2000 2:12 PM
Anonymous
Unregistered
Anonymous
Unregistered
Spaces are great. A tab character, if present, must equate to an eight character tab stop. Nothing else is acceptable.

Lee.

#29246 10/18/2000 2:17 PM
Joined: Jun 2006
Posts: 9,242
Likes: 1
R
Former Developer
Former Developer
R Offline
Joined: Jun 2006
Posts: 9,242
Likes: 1
I use vi, that's it, nothing else. I do a 2 character space for indentation, but because of the // for comments in php I'm doing 3 spaces for indentation in php.

Have contemplated the cvs thing, but have never gotten the time to install it and set it up.

---
Scream
<A HREF="http://www.wcsoft.net" target="_new">http://www.wcsoft.net</A>

#29247 10/18/2000 2:18 PM
Anonymous
Unregistered
Anonymous
Unregistered
Hehe, thought I might get a rise there <img border="0" title="" alt="[Wink]" src="images/icons/wink.gif" /> . Actually the only problem I've run into that I really notice (I won't get into minor preferences like open brace location or amount of indentation which no one agrees on) is that you outdent your comments which breaks up the visual alignment of blocks. I tend to stop scanning upwards when I run across them. I'll manage <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Lee

#29248 10/18/2000 2:19 PM
Anonymous
Unregistered
Anonymous
Unregistered
Sorry for my ignorance, but what is a CVS? I just walked into a shoping cart script in PHP and saw that term and was wondering what it is... Thanks, I wont be ignorant to this any more... <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

As for the Perl editor, tried DZsoft Perl Editor?

Mateo Byler
<A HREF="http://crucedecaminos.com" target="_new">CruceDeCaminos.com</A>

#29249 10/18/2000 2:20 PM
Anonymous
Unregistered
Anonymous
Unregistered
Oh, cool... vi is nice.. I could never use it to develop because I'm not good enough in it yet, but for editing files here and there it is great (specially if I need to change a lot of things in a file.. gotta love vi!!)

CVS was actually pretty easy to setup and get working.. I haven't figured out users yet though.. I installed it the lazy way using an RPM since my server runs redhat.. Works great..

------------------------------------------------
Jeremy 'PeelBoy' Amberg

#29250 10/18/2000 2:22 PM
Anonymous
Unregistered
Anonymous
Unregistered
CVS == Concurrent Versioning System. Version control for source.

#29251 10/18/2000 2:26 PM
Anonymous
Unregistered
Anonymous
Unregistered
Nope never tried DZsoft.. I'll have to check it out..

CVS stands for Concurrent Versions System..

Think of VSS (Microsoft Visual Source Safe) or RCS (Revision Control System)

It's a place to keep your code.. It versions all of the files for you, and makes it a lot easier for multiple developers to work on one app..

You can checkout a peice of code from the CVS .. work on it.. then commit the code back to the CVS and it will merge all of the changes that other users made to the code while you had it checked out.. and it will give it a new version..

You can also take out older versions of your code if you need too... or if somebody messes up all of the code you can roll it back to a previous version and it is fine..

check out <A HREF="http://www.cvshome.com/" target="_new">http://www.cvshome.com/</A> for more information.

------------------------------------------------
Jeremy 'PeelBoy' Amberg

#29252 10/18/2000 2:32 PM
Anonymous
Unregistered
Anonymous
Unregistered
>>A tab character, if present, must equate to an eight character tab stop. Nothing else is acceptable

Who sez?

<img src="http://www.amdragon.com/images/eileensig.gif" alt=" - " />

#29253 10/18/2000 2:36 PM
Anonymous
Unregistered
Anonymous
Unregistered
icantey saz!! hehe <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />


------------------------------------------------
Jeremy 'PeelBoy' Amberg

#29254 10/18/2000 2:42 PM
Anonymous
Unregistered
Anonymous
Unregistered
Me! <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" /> Seriously, I have worked with quite a number of programmers on numerous projects over the years and tabs have always been a bone of contention. You may not like someones layout preferences, but differing tab sizes make it unusable. If there was a generic markup that described the setting used when creating the file it would be somewhat doable. Besides, try dumping your tabstop 2 source to a line printer and you'll have yet another reason <img border="0" title="" alt="[Wink]" src="images/icons/wink.gif" /> .

Lee

#29255 10/18/2000 2:43 PM
Anonymous
Unregistered
Anonymous
Unregistered
Now we're talking! <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

Lee

#29256 10/18/2000 2:43 PM
Anonymous
Unregistered
Anonymous
Unregistered
Oh, in that case..... phthwphth or words to that effect.
BTW have you tried TextPad? That's *my* fave editor.

<img src="http://www.amdragon.com/images/eileensig.gif" alt=" - " />

#29257 10/19/2000 3:01 AM
Anonymous
Unregistered
Anonymous
Unregistered
TextPad? Isn't that like Notepad+ or something?

I don't think I could ever stop using HomeSite that easy..

It's syntax highlighting is too awesome.. Most programs have crapy syntax highlighting.. plus you can turn tabs into spaces.. etc.. it's just a nice all around program.. for HTML, C, Perl, PHP etc.. I love it.. everybody I know who has used it, swears by it.

------------------------------------------------
Jeremy 'PeelBoy' Amberg

#29258 10/18/2000 5:15 PM
Anonymous
Unregistered
Anonymous
Unregistered
<A HREF="http://www.editplus.com" target="_new">http://www.editplus.com</A>

nuff said.

---------
Shalazar
<A HREF="http://www.charisma-carpenter.com" target="_new">http://www.charisma-carpenter.com</A>

#29259 10/19/2000 3:58 AM
Anonymous
Unregistered
Anonymous
Unregistered
Cocurrent Versions Systems (I'm pretty sure). It's something I could not live without. Pretty much it is a central location for code and people with access can download the code and then people with access can upload and update the current code. It allows for 2 different programmers to work on the same file at the sametime without running into a problem (as long as they don't work on the same lines of code ) because it merges both updates together. I mainly use it to back up and / or save code I write on the road.

As far as the editors discussion... vi, pico, Notepad, or MSVC++ Studio

#29260 10/19/2000 4:00 AM
Anonymous
Unregistered
Anonymous
Unregistered
The documentation on installing the source code be a BIT better considering it took me the first time like 2 hours to find out the port to set in inetd.conf

#29261 10/19/2000 12:24 PM
Anonymous
Unregistered
Anonymous
Unregistered
pico is very bad to use, unless it is a small file or you are creating it from scratch..

It likes to do weird things like chop off lines of code and junk..

vi is a much better choice <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

msvc++ is nice also, but I don't like waiting for it to load, and it's too centered around C/C++ not Perl/PHP.. HomeSite is good for just about any language.. (if I was writing c code I would pick msvc++ any day over home site though..)

------------------------------------------------
Jeremy 'PeelBoy' Amberg

#29262 10/19/2000 2:14 PM
Anonymous
Unregistered
Anonymous
Unregistered
Thanks to all who replied about CVS -Cocurrent Versions Systems! <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />
I am dying to use this as I am working on a script with a friend and we have to do everything by email... version numbers were working terrible for us, so glad I asked!

Thanks.

Mateo Byler
<A HREF="http://crucedecaminos.com" target="_new">CruceDeCaminos.com</A>

#29263 10/19/2000 9:11 PM
Anonymous
Unregistered
Anonymous
Unregistered
I was listing all the editors I use for all coding I do and all coding languages.

#29264 10/21/2000 8:47 AM
Anonymous
Unregistered
Anonymous
Unregistered
OK, here is a new software I have found: <A HREF="http://www.soysal.com/PHPEd/" target="_new">PHP Editor</A>. Its not just another highlighter, it does lot more, you need to have PHP installed though.
It´s really similar to <A HREF="http://www.dzsoft.com" target="_new">Perl Editor</A>, but for PHP, though it looks like it also can run Perl if you have it installed.

Check them out! <img border="0" title="" alt="[Cool]" src="images/icons/cool.gif" />

Mateo Byler
<A HREF="http://crucedecaminos.com" target="_new">CruceDeCaminos.com</A>

#29265 10/21/2000 1:02 PM
Anonymous
Unregistered
Anonymous
Unregistered
Can't get the PHP Editor link to work <img border="0" title="" alt="[Frown]" src="images/icons/frown.gif" />

#29266 10/21/2000 1:09 PM
Anonymous
Unregistered
Anonymous
Unregistered
Just use Notepad. <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

#29267 10/21/2000 1:10 PM
Anonymous
Unregistered
Anonymous
Unregistered
Found the link... <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />
It was actually recommended to me by some other people as well...it's good to have

#29268 10/22/2000 11:22 AM
Anonymous
Unregistered
Anonymous
Unregistered
If that dosen't work out, give this a try:
<A HREF="http://idm.ccrtcweb.com" target="_new">http://idm.ccrtcweb.com</A>
With the word files, you can edit almost anything, and the auto ftp configuration is kinda nice, when your working with remote servers. You have to pay for it, and it takes a little to set it up, but it absolutely rocks, IMHO

......
Forgive me Father, for I know not what I do.

#29269 10/22/2000 11:44 AM
Anonymous
Unregistered
Anonymous
Unregistered
Excellent. Can't wait for the PHP version.
Thank you,
Bob


Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
spam issues
by ECNet - 03/19/2024 11:45 PM
Looking for a forum
by azr - 03/15/2024 11:26 PM
Editing Links in Post
by Outdoorking - 03/15/2024 9:31 AM
Question on barkrowler and the like
by Mors - 02/29/2024 6:51 PM
Member Permissions Help
by domspeak - 02/27/2024 6:31 PM
Who's Online Now
1 members (Ruben), 476 guests, and 111 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20230217)