fatal error: imap_header() address buffer overflow

0

Posted by nick | Posted in Development | Posted on Aug 18 2010

Tags:

Today many of our imap mailboxes returned this error when checking email “fatal error: imap_header() address buffer overflow”. The problem was these mailboxes received an email that had 500+ recipients in the “To” field. We deleted this email from the mailboxes and the error went away. If you have this problem, I also suggest blocking the person, or better, find a setting to block message such as these on your mail server.

  • Share/Bookmark

Firefox broken image placeholders windows 7

0

Posted by nick | Posted in Development | Posted on Aug 04 2010

Tags:

I tested our site in IE today and found that IE has one useful feature; broken image placeholders. There were a few broken images that I did not notice while using Firefox because Firefox just displays the alt text. The best way to do it is as described here
http://gavtaylor.co.uk/blog/enable-broken-image-placeholders-in-firefox and

http://onlinemoneymaking.ws/blog/show-dead-image-placeholder-in-firefox/
. Their examples help you find the file with older versions of Windows. If you’re on Windows 7 like me, the userContent.css file will go here -
C:\Users\%yourUsername%\AppData\Roaming\Mozilla\Firefox\Profiles\x3qch3l0.default\chrome

Rename ‘UserContent-example.css’ to ‘UserContent.css’, this will then be loaded by Firefox when it fires up.

Add the following CSS to the file and restart Firefox..

/* Enable image placeholders */
@-moz-document url-prefix(http), url-prefix(file) {
	img:-moz-broken {
		-moz-force-broken-image-icon:1;
		width:24px;
		height:24px;
	}
}
  • Share/Bookmark

Zend Unknown record property / related component Error

0

Posted by nick | Posted in PHP | Posted on Jul 17 2010

Tags:

I’ve had this troublesome error pop up twice now and the problem is not what you think. I’m working with Zend Framework and in one of my controllers I created the variable “private $_request” and with Zend Studio 7.2, I added this property to my “expressions” view to I could monitor its value. After a while I decided to no longer use that property and removed it from my code, but it was still being monitored in the expressions view of Zend Studio. That’s when the “Unknown record property / related component “$_request” on objectName” errors started. It’s not a coding error of any sort; it’s a software issue that somehow looks like a coding issue. I am using Zend Server and their debugger, so the connections between each software may be causing problems.

  • Share/Bookmark

Zend Studio php_pdo_mysql.dll error

0

Posted by nick | Posted in Development, PHP, PHPUnit, Zend Studio | Posted on Jun 29 2010

Tags: ,

I started using phpunit, which is built into Zend Studio 7.2. Everything works fine until it encountered a database query that used PDO. The test case will timeout and zend studio will give you the error “Test case was unexpectedly terminated”. It took a lot of digging to find the real error in the windows event viewer:

Faulting application name: php-cgi.exe, version: 5.2.10.10, time stamp: 0×4abb41d8
Faulting module name: php_pdo_mysql.dll, version: 5.2.10.10, time stamp: 0×4ab23077
Exception code: 0xc0000005
Fault offset: 0×00002580
Faulting process id: 0×458
Faulting application start time: 0×01cb16fb91818916
Faulting application path: C:\Program Files (x86)\Zend\Zend Studio - 7.1.0\plugins\org.zend.php.debug.debugger.win32.x86_5.3.7.v20091116\resources\php5\php-cgi.exe
Faulting module path: C:\Program Files (x86)\Zend\Zend Studio - 7.1.0\plugins\org.zend.php.debug.debugger.win32.x86_5.3.7.v20091116\resources\php5\ext\php_pdo_mysql.dll
Report Id: d31816ab-82ee-11df-99ae-00241dd93279

The solution? While I had Zend Server installed and using PHP 5.3, Zend Studio’s internal version was using PHP 5.2.xxx. I’m pretty certain Doctrine, which uses PDO, requires PHP 5.3. I changed Zend Studio to PHP 5.3 and it worked. In Zend Studio, go to Window->preferences->php->debug and ensure the “PHP executable” is set to PHP 5.3. FYI - My “server” on this screen is set to “Local Zend Server”. Hope this helps!

  • Share/Bookmark

Zend Studio select the local resource that matches the following server path

0

Posted by nick | Posted in Development | Posted on Jun 28 2010

Tags:

If while debugging with Zend Studio for Eclipse you get the error “select the local resource that matches the following server path” there are two possible solutions.

First, the easy one. If you opened the file from the explorer windows and not through Eclipse, the file is not open in the project so it doesn’t know where the other resources are. The open declaration ability will not work either.

IF that didn’t work, try this next change. If you have external libraries that are used in your application, first add the library to the build path of your project. Then, if you get the pop error while debugging: “select the local resource that matches the following server path” and “get content from the server for the following path”, you must map the paths as explained below.

Adding a Server Location Path Map

This procedure describes how to add a Path Map to a server so that files which are called from a certain location on the server will be searched for in a local location during remote PHP Script debbuging/profiling and PHP Web Page debugging /profiling. This will only apply when the ‘use local copy’ option is selected in the Advanced tab of the PHP Web Page debugging configuration) .

To add a Path Map to a server:

  1. Open the PHP Servers Preferences Page by going to Window | Preferences on the Menu Bar and selecting PHP | PHP Servers from the Preferences list.
  2. Select the server on which you would like to create the Path Map and click Edit.
  3. In the Edit Server dialog, select the Path Mapping tab.
  4. Click Add.
  5. An Add new Path Mapping dialog appears.
  6. Enter the Server Path from which you would like to create the Path Map. Files called from this location will be searched for in the path specified below.
  7. Select either the ‘Path in Workspace’ or ‘Path in File System’ option and click Browse to specify the location.

path_mapping_edit.png

Your
Path Map will be added to your server list.

path_mapping_dialog.png

Path
Mapping Settings

The next time a file is called from the Path on Server, it will
be searched for in the local location you have specified.

  • Share/Bookmark