filemaker

How to migrate the database from Filemaker to Mysql?

六月ゝ 毕业季﹏ 提交于 2019-12-07 05:25:34
问题 I am rebuilding an ERP system based on Symfony1.4 and MySQL 5.1. The challenge is that previous system was built on Filemaker Pro and I have to migrate all previous data to current system. For that, first I need to move all the data to a MySQL DB having the previous schema structure intact and then I can map the data to the current system schema by writing a script as needed. How should I proceed with that first step? Is there any existing tools or processes to do that? Any help will be

Sending data from AppleScript to FileMaker records

家住魔仙堡 提交于 2019-12-06 13:50:46
I'm computing some data in AppleScript that I'd like to then insert into a specific FileMaker record. Here's my AppleScript: on sendDataToFM(FileNameWithExtension, ClipLength) tell application "FileMaker Pro Advanced" show every record of database 1 show (every record whose cell "File Name" = FileNameWithExtension) repeat with i from 1 to (count record) set MatchingRecord to record i set data cell "CLIP LENGTH" of MatchingRecord to ClipLength end repeat end tell end sendDataToFM ... my sendDataToFM('Some Video.mov', '00:01:22.55') Everything works except the line set data cell "CLIP LENGTH" of

Filemaker with PHP

本小妞迷上赌 提交于 2019-12-06 11:07:41
Im using Filemaker API in PHP to retrieve the records from Filemaker Pro 11 Advance Database. But its showing error: Error: Communication Error: (22) The requested URL returned error: 404 - This can be due to an invalid username or password, or if the FMPHP privilege is not enabled for that user. Though I have set all Extend Privileges and gave it to user. Please anyone can help me... Although you mention you've taken care of this, whenever I've come across this problem it's been because the user being used to log in with PHP doesn't have the fmphp extended privilege set. First know which user

Change PHP.ini location file?

时光总嘲笑我的痴心妄想 提交于 2019-12-06 02:19:10
问题 I'm using apache2 on OSX, by default the php.ini location is: /private/etc/php.ini I need to change it to this... /Library/FileMaker Server/Web Publishing/publishing-engine/php/lion/lib/php.ini Any help? 回答1: Use PHPIniDir directive in apache config file after LoadModule : example : LoadModule php5_module /path/to/php5_module PHPIniDir path/to/php.ini Or set the PHPRC environment variable: example : export PHPRC=path/to/php.ini 回答2: If you are on Windows and using XAMPP, you can probably edit

Conditional Statements in XSLT when having to choose a tag from several elements

风格不统一 提交于 2019-12-04 19:59:41
I am relatively new to XSLT but am trying to learn it to provide a solution for a client. Although the ultimate aim is to write an XSLT for Filemaker Pro, I would like to first get the HTML one right. I receive a generated XML file which contains booking information for tours. The informatio it contains as well as the number of orders also varies. The XSLT is needed to present all the XML info in a more presentable table form. My problems begin when I put in the conditional statements. In the example if the value of BSServType='TUTU', the table should reflect some information, otherwise it

Laravel single route point to different controller depending on slugs

只愿长相守 提交于 2019-12-04 06:44:25
问题 I'm new to laravel and I have searched a lot for an answer to my problem but either it's not applicable or I'm not getting it. I have a FileMaker solution for a client that handle customers and events. Each customer to my client have their own event websites that is managed via the solution. A cms simply. Each customer get a site with a url like clientsite.com/event. Each page in the event has a page-type and I would like to address different controllers depending on the type. In routes.php i

Change PHP.ini location file?

纵饮孤独 提交于 2019-12-04 06:00:58
I'm using apache2 on OSX, by default the php.ini location is: /private/etc/php.ini I need to change it to this... /Library/FileMaker Server/Web Publishing/publishing-engine/php/lion/lib/php.ini Any help? Use PHPIniDir directive in apache config file after LoadModule : example : LoadModule php5_module /path/to/php5_module PHPIniDir path/to/php.ini Or set the PHPRC environment variable: example : export PHPRC=path/to/php.ini If you are on Windows and using XAMPP, you can probably edit the file: xampp\apache\conf\extra\httpd-xampp.conf , and change the php.ini location as below: <IfModule php5

What Are the Pros and Cons of Filemaker? [closed]

谁都会走 提交于 2019-12-02 16:12:31
A potential customer has asked me to look at some promotional flyers for a couple of apps which fall into the contact management / scheduler category. Both use Filemaker as their backend. It looks like these two apps are sold as web apps. At any rate I had not heard of Filemaker in about ten years, so it was surprising to see it pop up twice in the same sitting. I think it started out as a Mac platform db system. I am more partial to SQL Server, MY SQL, etc, but before make any comments on Filemaker, I'd like to know some of the pros and cons of the system. It must be more than Access for Mac

Grouping flat xml using xslt (muenchian grouping), can't get it to group

…衆ロ難τιáo~ 提交于 2019-12-02 14:54:46
问题 I spent quite some time trying to get muenchian grouping of the below xml to work but I can't get it to work. I tried a number of different ways so posting the most recent attempt probably just confuses anyone trying to help me. :-) Xslt needs to be 1.0 Input file is invoice lines where "invoice header info" is duplicated for each line belonging to a particular invoice. Grouping should be made in field _id, i e value in RESULTSET/ROW"/COL[12]/DATA (e. g. 'C82F1B47-9758-4D18-ABD7-80386385F6AD'

SQL-92 (Filemaker): How can I UPDATE a list of sequential numbers?

 ̄綄美尐妖づ 提交于 2019-12-02 10:51:33
I need to re-assign all SortID's, starting from 1 until MAX (SortID) from a subset of records of table Beleg, using SQL-92, after one of the SortID's has changed (for example from 444 to 444.1). I have tried several ways (for example SET @a:=0; UPDATE table SET field=@a:=@a+1 WHERE whatever='whatever' ORDER BY field2), but it didn't work, as these solutions all need a special kind of SQL, like SQLServer or Oracle, etc. The SQL that I use is SQL-92, implemented in FileMaker (INSERT and UPDATE are available, though, but nothing fancy). Thanks for any hint! Gary From what I know, SQL-92 is a