-
Search
Categories
-
Linux, PHP, LAMP, The Web in a blog- Android – how to develop directly on a phone
- Android drawable default icons – they are free to use
- Android how to read and write files
- Uncompress on the fly when copying a file from a remove location with scp
- Setting up an encrypted volume on an external hard drive on CentOS
- Linux bash – tar tricks
- Implement Selenium tests
- Using a downloaded package without IDE in Java
- CSS selectors optimisation
- Ubuntu Linux on Acer Aspire AO751h
Tag Cloud
alarm array backup begin button character commercial constants coppermine CSV DVD eclipse ecommerce email email server expect firefox font foreach formatting fstab ftp GMail gnome keyboard Lucene marketing memcached mount plugin profiling protect regexp scp Selenium SEO sftp split svn tar utf utf8 Vbulletin Virtual Server Web Dev Security
Category Archives: Symfony
Symfony Troubleshooting – Form Class Not Found
Troubleshooting: When attempting to create a backend module with the Propel utility: XXXXXXXForm class not found Solution [possibly you need to delete the files in lib/model/om, or maybe even the whole lib/model directory] symfony cc symfony propel:build-forms symfony cc
Posted in Symfony
Leave a comment
Symfony – Propel – Using A Prefix For The Tables But Not For The Classes
What we want is to have a prefix for the database tables (for example, blog_) but not for the classes generated by Propel. That is, we want Post and not BlogPost as the name for the class. We can achieve … Continue reading
Posted in Symfony
Leave a comment
Symfony – Difference Between a Live and a Non-live Environment
What makes an environment a live one or not is the frontend. In particular the third param of the method: ProjectConfiguration::getApplicationConfiguration If we are in a live environment, instead of displaying the full execution stack and an explicit error message, … Continue reading
Posted in Symfony
Leave a comment
Symfony – Enable the Compatibility with the Version 1.0 – Good for forms Generation
This solves errors like: Fatal error: Call to undefined function form_tag() Fatal error: Call to undefined function input_tag() File apps/your_application/config/settings.yml Set: compat_10: on (be careful with the indentation!)
Posted in Symfony
Leave a comment
