Download phpWebSite – phpWebSite

Download phpWebSite – phpWebSite: “Rsync Commands:
rsync -rtv phpwebsite.appstate.edu::stable-core .
rsync -rtv phpwebsite.appstate.edu::stable-modules [mod | /module]
rsync -rtv phpwebsite.appstate.edu::stable-themes [themes | /theme]

Browse Downloads :
Download Directory
CVS
Web Interface:
Browse

pserver:
0.10.x
cvs -z3 -d:pserver:anonymous@res1.stddev.appstate.edu:/home/cvsroot login
Just hit enter (no password)
cvs -z3 -d:pserver:anonymous@res1.stddev.appstate.edu:/home/cvsroot co phpwebsite-full

Daily Tarball:”

track 0

track 0: “Hello, I fixed this problem by editing ListingsManager.php in the mod/phpwslistings/class directory.

locate the line

$result = $GLOBALS[‘core’]->sqlSelect(‘mod_listings’,$match_columns);

and replace it with

$result = $GLOBALS[‘core’]->sqlSelect(‘mod_listings’,$match_columns,NULL,’sort_field_name sort_order’);

where sort_field_name is the field you want to sort by and sort_order = ASC or DESC.

My example sorts descending by creation date, as follows.

$result = $GLOBALS[‘core’]->sqlSelect(‘mod_listings’,$match_columns,NULL,’creationdate DESC’);

works for me!'”