• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

PHP on Orion ?

 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
trying to run a simply php application on Orion .
calling a .php page it gives me an
"500 Internal Server Error
Could not find/launch the interpreter, searched for "php"
"
Ok.
Hanging around with google i found this possible explanation :
"PHP must be in path for Orion to find it"
WHICH PATH ? Windows system variables path ? I already linked there my php.exe , but nothing !! i simply cannot find a clear doc on what to do to make php running on Orion.
Thnx..
Orion 2.0.2
Windows NT 4
PHP 4.3.4
w.s.
 
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I was always under the impression that Orion is primarily used for J2EE technologies, not PHP implementation.
I haven't delved deeply into Orion just yet, however I would suspect
that they might be refering to a config file in Orion. I would check the config file and search through for any mention of PHP and see if anything is commented out or deals with the placement of PHP files.
I've searched the Orion site and there doesnt seem to be much info. The only thing I've come across mentioning PHP is integrating Orion with Apache.
Michael
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Try restarting the windows machine. This is one solution for many of the problems.

Otherwise, try creating a batch file to start orion.
In the below example I have added the perl executables to the path.
You can try similarly for php executables also.

Something like this...
set path=%path%;C:\tools\perl\bin;
java -jar orion.jar

Hope this helps.

~S
[ August 12, 2004: Message edited by: S. Sundar Raman ]
 
Sheriff
Posts: 9109
12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does your php script run from the command line?
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic