PDA

View Full Version : Errors installing games all the sudden


doogie88
03-11-2007, 05:03 PM
I was installing games fine, now I am getting this error:

Parse error: parse error, unexpected ';', expecting ')' in /home/stew/public_html/forums/arcade/tmp/3d_Net_Blazer.php on line 20

every game I try and install I am getting this error.

Kacela
03-13-2007, 01:05 PM
Make sure the .php file that accompanies the game has the proper syntax for a .php file. Here is an example of what the .php file should include and the syntax:
<?php

$config = array(

gname => 'double-wiresKAC',
gtitle => 'Double Wires',
bgcolor => '330099',
gwidth => '550',
gheight => '400',
active => '1',
gcat => '1',

//optional leave blank if not using
gwords => "Spiderman Stickman!",
object => "Swing as far and as often as you can. Aim with the mouse and left-click to shoot your swinging wire. The wire will anchor exactly where you click. ***SET DECIMAL PLACE TO 2*** Author's site: http://ishi.blog2.fc2.com/",
gkeys => "Mouse",

);?>The error you seem to be getting is from the termination of the .php document. Make sure the .php is properly coded and doesn't contain any semi-colons ( ; ) in the body of the .php document. The person who converted the game may have stuck a premature one in there by accident.

doogie88
03-14-2007, 02:20 AM
<?php
/*--------------------------------------------------*/
/* File Created by ibProArcade 3.x.x! */
/* File Generated: Sun, 11 Mar 2007 17:03:24 GMT */
/*--------------------------------------------------*/

$config = array(
'active' => '1',
'bgcolor' => '3366',
'gcat' => '40',
'gheight' => '570',
'gkeys' => 'Game playing instructions are on the main screen.',
'gname' => 'ten_pin_bowling_game',
'gtitle' => 'Ten Pin Bowling',
'gwidth' => '400',
'gwords' => 'This has to be the best Online Bowling game around.',
'object' => 'This has to be the best Online Bowling game around.',
'snggame' => '0',

?>

stangger5
03-14-2007, 08:47 AM
?>


Look at the end,,its needs to be this....


);?>

doogie88
03-15-2007, 01:24 AM
Weird that these dont' have it.
THanks.