You can subscribe to this list here.
| 2003 |
Jan
(14) |
Feb
(14) |
Mar
(58) |
Apr
(6) |
May
(61) |
Jun
(30) |
Jul
(21) |
Aug
(7) |
Sep
|
Oct
|
Nov
(10) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
(11) |
Mar
(16) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(85) |
| 2005 |
Jan
(31) |
Feb
(5) |
Mar
(18) |
Apr
(7) |
May
(1) |
Jun
(13) |
Jul
(33) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
(2) |
Mar
(21) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: ktukker <kt...@us...> - 2003-03-24 21:05:48
|
CVS commit by ktukker: website updates from john A website/style/style.css 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-24 21:05:48
|
CVS commit by ktukker: website updates from john A website/images/php-logo.jpg 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-24 21:05:47
|
CVS commit by ktukker: website updates from john M +15 -7 website/files/about.php 1.3 M +6 -3 website/files/documentation.php 1.3 M +7 -3 website/files/examples.php 1.3 M +12 -5 website/files/home.php 1.7 M +28 -14 website/files/links.php 1.2 |
|
From: ktukker <kt...@us...> - 2003-03-24 21:05:46
|
CVS commit by ktukker: website updates from john M +89 -57 website/index.php 1.3 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:38:42
|
CVS commit by ktukker: Fixed span M +2 -0 website/files/home.php 1.6 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:36:57
|
CVS commit by ktukker: M +8 -6 website/files/home.php 1.5 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:33:03
|
CVS commit by ktukker: M +4 -1 website/files/home.php 1.4 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:04:31
|
CVS commit by ktukker: developer credits updated M +3 -1 sources/README 1.2 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:04:01
|
CVS commit by ktukker: Website update A website/images/flash.gif 1.1 A website/images/speaker_logo.gif 1.1 A website/images/title_about.gif 1.1 A website/images/title_amfformat.gif 1.1 A website/images/title_bugs.gif 1.1 A website/images/title_developers.gif 1.1 A website/images/title_documentation.gif 1.1 A website/images/title_examples.gif 1.1 A website/images/title_phpconference.gif 1.1 A website/images/title_thanks.gif 1.1 A website/images/title_tutorials.gif 1.1 A website/images/titles.psd 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:04:01
|
CVS commit by ktukker: Website update A website/files/examplegoogle.php 1.1 M +33 -13 website/files/about.php 1.2 M +63 -13 website/files/documentation.php 1.2 M +33 -13 website/files/examples.php 1.2 M +36 -34 website/files/home.php 1.3 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:04:00
|
CVS commit by ktukker: Website update A website/examples/parkservice/campSelector.swf 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:03:59
|
CVS commit by ktukker: Website update M +1 -2 website/index.php 1.2 |
|
From: ktukker <kt...@us...> - 2003-03-22 21:02:32
|
CVS commit by ktukker: Directory /cvsroot/amfphp/website/examples/parkservice added to the repository |
|
From: ktukker <kt...@us...> - 2003-03-22 10:09:11
|
CVS commit by ktukker: Document to combine with first 0.5 distribution A sources/README 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-14 22:28:51
|
CVS commit by ktukker: Added URL to original CFC article M +2 -0 sources/examples/parkservice/doc/readme.txt 1.2 |
|
From: ktukker <kt...@us...> - 2003-03-12 22:31:00
|
CVS commit by ktukker:
To overcome include_path issues for those who are using a hosting provider or are not allowed to change it by themselves:
in your gateway.php you can use:
// path to the directory containing flashservices/
define("AMFPHP_INCLUDE_PATH","/path/to/your/amfphpdir/");
include(AMFPHP_INCLUDE_PATH."flashservices/app/Gateway.php");
$gateway = new Gateway();
When you can use the include_path setting of php, and the "flashservices/" is in
this path, you just can do:
include("flashservices/app/Gateway.php");
$gateway = new Gateway();
M +1 -1 sources/flashservices/io/AMFSerializer.php 1.7
|
|
From: ktukker <kt...@us...> - 2003-03-12 22:30:59
|
CVS commit by ktukker:
To overcome include_path issues for those who are using a hosting provider or are not allowed to change it by themselves:
in your gateway.php you can use:
// path to the directory containing flashservices/
define("AMFPHP_INCLUDE_PATH","/path/to/your/amfphpdir/");
include(AMFPHP_INCLUDE_PATH."flashservices/app/Gateway.php");
$gateway = new Gateway();
When you can use the include_path setting of php, and the "flashservices/" is in
this path, you just can do:
include("flashservices/app/Gateway.php");
$gateway = new Gateway();
M +2 -2 sources/flashservices/app/Executive.php 1.5
M +12 -9 sources/flashservices/app/Gateway.php 1.5
|
|
From: ktukker <kt...@us...> - 2003-03-12 22:28:02
|
CVS commit by ktukker: Removed own debug stuff M +1 -3 sources/examples/parkservice/gateway.php 1.2 |
|
From: ktukker <kt...@us...> - 2003-03-12 21:26:47
|
CVS commit by ktukker: This is the AMFPHP implementation of the Macromedia ParkService demo. The first implementation was done by Marc Camps of BrightAlley (www.brightalley.nl) I've rewritten the php and flash file for the usage with the new framework. Yep... I know, the fla file is large...... Macromedia ParkService implemented for AMFPHP ============================================== Contact: amf...@li... INSTALLATION ------------ 1. Create mysql database #> mysqladmin create parkservice 2. Import database records cat db/database.sql | mysql parkservice N.B. For these steps, it may be necessary to use a mysql username and password. This depends on your own installation 3. Put the flashservices/ library into your php include_path. This can be a system wide include_path or just your current directory. If you don't have a system wide include_path, put the flashservices/ in the same directory as the gateway.php and services/ directory (see step 4) 4. put the gateway.php and the services/ direcotry under a directory of your webserver. For example: webroot/parkservice/ . The URL could be something like http://yourhost/parkservice/gateway.php 5. Open the Flash-animation in Flash MX (campSelector.fla). In frame 1 change the variable gatewayurl to your own URL from step 4. 6. Run the movie... A sources/examples/parkservice/services/ParkService.php 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-12 21:26:45
|
CVS commit by ktukker: This is the AMFPHP implementation of the Macromedia ParkService demo. The first implementation was done by Marc Camps of BrightAlley (www.brightalley.nl) I've rewritten the php and flash file for the usage with the new framework. Yep... I know, the fla file is large...... Macromedia ParkService implemented for AMFPHP ============================================== Contact: amf...@li... INSTALLATION ------------ 1. Create mysql database #> mysqladmin create parkservice 2. Import database records cat db/database.sql | mysql parkservice N.B. For these steps, it may be necessary to use a mysql username and password. This depends on your own installation 3. Put the flashservices/ library into your php include_path. This can be a system wide include_path or just your current directory. If you don't have a system wide include_path, put the flashservices/ in the same directory as the gateway.php and services/ directory (see step 4) 4. put the gateway.php and the services/ direcotry under a directory of your webserver. For example: webroot/parkservice/ . The URL could be something like http://yourhost/parkservice/gateway.php 5. Open the Flash-animation in Flash MX (campSelector.fla). In frame 1 change the variable gatewayurl to your own URL from step 4. 6. Run the movie... A sources/examples/parkservice/doc/readme.txt 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-12 21:26:44
|
CVS commit by ktukker: This is the AMFPHP implementation of the Macromedia ParkService demo. The first implementation was done by Marc Camps of BrightAlley (www.brightalley.nl) I've rewritten the php and flash file for the usage with the new framework. Yep... I know, the fla file is large...... Macromedia ParkService implemented for AMFPHP ============================================== Contact: amf...@li... INSTALLATION ------------ 1. Create mysql database #> mysqladmin create parkservice 2. Import database records cat db/database.sql | mysql parkservice N.B. For these steps, it may be necessary to use a mysql username and password. This depends on your own installation 3. Put the flashservices/ library into your php include_path. This can be a system wide include_path or just your current directory. If you don't have a system wide include_path, put the flashservices/ in the same directory as the gateway.php and services/ directory (see step 4) 4. put the gateway.php and the services/ direcotry under a directory of your webserver. For example: webroot/parkservice/ . The URL could be something like http://yourhost/parkservice/gateway.php 5. Open the Flash-animation in Flash MX (campSelector.fla). In frame 1 change the variable gatewayurl to your own URL from step 4. 6. Run the movie... A sources/examples/parkservice/db/database.sql 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-12 21:26:41
|
CVS commit by ktukker: This is the AMFPHP implementation of the Macromedia ParkService demo. The first implementation was done by Marc Camps of BrightAlley (www.brightalley.nl) I've rewritten the php and flash file for the usage with the new framework. Yep... I know, the fla file is large...... Macromedia ParkService implemented for AMFPHP ============================================== Contact: amf...@li... INSTALLATION ------------ 1. Create mysql database #> mysqladmin create parkservice 2. Import database records cat db/database.sql | mysql parkservice N.B. For these steps, it may be necessary to use a mysql username and password. This depends on your own installation 3. Put the flashservices/ library into your php include_path. This can be a system wide include_path or just your current directory. If you don't have a system wide include_path, put the flashservices/ in the same directory as the gateway.php and services/ directory (see step 4) 4. put the gateway.php and the services/ direcotry under a directory of your webserver. For example: webroot/parkservice/ . The URL could be something like http://yourhost/parkservice/gateway.php 5. Open the Flash-animation in Flash MX (campSelector.fla). In frame 1 change the variable gatewayurl to your own URL from step 4. 6. Run the movie... A sources/examples/parkservice/DataGlue.as 1.1 A sources/examples/parkservice/campSelector.fla 1.1 A sources/examples/parkservice/gateway.php 1.1 |
|
From: ktukker <kt...@us...> - 2003-03-12 21:22:22
|
CVS commit by ktukker: Directory /cvsroot/amfphp/sources/examples/parkservice/services added to the repository |
|
From: ktukker <kt...@us...> - 2003-03-12 21:22:21
|
CVS commit by ktukker: Directory /cvsroot/amfphp/sources/examples/parkservice/db added to the repository |
|
From: ktukker <kt...@us...> - 2003-03-12 21:22:21
|
CVS commit by ktukker: Directory /cvsroot/amfphp/sources/examples/parkservice/doc added to the repository |