New master#2
New master#2notsoluckycharm wants to merge 1 commit intowheels-dev:new-masterfrom notsoluckycharm:new-master
Conversation
… folders within the web root that do not directly related to the CFWheels structure. Within the documentation it states that to create a folder that is not part of CFWheels, simply add a blank application.cfc and it should work when you request site.com/folder ... this is not the case when using stock .htaccess because it will attempt to rewrite that /folder as rewrite.cfm/folder ... In order to stop this from happening, I added the Rewrite Cond to not rewrite if the folder exists physically in the directory. I also added a second line to stop rewrite from happening when the file name exists. These two lines are below the first rewrite condition, so that if you request site.com/scheduledTasks/doSchedule1.cfm ... it should work.
|
for some reason your pull request is replacing the entire file instead of adding the additional two lines. |
|
I apologize, It's my first time on GitHub -- and I've wanted to contribute to CFWheels. How can I correct this ? And if it's of any note: my entire file is the previous file plus my two lines. |
|
you don't need to apologize, i really appreciate that you're taking the time to help wheels out. what probably is happening is that you have your autocrlf settings off for the repo. it happens to everyone and i've done it myself a bunch of time. i already responded and left instructions on how to change it in my google group reply to you: http://groups.google.com/group/cfwheels/browse_thread/thread/55e708c300573a19 sorry i didn't include these instructions in my original pull comment. |
Update tutorial-cfwheels-ajax-and-you.md
…gaps Documents the 8 highest-priority features identified in the framework comparison analysis, each with full justification, specifications, API designs, and implementation details: 1. Authentication & Authorization Generator (Priority #1) 2. File Storage Abstraction Layer (Priority #2) 3. Multi-Channel Notification System (Priority #3) 4. Model Factories for Testing (Priority #4) 5. Interactive Console / REPL (Priority #5) 6. Authorization System with Policies (Priority #6) 7. Health Check Endpoints (Priority #7) 8. Observability Dashboard (Priority #8) Includes create-all-issues.sh script to batch-create all issues via gh CLI. https://claude.ai/code/session_01HNb3D4MyqbYJ1Pyy2Ya828
This is my first contribution to CFWheels, so if this doesn't go exactly as planned, please forgive me and notify me so I can make any corrections.
I have modified .htaccess to comply with the tutorial and via this post on the google group.
http://groups.google.com/group/cfwheels/browse_thread/thread/675e11e84788b285
It basically allows folders within the web root to be accessed as long as they exist without needing a rewrite rule and .htaccess to disable rewriting.