Jump to content

FM PHP Server Issue.


tir

This topic is 4510 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have a Filemaker and PHP connection set up.When I try to login to the PHP application i get an error with error code 22 and error description as 'Unknown Error'.

The Filemaker version is Filemaker Server 11 and the Client version is Filemaker 9.

Does anybody know about this error and how to resolve it?

Link to comment
Share on other sites

tir, do one thing. Make you connection file like this:

-----

define("FM_HOST","http://192.168.2.4");//your server ip

define("FM_FILE", "Khan");// file name

define("FM_USER", "admin");// database username

define("FM_PASS", "admin");// database password

require_once('fmview.php');

require_once('error.php');

require_once('FileMaker.php');

//connection string

$fm = new FileMaker(FM_FILE, FM_HOST, FM_USER, FM_PASS);

--

Link to comment
Share on other sites

you should use FileMaker server to put the database file. and according to me you should use Xammp as PHP server. Put your folder in the htdocs folder of Xammp in C drive. Please try explore more about your issues.

Link to comment
Share on other sites

This topic is 4510 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.