Search found 966 matches

by AND51
Sun Aug 04, 2013 8:51 pm
Forum: Announcement
Topic: PB Interpreter » Use PB instead of PHP or Perl for websites!
Replies: 82
Views: 66258

Re: PB Interpreter » Use PB instead of PHP or Perl for websi

@ everybody


Hello,

A lot of people are interested in my "PB Interpreter". Also, a lot of time has passed since I wrote the PB Interpreter in 2009.
Let me say that I've changed my personal Computer and my server a lot of times, so that the source code of this project now resides somwhere in a ...
by AND51
Thu Apr 21, 2011 4:14 pm
Forum: Linux
Topic: No installer for linux?
Replies: 28
Views: 8672

Re: No installer for linux?

the.weavster wrote:There is an OS that looks and works just like Windows already - it's called
...ReactOS :arrow: http://www.reactos.org

Absolutely free, looks exactly like Windows, is binary-compatible to Windows, etc...

SCNR :wink:
by AND51
Wed Apr 13, 2011 2:54 pm
Forum: Linux
Topic: No installer for linux?
Replies: 28
Views: 8672

Re: No installer for linux?

MachineCode wrote:
dhouston wrote:Which, of the 57,000 varieties of Linux do you recommend they support?
And this is precisely why Windows will always be the dominant OS. Linux has too many cooks spoiling the broth.
Dominating on Desktop Computers only (IMHO). On te server side, Linux will dominate, I tink.
by AND51
Mon Apr 04, 2011 3:15 pm
Forum: Announcement
Topic: PureBasic 4.60 Beta 1 released! (for real)
Replies: 59
Views: 46085

Re: PureBasic 4.60 Beta 1 released! (for real)

fr34k wrote:

Code: Select all

- changed FindString() 'StartPosition' parameter to be optional
Wohoooo! Finally! :D :wink:
by AND51
Fri Mar 11, 2011 11:38 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] IP Binding ...
Replies: 4
Views: 2242

Re: IP Binding ...

Well, I just didn't want to create yet another thread for this request.
by AND51
Fri Mar 11, 2011 4:30 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] IP Binding ...
Replies: 4
Views: 2242

Re: IP Binding ...

Just found this old (and dusty *cough*) topic.

While working on my Linux server, I thought how useful it would be to be able to stick to certain network interfaces. Just like Postfix, Postgrey, Amavis and so on. Then you could write some add-ons for those programs.
I suggest to expand the ...
by AND51
Thu Mar 10, 2011 12:15 pm
Forum: Announcement
Topic: PB Interpreter » Use PB instead of PHP or Perl for websites!
Replies: 82
Views: 66258

Re: PB Interpreter » Use PB instead of PHP or Perl for websi

Well, I'm glad to hear it works! :D

Maybe you can also show the others in this forum what great website you can write with PureBasic. So they can also see how powerful PB can be on a webserver.
by AND51
Thu Mar 10, 2011 8:13 am
Forum: Announcement
Topic: PB Interpreter » Use PB instead of PHP or Perl for websites!
Replies: 82
Views: 66258

Re: PB Interpreter » Use PB instead of PHP or Perl for websi

This is what i have understand :

1/ i put the folder of PB in "C:\PB451" for exampler
2/ I compile your code and name it "Compiler.exe"
3/ I put it in the "C:\PB451" (Beside "PureBasic.exe")
4/ I put *.pb in "Apache2.2\htdocs\"

5. You tell Apache that all *.pb are special files. So in httpdconf ...
by AND51
Tue Mar 08, 2011 5:25 pm
Forum: Announcement
Topic: PB Interpreter » Use PB instead of PHP or Perl for websites!
Replies: 82
Views: 66258

Re: PB Interpreter » Use PB instead of PHP or Perl for websi

Just Apacheand a PB installation.

You can use your full version of PB, this is allowed if it is your own server. But then make sure to not place PB accidentally in the httpdocs folder :lol: Otherwise, everybody could download your PB installation. If you want to be on the safe side, you can also ...
by AND51
Mon Mar 07, 2011 5:32 pm
Forum: Announcement
Topic: PB Interpreter » Use PB instead of PHP or Perl for websites!
Replies: 82
Views: 66258

Re: PB Interpreter » Use PB instead of PHP or Perl for websi

You're welcome! :D

Perhaps you want to post your link here, so we can see what you've created with PureBasic? :wink:
by AND51
Thu Mar 03, 2011 10:47 pm
Forum: Announcement
Topic: PB Interpreter » Use PB instead of PHP or Perl for websites!
Replies: 82
Views: 66258

Re: PB Interpreter » Use PB instead of PHP or Perl for websi

'Premature end of script headers: pb.cgi '
Well done! :) Now that you got it working, this is not a fault of the PB Interpreter any more.
The error is in your script now. Before you(r script) generate(s) any output, you must take care of a correct HTTP-Response header!

So the best is to start ...
by AND51
Wed Mar 02, 2011 11:48 am
Forum: Announcement
Topic: PB Interpreter » Use PB instead of PHP or Perl for websites!
Replies: 82
Views: 66258

Re: PB Interpreter » Use PB instead of PHP or Perl for websi

The PB Interpreter uses parameter to make the compiler's output silent.
If the compiler gives any output, the process is considered to be failed. What I've posted here is the Linux-Version, which uses the --quiet parameter for the compiler. On Winodws it must be /quiet, if I'm correct.

Please, have ...
by AND51
Thu Jan 06, 2011 10:16 pm
Forum: Feature Requests and Wishlists
Topic: Make startposition optional in FindString()
Replies: 20
Views: 3900

Re: Make startposition optional in FindString()

—1


Why all the +1's ... ? I thought you want to omit the ,1 so actually you all should write -1 in this thread, shouldn't you? :P :lol:

(SCNR)
by AND51
Thu Jan 06, 2011 10:12 pm
Forum: Feature Requests and Wishlists
Topic: Constants for ThreadPriority()
Replies: 0
Views: 742

Constants for ThreadPriority()

Similar to NetworkServerEvent() and NetworkClientEvent(), where constants were implemented, how about constants for ThreadPriority?

#PB_ThreadPriority_Low = 1
#PB_ThreadPriority_Normal = 16
#PB_ThreadPriority_High = 31
#PB_ThreadPriority_Critical = 32
The last constant could also be named ...