Difference between revisions of "Cfwheels"

From Hostek.com Wiki
Jump to: navigation, search
(Created page with "__FORCETOC__ ==Installing CFWheels on ColdFusion / Railo== <ol> <li>Download the latest version from http://cfwheels.org/download</li> <li>Unzip the contents to a folder on yo...")
 
m (Installing CFWheels on ColdFusion / Railo)
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
<li>Download the latest version from http://cfwheels.org/download</li>
 
<li>Download the latest version from http://cfwheels.org/download</li>
 
<li>Unzip the contents to a folder on your computer</li>
 
<li>Unzip the contents to a folder on your computer</li>
<li>Remove the "web.config" and "IsapiRewrite4.ini" files.</li>
+
<li>'''Remove''' the ''web.config'' and ''IsapiRewrite4.ini'' files.</li>
 
<li>Edit the '''.htaccess''' with any plain text editor ''(I.E. notepad, wordpad, etc.)'' and replace the contents with the following:
 
<li>Edit the '''.htaccess''' with any plain text editor ''(I.E. notepad, wordpad, etc.)'' and replace the contents with the following:
 
<syntaxhighlight lang="apache">
 
<syntaxhighlight lang="apache">
 
RewriteEngine On
 
RewriteEngine On
  
RewriteCond %{REQUEST_URI} !^.*/(flex2gateway|jrunscripts|cfide|cfformgateway|CFFileServlet|railo-context|files|images|javascripts|miscellaneous|stylesheets|robots.txt|sitemap.xml|rewrite.cfm)($|/.*$) [NC]
+
RewriteCond %{REQUEST_URI} !^.*/(flex2gateway|jrunscripts|cfide|cfformgateway|CFFileServlet|jakarta|railo-context|lucee|files|images|javascripts|miscellaneous|stylesheets|robots.txt|sitemap.xml|rewrite.cfm)($|/.*$) [NC]
 
RewriteRule ^(.*)$ /rewrite.cfm/$1 [L]
 
RewriteRule ^(.*)$ /rewrite.cfm/$1 [L]
 
</syntaxhighlight></li>
 
</syntaxhighlight></li>
Line 30: Line 30:
 
</ol>
 
</ol>
 
Browse to your site, and you should see the default CFWheels home page.
 
Browse to your site, and you should see the default CFWheels home page.
 +
 +
[[Category:ColdFusion]]
 +
[[Category:Railo]]
 +
[[Category:ColdFusion-VPS]]
 +
[[Category:Railo-VPS]]

Latest revision as of 18:12, 11 February 2015

Installing CFWheels on ColdFusion / Railo

  1. Download the latest version from http://cfwheels.org/download
  2. Unzip the contents to a folder on your computer
  3. Remove the web.config and IsapiRewrite4.ini files.
  4. Edit the .htaccess with any plain text editor (I.E. notepad, wordpad, etc.) and replace the contents with the following:
    RewriteEngine On
     
    RewriteCond %{REQUEST_URI} !^.*/(flex2gateway|jrunscripts|cfide|cfformgateway|CFFileServlet|jakarta|railo-context|lucee|files|images|javascripts|miscellaneous|stylesheets|robots.txt|sitemap.xml|rewrite.cfm)($|/.*$) [NC]
    RewriteRule ^(.*)$ /rewrite.cfm/$1 [L]
  5. Setup a MySQL database and create a ColdFusion / Railo DSN for the database. Below are some tutorials on how to do this through your control panel:
  6. Edit the config/settings.cfm file in a plain text editor and enter your datasource name and your database username and password. Also, remove the comments around that section:
    Example:
    <cfset set(dataSourceName="MyDSNName")>
    <cfset set(dataSourceUserName="MyDatabaseUsername")>
    <cfset set(dataSourcePassword="MyDatabasePassword")>
  7. Upload the files to your site. They must be inside the /wwwroot (Windows) or /public_html (cPanel/Linux) folder for URL rewriting to work properly.

Browse to your site, and you should see the default CFWheels home page.