• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Coldfusion MX 7 problem

A

arthurpro

Guest
I'm using Plesk 7.5.4 on Fedora Core 3. Recently I've installed Coldfusion MX 7. Everything seems to be ok. I can enter CF cp via http://<host>:8500/CFIDE/administrator/. Also I made Coldfusion installation in Plesk (Server > ColdFusion Settings).
Apache log file has lines like the following:
[Mon Nov 14 16:42:01 2005] [notice] jrApache[init] JRun 4.0 (Build 92909) Apache 2 module - Feb 18 2005 12:02:54
Virtual host is configured correctly.

BUT... any cfml file I'm trying to run is returned in plain text.
What's wrong? I cannot figure it out for three days. Maybe somebody had the same problem? Everything was set correctly but cfml files are not processed with Coldfusion on Apache.

Please help!
 
Hey man, dont panic..I am running CF 6.1 and its all working perfectly.

Have you tried adding a vhost.conf?
Do you have any errors starting CF, what does apache say when you try to view the cfml page
 
I have PSA 7.1 with CF 6.1 on another box and it works great.
Another box has PSA 7.5 with CF 7. Everything configured as should be. Both apache and CF log files are good, nothing fails to start. But any cfml page I'm trying to load is returned unprocessed in plain text with CF tags as is. Looks like CF server does not touch it at all.
I'm already mad about it.
Need help!!!
 
Ok for shits & giggles why not copy the CFIDE dir into the domain you have CF enabled and try a cf function. What happens then?
 
The cfml files are downloading unprocessed as if there's no coldfusion server at all.
Built-in coldfusion web server on port 8500 works fine. I can enter Coldfusion admin page.
 
mappings are set
coldfusion should work correctly with default settings
 
ok what if you create a page with a CF function requiring CF to make some decession..then it should spit out an error at least
 
Look at my code, it is being returned in plain text
Code:
<cfset a=1>
<cfoutput>
test #a#
</cfoutput>
 
oohh boy..cant think of much else at the moment...

Is the CF module loaded into Apache conf...
 
Sure CF module is loaded. Read my first message. There's a line from apache log file.
 
During the coldfusion setup, did you specify that the coldfusion process use the username "apache" ? And then did you go into PLESK -> Server -> Coldfusion button and set the proper location to the cfmx install directory?

Also, did you specify in plesk that the vhosts which has /CFIDE installed to have coldfusion support and then restart httpd?
 
oohh yeah DOOHH good point Traged1.

Also for another test, change the variable 1 to k and CF will spit out an error
 
Coldfusion user is apache and I did set the proper location to the cfmx install directory.
Every setting in apache configuration, every log file are checked at least 3 times.
I'm not a dummy in server administration and know how to tweak different services
BUT
this is the first problem in the last 4 years that I can't solve quickly. I'm really stuck.
 
no result
I told that coldfusion server does not touch the code at all
 
What are the results of the following?

# service coldfusionmx7 status

# grep mod_jrun20.c /home/httpd/vhosts/CFIDE-domain.com/conf/httpd.include

# ls -la /opt/coldfusionmx7/runtime/lib/wsconfig/

# ls -la /opt/coldfusionmx7/runtime/lib/wsconfig/psa/
 
Here's what I got
Code:
service coldfusionmx7 status
Exception in thread "main" java.lang.NoClassDefFoundError: coldfusion/tools/CfstatMain

grep mod_jrun20.c /var/www/vhosts/cftest.com/conf/httpd.include
        <IfModule mod_jrun20.c>

ls -la /opt/coldfusionmx7/runtime/lib/wsconfig/
total 12
drwxr-xr-x  3 apache apache 4096 Nov 14 15:45 .
drwxrwxr-x  4 apache apache 4096 Nov 14 16:41 ..
drwxr-xr-x  2 apache apache 4096 Nov 14 15:45 psa

ls -la /opt/coldfusionmx7/runtime/lib/wsconfig/psa/
total 88
drwxr-xr-x  2 apache apache  4096 Nov 14 15:45 .
drwxr-xr-x  3 apache apache  4096 Nov 14 15:45 ..
-rw-r--r--  1 apache apache    13 Nov 15 09:44 jrunserver.store
-rw-r--r--  1 apache apache 72615 Nov 14 15:45 mod_jrun20.so
 
well at least you now have an error. i googled it and that its a known issue...sorry
 
Back
Top