XAMPP FOR LINUX
http://www.apachefriends.org/en/xampp-linux.html
all in one solutions..
Q

Cisco, this is simple solutions to all your needs..
http://www.chsoftware.net/en/useware/wos/wos.htm
http://www.chsoftware.net/en/useware/wo … n=download
I use the se version of apache mysql they are lighter in size
list of things you need:
Apache2_SE (Version 2.2.4)
ImageMagick (Version 4.2.9)
MySQL5_SE (Version 5.0.41)
PHP5_SE (Version 5.2.3)
PHPMyAdmin (Version 2.10.2)
PunBB (Version 1.2.15) of course..
roughly around 10.12 megs ziped about 70 megs uncompressed!

WOS is very light and fast for a webserver allows you to setup and browse from any pc or even threw your own ip address. this is great for making intranets solutions for small companys.

i know the owner of the site and i got him to use punbb as his support forum
Q

553

(5 replies, posted in PunBB 1.2 discussion)

thanks paul for clarifying that..


Q

554

(5 replies, posted in PunBB 1.2 discussion)

Paul, what would be the deal you would like to see if made into a cms and sold?

Q

are you talking about pagination? i didnt design it to do that. if that what you are looking for. you can alway call it news.php and at the botom add a link to new_tech.php or other pages you want to call it.


Q

556

(28 replies, posted in PunBB 1.2 troubleshooting)

Mattf i completely agree with you.. maybe one day there will be a simple fix or a damn good mod to stop it all or atleast a big %. not to work on the contact.php form.... seem that a good thing for spammer to get to you.,..hahaha...


thanks for all the insight.. that you have shared with me..


Q

557

(28 replies, posted in PunBB 1.2 troubleshooting)

i understand now... but to make my own dns caching server that might be a pain in the azzz...  i see where you siad something about a flatfile system.
that why i was asking about if some other site had a list of ip that thsi script could connect to.. even send the spam ip to...the site.

I think that this would be the best mod out for punbb...SO FAR!

Q

558

(28 replies, posted in PunBB 1.2 troubleshooting)

cache server? ok that alittle beyond my scope....
u got msn or aol yahoo?

559

(28 replies, posted in PunBB 1.2 troubleshooting)

ill have to read how to setup my own bind ...

sound very good... that would be a great way to fight some spam effectively!

560

(28 replies, posted in PunBB 1.2 troubleshooting)

i mean a list of ip that has sent spam. so that when they access the website. it redirects then somewhere else. sorta like this script..
lol...

Ill try to work on what exactly im trying to say.. in a few..

Q

561

(28 replies, posted in PunBB 1.2 troubleshooting)

Mattf, now.. here goes. is there a site that list IP to totally block user? say u go to my site and if your ip is listed it will block the site 100%?

Q

562

(28 replies, posted in PunBB 1.2 troubleshooting)

freakin sweet... a war on spam....hahaha...


Q

563

(28 replies, posted in PunBB 1.2 troubleshooting)

mattf, what does this do? are you modifying the register.php or some sorta blockage script for those listed.

hummm that might be a good mod. a blocking script via ip address and a redirect to some stupid site.

if ip is listed then redirects.

Q

winger what i did was mod the affilates.php in the user folder and take out the image link. next i made a rotating banner and included the image link from the affilates mod to rotate my images in any area i put the banner.php..

ill find the script for you and give you the code....
might take a few days
im on vacation..

Q

565

(25 replies, posted in PunBB 1.2 show off)

kewl.. i hope i was not being a smarty pants by that....

Q

566

(25 replies, posted in PunBB 1.2 show off)

doki wrote:
sirena wrote:

Very attractive and well put together.

Could you list the mods/patches/hacks/add-ons you've used?

Personally I'd re-arrange the top tabbed menu in alphabetical order: Home | About | Blogs | Calendar | Gallery etc rather than random.

The fonts on the green pun top menu also don't match the rest of the site, so I'd suggest a change there for consistency.

I'd also suggest changing the colour of the green pun menu to a shade of blue, to better match the palette of the site.

Actually I've used few mods here are some that I remember.

- Blogs
- Gallery
- Chatbox
- Calendar
- Image Upload on post
- Image Upload with thumbnail.
- Custom Page
- Adsense after first post

Most of the mods are re-modded and revised to fit on the site.

I'm still working Green menu (change color) and the font on it and also the spacing between the blue menu and the green. Aslo need to create a site logo.

Thanks for the suggestions...

567

(28 replies, posted in PunBB 1.2 troubleshooting)

now u can change the level of security by replacing sbl.spamhaus.org with some other html link.
and it will stop more..
ill try to find the page on here that explains more what im talking about....
hahaa


here it is....

http://punbb.org/forums/viewtopic.php?pid=99960#p99960

Q

568

(47 replies, posted in Programming)

Any new updates?

Q

here is the link......

http://www.punres.org/viewtopic.php?pid=10197#p10197


Q

570

(28 replies, posted in PunBB 1.2 troubleshooting)

fredrikin, someone gave me this code and it really seem to help!
plus i have rules turn on and timezone mod. with another captcha mod..

open register.php find
require PUN_ROOT.'include/common.php';
place this afterwards..

/***************************
   START SPAM PROTECTION
***************************/

// Address of the blocklist server
$checkspam['blocklist'] = 'sbl.spamhaus.org';

// Build the url to check (reverse DNS query). If you want to test if it works on
// your server, replace the "get_remote_address()" part with the following: '127.0.0.2'
$checkspam['Reverse DNS'] = implode( '.', array_reverse( explode( '.', get_remote_address() ) ) ) . '.' . $checkspam['blocklist'];

// Do the actual lookup. If the users IP is listed in the blocklist, we will be given just an IP back from the queried server.
// If the user is *not* listed as a spammer, the result we get back from the server will be the same string as we sent.
if( $checkspam['Reverse DNS'] != gethostbyname($checkspam['Reverse DNS']) ) {
    
    message('Unfortunately, it would appear that your current IP address is listed in one of the anti-spam databases we queried.
            Because of this, you will not be able to register a new account at this point in time. If you believe this to
            be a mistake, we urge you to read the FAQ over at <a href="http://www.spamhaus.org/faq/index.lasso">The Spamhaus Project</a>
            for more details, including actions you can take to resolve this issue.',true);
}

/****************************
   END OF SPAM PROTECTION
****************************/
Fatal error: Call to a member function rs_isEmpty() on a non-object in /home2/c/chantdeleau/www/wordpress/wp-content/plugins/wordpun/wordpun-class.php on line 292

Q

bloody ur site look very good but the images padding is off in FF and IE6!

Q

Smartys that is true! 

Q

codexp, extension are good but i think that should be a part of the core . to many time have people spammed punbb user mostly from Russia and a few other country's. maybe some smart AI system will someday be in places.

I'm going to apply that mod to all my punbb sites. im trying to do less install_mods and more hand coding the mods into punbb. MC(modelcrowd) has only 5 install mods.

thanks!
Q

575

(47 replies, posted in Programming)

I WOULD PAY FOR THE SOFTWARE TO BE DESIGNED! BUT THE AMOUNT WOULD NOT BE SOMETHING THAT IS CRAZY!

LIKE I SAID MAYBE A SCRIPT STORE FOR PUNBB!
LIKE TUFAT.COM

Q