Disable Layout and View Zend Often when actions are used in controllers that do some work but do not actually show the user anything, we need to disable layout and view Zend. This is helpful specifically with the use in Ajax (Aynchronous communication with the server). Disable Layout $this->_helper->layout()->disableLayout(); Disbale View $this->_helper->viewRenderer->setNoRender();
Check if running 32 or 64 bit linux
Tutorial on how to check if you are running 64 bit or 32 bit on Linux: uname –m i686 means 32 bit x86_64 means 64 bit
Tutorial on how to Export to a Quoted CSV This guide is tailored towards Microsoft Office 2007, but with a little intuition it should work on the other distributions. 1. If the developer tab is not shown at the top Click File Options Customize Ribbon Select the Developer checkbox 2. On Developer tab, Code Group, Click […]
To Copy a single table in a Schema into another existing Schema CREATE TABLE myschema.mytbl LIKE myschema2.mytbl; INSERT INTO myschema.mytbl SELECT * FROM myschema2.mytbl; To Copy all the tables in a Schema into another existing Schema In cmd/terminal, dump the database mysqldump -u root -ppass myschema > /path/to/myschema.sql In cmd/terminal, use the new database […]
A list of the 12 scariest stadiums in world football. The main factors: loudness of fans violence of fans flare usage imagery (synchronisation) reputation Picks are subjective and based on Champions League, Europa League games and a few youtube videos. If you have a problem and think there needs to be additions please let me […]