« Previous Page — « Previous Entries | Next Entries » — Next Page »
At the weekend I held a presentation at FrOSCon 2009 about the project management perspective on Django. As agreed with the folks attending I attach here the presentation itself. Django – lessons learned from a project management perspective As a conclusion in the work shop we agreed, that Django is in Germany not very well [...]
Monday, August 24th, 2009 | Posted in Django, PHP | 1 Comment »
For using Sphinx with Symfony you got to do the following steps: 1.) Install your Symfony app as well as the Sphinx daemon 2.) Configure your Sphinx with proper indizes and start the daemon 3.) create a mySphinxSearch.class.php in your /lib directory 4.) save the PHP sphinx api providey by Sphinx in your /lib directory [...]
Wednesday, August 13th, 2008 | Posted in PHP, Symfony | No Comments »
Yesterday, I tried a hint from Seb for reanimating the old yoosic system by accessing the db directly from Django. The problem was that it is an MyISAM-MySQL-System which is not really cool for the Django way of coding. The hint from Sebastian was trying the legacy database access provided by django, which enables you [...]
Monday, April 7th, 2008 | Posted in Django | No Comments »
just repaired some minor issues this morning on yoosic.com. And in the next days I will be inserting a new flash player for replacing our current mp3-stream solution. Furthermore I’m thinking about a way, where I can use Django or Symfony to start replacing functions in our current nasty-code-wasted yoosic-app while accessing the current yoosic [...]
Saturday, March 29th, 2008 | Posted in Django, Symfony | 4 Comments »
Just ran into errors with Lighttpd 1.5, PostgreSQL, Django (trunk) Admin and using memcached for accellerating the page. The 500er error I got when accessing /admin looked like: File “/usr/lib/python2.4/site-packages/django/core/cache/__init__.py”, line 60, in get_cache cache_class = getattr(__import__(‘django.core.cache.backends.%s’ % BACKENDS[scheme], {}, {}, ['']), ‘CacheClass’) File “/srv/www/www.tschitschereengreen.com/tts/django/core/cache/backends/memcached.py”, line 12, in ? raise InvalidCacheBackendError(“Memcached cache backend requires either [...]
Saturday, March 29th, 2008 | Posted in Django | 2 Comments »
After trying several tools for making the translation of a symfony project convenient for our customer, I found the following best practice: 1. Install Heartsome XLIFF Translator 2. Modify language codes (Options->Language Codes). e.g. from de-De to de_De and en-GB to en_GB by replacing the dash by a underscore. 3. Open the xml-file with the [...]
Wednesday, March 26th, 2008 | Posted in Symfony | 1 Comment »
finally just solved big problems I had with symfony – to get it running on lighttpd 1.5 with fcgi-sockets. The resulting lighttpd settings are a pure pain in the … – If you have a better solution for this, let me know. I’m pretty unhappy with these kind of hacks… $HTTP["host"] == “###TypeYourUrlHere###” { var.site-root [...]
Monday, March 24th, 2008 | Posted in AJAX, Symfony | No Comments »
after hours of trying, here the final config data for my WordPress/Lighttpd dualism: lighttpd.conf: $HTTP["url"] =~ “\.php$” { proxy-core.balancer = “round-robin” proxy-core.allow-x-sendfile = “enable” proxy-core.protocol = “fastcgi” proxy-core.backends = ( “unix:/tmp/php-fastcgi.sock” ) proxy-core.max-pool-size = 16 } 20-tschitschereengreen.conf # WordPress Blog $HTTP["url"] =~ “^/blog” { proxy-core.rewrite-request = ( “_pathinfo” => ( “^/blog(/.*)” => “$1″ ), “_scriptname” [...]
Saturday, March 22nd, 2008 | Posted in PHP | 2 Comments »
Thanks to Arthur: this site was moved from Symfony to Django, from Apache2 to Lighttpd1.5, from MySQL to PostgreSQL within the last Friday. Arthur prepared the Django installation. The data transformation and server configuration was done by Arthur and myself für Sebs support. The result: with using memcached the page load time went down from [...]
Saturday, March 22nd, 2008 | Posted in Django, Symfony | No Comments »
After searching for a while to get the Propel DBAL running. in propel.ini insert the following propel.database.creole.url = mysql://USER:PASS@localhost/DATABASE propel.database.url = mysql://USER:PASS@localhost/DATABASE propel.builder.peer.class = plugins.sfPropel13Plugin.lib.propel.builder.SfPeerBuilder propel.builder.object.class = plugins.sfPropel13Plugin.lib.propel.builder.SfObjectBuilder
Wednesday, December 5th, 2007 | Posted in Symfony | No Comments »