Trac
I have set-up Trac at trac.spensierato.net you can use your svn user names and passwords to login.
Please feel free to start uploading data, bug reports etc.
I have set-up Trac at trac.spensierato.net you can use your svn user names and passwords to login.
Please feel free to start uploading data, bug reports etc.
Finally got a few hours to play with my V8, surprisingly after pouring in some oil and spining the oil pump, just bolting on the starter, sprayed some petrol down the carb and in less than 1 crank is started!
Now just to clean it, strip it, megasquirt it at this rate should have it done by 2030
I have developed a PHP caching class, it currently uses memcached and supports fallback to session stores, other systems to come.
It’s very simple to use, include and use persistantcache::singleton()->save($name, $data, ‘optional max time in secconds’); and persistantcache::singleton()->get($name); to retrive your data.
PHP Persistent Cache V2 or view the latest in my SVN at http://svn.fryer.org.uk/websvn/filedetails.php?repname=cms&path=%2Ftrunk%2Fcms%2Finc%2Fclasses%2Fpersistantcache.inc
I found an excellent script written by Vadim Tkachenko (Included), which is based on Andy Khan’s work.
I have written a quick class to access it and return the contents of the of the file, including all of the worksheets as XML.
See the example.php file it should explain it all quite well, all of my code in this s public domain.
Download Excel to XML in PHP
We I got around to outlining the release goals for Spensierato
You can find the upto date roadmap at http://spensierato.fryer.org.uk/21 but for the lazy:
The current roadmap to Alpha 1 is to:
Alpha 2:
Alpha 3:
Alpha 4:
There should be a working installer now, let me know if you have any problems.
Now also includes an alternative CSS although it contains many bugs it sets an example framework to start from.
Update:
Bug fixes release Pre Release 5.1
Download it from the Demo and Download page
Roadmap to Alpha 1 on its way.
I have updated the location of the SVN and added Spensierato to Ohloh the svn is now at http://svn.fryer.org.uk/cms/
Now with working page security, yay.
Minor updates to the skin, more bug fixes, outline of install script and new fancy favicon!
See the downloads page for more
Been a while since I updated this so here is a short list of recent work
I was recently asked how I got ClamAV to tag my emails with its version information, which is also useful to check if your emails were scanned as if ClamAV was re-starting when an email goes through then they will not be scanned.
By editing my exim config with the following ACL
—————————————————-
# Deny if the message contains malware. Before enabling this check, you
# must install a virus scanner and set the av_scanner option in the
# main configuration.
#
# exim4-daemon-heavy must be used for this section to work.
#
deny
malware = *
message = This message was detected as possible malware ($malware_name).
# Add ClamAV scanned header
warn
message = X-Virus-Scanned: (${readsocket{/var/run/clamav/clamd.ctl}{VERSION}{2s}{}{AV Not running}})
—————————————————-
If ClamAV was not running the email is tagged with X-Virus-Scanned: AV Not running
Hope this helps