Full error message: SoftException in Application.cpp:544: Directory “/path/to/directory” is writeable by group The error apeared in cpanel logs at a hosting company and was related to a directory I created via ftp and where I tried to run some php script. When accessing the script from the web browser i got the error “500 Internal [...]

I tried moving all my databases from MySQL 4.1 to MySQL 5.1 on Windows and since I had some InnoDB tables I could not just copy the data files between MySQL Server versions (from C:\Documents and Settings\All Users\Application Data\MySQL\MySQL 4.1\data\ to  C:\Documents and Settings\All Users\Application Data\MySQL\MySQL 5.1\data\). So, after I exported the data from the [...]

I could not receive a failure notice when sending email to an email address that does not exist ($to_address), using this code: $subject = “Email subject”; $message = “line1\r\nline2\r\nline3″; $headers = “MIME-Version: 1.0\r\n”; $headers .= “Content-type: text/plain; charset=iso-8859-1\r\n”; $headers .= “To: <$to_email>\r\n”; $headers .= “From: Me <$my_email_address>\r\n”; $headers .= “Return-Path: <$my_return_email_address>r\n”; mail($to_email, $subject, $message, $headers); [...]

Full error message: Error loading stylesheet: An XSLT stylesheet does not have an XML mimetype: Error occured on Firefox 2.0 when working with XML, XSLT. xml file: <?xml version=”1.0″ encoding=”utf-8″ ?> <?xml-stylesheet type=”text/xsl” href=”product-list.xslt”?> <f>PRODUCT DETAILS</f> xslt file <?xml version=”1.0″ encoding=”UTF-8″ ?> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <stylesheet version=”1.0″ xmlns=”http://www.w3.org/1999/XSL/Transform”> <template match=”/”> [...]