Posts Tagged “framework”

Acies 

Acies Latin: a sharp edge or point; mental acuity, sharpness of vision

A fitting name I thought for my new project, rather a name of a framework (yes I actually intend to finish this one!), initially the framework will comprise of code I have written over the years (brought in-line with PHP5).

More details will appear @ http://acies.saiweb.co.uk as I complete the modules.

There are several projects lined up awaiting completion of Acies, once in place I should be able to turn these around quite rapidly.

More Soon

Tags: , , ,

Comments No Comments »

If like me you have a PHP framework, that runs multiple sites, you no doubt have thought at some point in time …

 ”Hey I realy could do with this re-write rule on that site, but I don’t want it applying to all sites running on the same framework”

Well fear not, after much head scratching, AccessFileName directive to the rescue! i.e.

 Using the above method you can specify bespoke htaccess files on a per VirtualHost basis.

1
2
3
4
5
6
7
<VirtualHost xxx.xxx.xxx.xxx:80>
        DocumentRoot /path/to/framework
        ServerName buzz.saiweb.co.uk
        <strong>AccessFileName .buzz_htaccess</strong>
        CustomLog logs/buzz_access_log combined
        ErrorLog logs/buzz_error_log
&lt;/VirtualHost&gt;

 Enjoy!

Tags: , , , , ,

Comments No Comments »