Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been struggling with this issue for the past 2 days. I've finally decided to post my question here. I am trying to run a PHP script on my Apache tomcat, but I am not able to do that.

I have tried a number of tutorials:

But it gives me error of "can't load ia 32-bit .dll on a amd 64-bit platform tomcat"..I tried to solve this but no luck becuase the PECL binary file is not for 64-bit system and for the other tutorial which uses javabridge.jar, I am getting error "java.lang.UnsatisfiedLinkError: no php5srvlt in java.library.path".

share|improve this question
1  
"Nothing seems to be working" is probably a bit too generic (read: vague) to get any useful answer. – user2428118 Nov 20 '12 at 16:51
OKhey...My bad...I am trying 2 approach to install PHP..one using PECL module mentioned in the tutorial lin kabove..But it gives me error of "can't load ia 32-bit .dll on a amd 64-bit platform tomcat"..I tried to solve this but no luck becuase the PECL binary file is not for 64-bit system and for the other tutorial which uses javabridge.jar, I am getting error "java.lang.UnsatisfiedLinkError: no php5srvlt in java.library.path" – Shikha Shah Nov 20 '12 at 16:55
I dont understand why ppl downvoted before answering to the problem or they only know how to downvote someone's question – Shikha Shah Nov 20 '12 at 17:14

1 Answer

Tomcat provide two versions for 'tcnative-1.dll' file. By default is uses 32 bit. If you working on 64 bit machine, then you should copy the 64 bit version of 'tcnative-1.dll' into /bin/ directory. You can find this file at location \bin\x64

share|improve this answer
I read this solution before but I couldnt fine that location \bin\x64...where exactly it is? – Shikha Shah Nov 20 '12 at 21:42
do you have a 64 bit JRE? – Drew Pierce Nov 20 '12 at 21:45
Yes I do have JRE 64-bit – Shikha Shah Nov 20 '12 at 21:49
i downloaded the file apache-tomcat-6.0.36. ran it. pointed to my jre7 directory, and then localhost:8080/manager/status shows os architecture as amd64 – Drew Pierce Nov 20 '12 at 21:54
I understand what u r trying to say..wats the next step then? – Shikha Shah Nov 20 '12 at 21:59
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.