There has been an error processing your request Exception printing is disabled by default for security reasons. Error log record number: 911585915504 A solution I found to this problem is by adding a php.ini file in the root of your magento installation, and adding the following code in it: memory_limit = 256M max_execution_time = 18000 [...]
Category Archives: Open Source for Web
Magento – There has been an error processing your request FIX
HTML5 Boilerplate looks interesting
It looks like a perfect startup theme. I will do my next HTML5/CSS site with it.
WordPress Basis Theme
I just discovered the WP Basis Theme. It’s a clean and very minimalistic theme. I will use it on my next project for sure.
Change JForms (0.7 RC2) email subject
It’s strange but JForms doesn’t have a field where you can put the subject of the email that goes to the administrator when a form is filled. They will implement it later for sure. However, if you want to change the subjects of the forms, you should hack the Mail.php code of JForms. Here is [...]
Changing header information in a Joomla Template
In some Joomla templates you can change the information in the <head> tags directly by going in the template and adding html code inside the <head> tags. However, some other templates have in the header this line of code: <jdoc:include type=”head” /> which includes the header information from some file. If you like to change [...]
PHPExcel and Joomla
When you try to include the PHPExcel library into a joomla article (using a plugin for inserting PHP code into an article), it doesn’t work. It displays a white screen. I found a solution for that. It maybe not the best way to fix this sinceĀ I’ve modified the Joomla core. Go to /libraries/loader.php and [...]
JF Twitter module problem fix
If you have experienced this error in your webpage: Fatal error: Cannot use object of type stdClass as array in /modules/mod_jf_twitter/helper.php on line 38 Then it is a problem of “JF Twitter” module. Do the following on /modules/mod_jf_twitter/helper.php/helper.php on line 38: Change this: if(!empty($this->tweets)) { $profile = $this->tweets[0]->user; } To this: if(count($this->tweets)>1 and !empty($this->tweets)) { [...]
UserCake User Management System
If you need a simple user management system in php go with UserCake. Don’t confuse it with CakePHP, it has nothing to do with it. I’ve used UserCake on a project, and it was very nice to use, so I recommend it. And the best thing is that it is open source.
Phpfreechat Albanian language
I just translated phpfreechat version 1.2 into the albanian language. Feel free to download and use. Installation: 1. DOWNLOAD the language file. 2. extract it into /i18n/ folder 3. in your chat file (suppose it is chat.php) add the following code in the beginning: $params['language'] = ‘sq_AL’; Enjoy!