Jul Posted March 30, 2004 Posted March 30, 2004 Hi, I am trying to combine PHP (using FX class) and CDML to web enable my Filemaker database. The files are hosted on Macintosh. If I use only PHP and put all the files in Library/WebServer folder, I can connect to database and add/delete/edit record - no problem. When I am trying to use CDML and for that reason put all my files in Applications/FileMaker Pro 6.0/Web folder - it gives me an error that my proceed.php file cannot be found even though I am poiting to its location in the html files which are located in the FIlemaker/Web folder: <?php include_once("../../../Library/WebServer/Documents/proceed.php"); ?> If I put everything in Library/WebServer/Documents folder - the browser gives me an error that my database cannot be found. I wonder if there is a way to put everything in one location? I am new to it and would appreciate any help. Thank you Jul
Garry Claridge Posted March 30, 2004 Posted March 30, 2004 Your php files would be referrenced like this: <?php include_once("/proceed.php"); ?> or <?php include_once("http://localhost/proceed.php"); ?> Good Luck. Garry
Recommended Posts
This topic is 7613 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now