phun phorum
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4
Phorum 5.1.24a
Phorum is a web based message board written in PHP. more>>
Phorum project is a web based message board written in PHP. Phorum is designed with high-availability and visitor ease of use in mind.
Features such as mailing list integration, easy customization and simple installation make Phorum a powerful add-in to any website.
As of Phorum 5.0, PHP 4.2.x or higher is required. Some people have used it with earlier versions, but we can not support you on it. There were some key changes in that version that are beneficial to Phorum.
You can get PHP from the PHP site or if you are leasing web space, your provider may already have it installed. As database there is currently only MySQL supported while it should be possible to port the database layer to other databases. MySQL is available from MySQL AB. It is OpenSource. Just download, decompress, configure and go.
Another great thing about Phorum is that it is OpenSource software and is licensed under the Phorum License (Very similar to the PHP License and Apache License). This means it is free! But you need to be sure and read the license before using it.
<<lessFeatures such as mailing list integration, easy customization and simple installation make Phorum a powerful add-in to any website.
As of Phorum 5.0, PHP 4.2.x or higher is required. Some people have used it with earlier versions, but we can not support you on it. There were some key changes in that version that are beneficial to Phorum.
You can get PHP from the PHP site or if you are leasing web space, your provider may already have it installed. As database there is currently only MySQL supported while it should be possible to port the database layer to other databases. MySQL is available from MySQL AB. It is OpenSource. Just download, decompress, configure and go.
Another great thing about Phorum is that it is OpenSource software and is licensed under the Phorum License (Very similar to the PHP License and Apache License). This means it is free! But you need to be sure and read the license before using it.
Download (0.38MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
821 downloads
Papercut NNTP Server 0.9.13
Papercut NNTP Server is a NNTP server written in Python. more>>
Papercut NNTP Server is a news server written in 100% pure Python. It is intended to be
extensible to the point where people can develop their own plug-ins and by that integrate the NNTP protocol to their applications.
The server is compliant with most of the RFC0977 standards (when they make sense and are needed) and implements a lot of RFC1036 and RFC2980 extensions to the NNTP protocol. It was tested against Netscape News, Mozilla News and tin (under Solaris) and it works properly.
The original need for this server was to integrate my PHP related web site forums with an NNTP gateway interface, so people could list and read the messages posted to the forums on their favorite News reader.
At first it wasnt intended to support message posting, but it made sense to allow it after seeing how effective the tool was.
The concept of storage modules was created exactly for this. I would create a Python
class to handle the inner-workins of Phorum and MySQL and if I ever wanted to integrate the server with another type of software, I would just need to write a new storage module class.
Anyway, back to the technical praise. Papercut NNTP Server forking-based on UNIX platforms and should be reasonably fast (that means basically: its pretty fast, but dont try serving 1000 connection at a time).
The best thing about the application is that it is very simple to extend it.
<<lessextensible to the point where people can develop their own plug-ins and by that integrate the NNTP protocol to their applications.
The server is compliant with most of the RFC0977 standards (when they make sense and are needed) and implements a lot of RFC1036 and RFC2980 extensions to the NNTP protocol. It was tested against Netscape News, Mozilla News and tin (under Solaris) and it works properly.
The original need for this server was to integrate my PHP related web site forums with an NNTP gateway interface, so people could list and read the messages posted to the forums on their favorite News reader.
At first it wasnt intended to support message posting, but it made sense to allow it after seeing how effective the tool was.
The concept of storage modules was created exactly for this. I would create a Python
class to handle the inner-workins of Phorum and MySQL and if I ever wanted to integrate the server with another type of software, I would just need to write a new storage module class.
Anyway, back to the technical praise. Papercut NNTP Server forking-based on UNIX platforms and should be reasonably fast (that means basically: its pretty fast, but dont try serving 1000 connection at a time).
The best thing about the application is that it is very simple to extend it.
Download (0.16MB)
Added: 2005-10-12 License: BSD License Price:
1472 downloads
SQLayer 1.1
SQLayer is a Perl interface to DB. more>>
SQLayer is a Perl interface to DB.
new(database => DBI:mysql:database=phorum;host=localhost;port=3306, user => user, passowrd => somepass);
my $PAllRowsArrayRef = $D -> all_rows("SELECT a, b FROM dum"); # pointer to array
my @AOneColumnArray = $D -> column("SELECT a FROM dum"); # array
$D -> commit; # is equal to $D -> proc("COMMIT");
my $NConnectStatus = $D -> connect_status; # returns 1 if connected
$D -> DEBUG(1); # warn query only
$D -> DEBUG($n); # set trace level to $n-1
$D -> enable_transactions; # enable transactions if possible
$D -> errstr; # returns error code
my %HHashNameById = $D -> hash_all("SELECT id, name FROM dum"); #
my $PHashOneByFieldsNameRef = $D -> hash_row("SELECT a, b, c FROM dum WHERE id = 1"); # pointer to hash
my %HHashOneByFieldsName = $D -> hash_var("SELECT a, b, c FROM dum WHERE id = 1"); # hash
$D -> nodebug; # No warn query and clear tracing
$NAffectedRowsNum = $D -> proc("DELETE FROM dum WHERE a = b"); # affected rows
my @AOneRowArray = $D -> row("SELECT a, b, c FROM dum WHERE id = 1"); # array
my $NVvalue = $D -> row("SELECT a FROM dum WHERE id = 1 "); # one value
my $PRowOfHashRef = $D -> row_hash("SELECT a, b, c FROM dum"); # pointer to array of hashes
$SQuoted = $D -> quote($SSomeVar); # same as DBI method
<<lessnew(database => DBI:mysql:database=phorum;host=localhost;port=3306, user => user, passowrd => somepass);
my $PAllRowsArrayRef = $D -> all_rows("SELECT a, b FROM dum"); # pointer to array
my @AOneColumnArray = $D -> column("SELECT a FROM dum"); # array
$D -> commit; # is equal to $D -> proc("COMMIT");
my $NConnectStatus = $D -> connect_status; # returns 1 if connected
$D -> DEBUG(1); # warn query only
$D -> DEBUG($n); # set trace level to $n-1
$D -> enable_transactions; # enable transactions if possible
$D -> errstr; # returns error code
my %HHashNameById = $D -> hash_all("SELECT id, name FROM dum"); #
my $PHashOneByFieldsNameRef = $D -> hash_row("SELECT a, b, c FROM dum WHERE id = 1"); # pointer to hash
my %HHashOneByFieldsName = $D -> hash_var("SELECT a, b, c FROM dum WHERE id = 1"); # hash
$D -> nodebug; # No warn query and clear tracing
$NAffectedRowsNum = $D -> proc("DELETE FROM dum WHERE a = b"); # affected rows
my @AOneRowArray = $D -> row("SELECT a, b, c FROM dum WHERE id = 1"); # array
my $NVvalue = $D -> row("SELECT a FROM dum WHERE id = 1 "); # one value
my $PRowOfHashRef = $D -> row_hash("SELECT a, b, c FROM dum"); # pointer to array of hashes
$SQuoted = $D -> quote($SSomeVar); # same as DBI method
Download (0.003MB)
Added: 2007-07-18 License: Perl Artistic License Price:
828 downloads
Campsite 2.7.0 RC4
Campsite is a multilingual content management system (CMS) for news Web sites. more>>
Campsite is a robust, stable, and journalist-friendly solution for online magazines and newspapers that speaks your language.
Campsite is available in: English, Serbian (Cyrillic), and Serbo-Croatian (Latin), Arabic Portuguese, German, Russian, Czech, Romanian, Croatian, and Chinese.
Campsites user interface was built with the end user (journalist, editor, publisher) in mind, and it can be configured to suit different profiles of end users.
Campsite follows the print-newspaper publishing paradigm, so it structures sites by default as Publications > Issues > Sections > Articles.
Campsite project works best for medium-to-large-size online news publications, but it is capable of handling nimbler sites too.
Whats New in This Release:
Major Improvements (4 total)
----------------------------
01) #2326 - Attach Campcaster audio files to Campsite articles
02) #2327 - Upload audio files to the LS database from within Campsite
03) #2328 - Single sing-on
04) #2330 - Offline editing/Synchronizing Articles with Another Server
Small Improvements (6 total)
----------------------------
01) #2199 - Login screen should display the instance name
02) #2218 - Possibility to review attachments in admin interface
03) #2220 - Provide section description as property of section
04) #2224 - Possibility to copy/move/rename templates
05) #2281 - Show max upload file size in file attachment window
06) #2283 - Show additional info in the ATTACHMENT EDIT screen
07) #2436 - Mailout for article comments
08) #2385 - Arrow order direction icon needed in the audioclips list
for browse and search screens
Bugs Fixed (16 total)
---------------------
Bugs are listed in order of oldest to newest.
01) #2282 - Image attachments do not show in the browser
02) #2299 - Non-template files are not displayed properly
03) #2300 - "Move template" screen should not refresh when you
choose a directory
04) #2301 - Do not show current directory in "move template" screen
05) #2303 - Template screen "select all" and "select none" do not
work when non-template files are around
06) #2309 - Deleting a template folder does not record anything in Log
07) #2316 - Error adding attachment to an article
08) #2343 - Attachments: Put download icon next to file name
09) #2373 - ARTICLE LIST CSS broken
10) #2388 - Campcaster session is not closed when user logout
11) #2390 - Attach an audioclip to a specific translation of an article
does not work
12) #2394 - Ordering button works even when there is no audioclips
13) #2398 - Bad visualization on Comments index page
14) #2401 - The title is not retrieved properly when uploading an audioclip
15) #2402 - The album is not retrieved when uploading an audioclip
16) #2403 - Quote is replaced by when uploading and audioclip
17) #2416 - System preferences has nothing to do with User Configurations
18) #2417 - There are no LiveUser users for campsite users registered in
the frontend
19) #2419 - Misconfiguration in replication database name
20) #2457 - Create the phorum user matched the existent campsite user fails
21) #2459 - Ticket Inbox: I was trying to create a new section...
22) #2469 - Article field type topic to act like topic attachment
<<lessCampsite is available in: English, Serbian (Cyrillic), and Serbo-Croatian (Latin), Arabic Portuguese, German, Russian, Czech, Romanian, Croatian, and Chinese.
Campsites user interface was built with the end user (journalist, editor, publisher) in mind, and it can be configured to suit different profiles of end users.
Campsite follows the print-newspaper publishing paradigm, so it structures sites by default as Publications > Issues > Sections > Articles.
Campsite project works best for medium-to-large-size online news publications, but it is capable of handling nimbler sites too.
Whats New in This Release:
Major Improvements (4 total)
----------------------------
01) #2326 - Attach Campcaster audio files to Campsite articles
02) #2327 - Upload audio files to the LS database from within Campsite
03) #2328 - Single sing-on
04) #2330 - Offline editing/Synchronizing Articles with Another Server
Small Improvements (6 total)
----------------------------
01) #2199 - Login screen should display the instance name
02) #2218 - Possibility to review attachments in admin interface
03) #2220 - Provide section description as property of section
04) #2224 - Possibility to copy/move/rename templates
05) #2281 - Show max upload file size in file attachment window
06) #2283 - Show additional info in the ATTACHMENT EDIT screen
07) #2436 - Mailout for article comments
08) #2385 - Arrow order direction icon needed in the audioclips list
for browse and search screens
Bugs Fixed (16 total)
---------------------
Bugs are listed in order of oldest to newest.
01) #2282 - Image attachments do not show in the browser
02) #2299 - Non-template files are not displayed properly
03) #2300 - "Move template" screen should not refresh when you
choose a directory
04) #2301 - Do not show current directory in "move template" screen
05) #2303 - Template screen "select all" and "select none" do not
work when non-template files are around
06) #2309 - Deleting a template folder does not record anything in Log
07) #2316 - Error adding attachment to an article
08) #2343 - Attachments: Put download icon next to file name
09) #2373 - ARTICLE LIST CSS broken
10) #2388 - Campcaster session is not closed when user logout
11) #2390 - Attach an audioclip to a specific translation of an article
does not work
12) #2394 - Ordering button works even when there is no audioclips
13) #2398 - Bad visualization on Comments index page
14) #2401 - The title is not retrieved properly when uploading an audioclip
15) #2402 - The album is not retrieved when uploading an audioclip
16) #2403 - Quote is replaced by when uploading and audioclip
17) #2416 - System preferences has nothing to do with User Configurations
18) #2417 - There are no LiveUser users for campsite users registered in
the frontend
19) #2419 - Misconfiguration in replication database name
20) #2457 - Create the phorum user matched the existent campsite user fails
21) #2459 - Ticket Inbox: I was trying to create a new section...
22) #2469 - Article field type topic to act like topic attachment
Download (4.4MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
864 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above phun phorum search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed