php bin

varial8kickflip

New Member
Messages
4
Reaction score
0
Points
0
i was wondering what the php bin was because there is a php script that requires it

'phpbin' => "php", this is the default but im not sure it its right thanks
 

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
It's not 100% sure that I have right since a language file in phpBB looks like this:

PHP:
$lang = array_merge($lang, array(
 'PORTAL'   => 'Portal',
 'ANNOUNCEMENTS'  => 'Announcements',
 'NEWS'       => 'News',
 'POLL'       => 'Poll',
 'READ_FULL'   => 'Read all',
 'NO_NEWS'   => 'No news',
 'POSTED_BY'   => 'Poster',
 'COMMENTS'   => 'Comments',
 'VIEW_COMMENTS'  => 'View comments',
 'POST_REPLY'  => 'Write comments',
 'CLOCK'    => 'Clock',

And that look very similliar as that you posted.
 

varial8kickflip

New Member
Messages
4
Reaction score
0
Points
0
ohhh i see what you mean but mines like this:

'phpbin' => "php",
'db' => "dummy",
'dbhost' => "",
'dbuser' => "",
'dbpass' => "",
'dbname' => ""
)
?>
 

Slothie

New Member
Messages
1,429
Reaction score
0
Points
0
Its an array definition, doesn't have to be a language file.
 
Top