Monday, September 10, 2012


JFolder::create: Could not create directory

  1. Goto your Hosting panel >> File Manager >> Select your Domain/Sub-Domain and then open the configuration.php file.
  2. Find var $log_path, it will contain the Directory path of your Old Server. Just replace the whole line with the code var $log_path = './logs';
  3. Find var $tmp_path, it will also have the Directory path of your Old Server. Replace the whole line with the code var $tmp_path = './tmp';

Wednesday, August 22, 2012

BLUEHOST: WP_MAIL ISSUE


BLUEHOST: WP_MAIL ISSUE

The default mailing behavior for WordPress typically fails based on the fact that it does not provide an appropriate From: header, which is a strict requirement in our hosting. The simple and effective work around is to install the MailFrom WordPress plugin (http://wordpress.org/extend/plugins/mail-from/) which gives you simple control over the formatting of the From: header and allows you to set the mail as being sent from any user you wish rather than the default WordPress user which will often not exist in the cPanel email accounts, resulting in yet another point of failure for proper mail delivery in our hosting. I've yet to encounter anyone who has not been able to get WordPress sending mail with ease after having installed the MailFrom plugin.

Thursday, August 9, 2012

Disallowed Path Characters in IIS7


This error is often seen in classic ASP when the site is loaded for the first time,
 
Server.MapPath() error 'ASP 0175 : 80004005'
Disallowed Path Characters

To resolve this error

1) To see the real error, go to MMC and load the IIS Manager snap-in and go to your website. Double click on "ASP" in the Features View tab, drill down.

2) Expand the ' Behaviour'  section and set the value of ' Enable parent paths' to 'true'.


 
 

Friday, June 1, 2012

PHP CAPTCHA Not working in Ubuntu

PHP CAPTCHA Not working in Ubuntu PHP captcha blank in ubuntu can be solved by following ways.

 Solutions :
1. Check for GD library in phpinfo(). It must be as below The output of phpinfo(); ---------------------------------------------------------------------
GD Support enabled GD Version 2.0 or higher
FreeType Support enabled
FreeType Linkage with free type
 FreeType Version 2.3.5
T1Lib Support enabled
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled

 2. Make sure that the font is in the same dir, and it is readable and executable. The path to the file in the script might need to be changed to ./filename.ttf instead of filename.ttf.

Saturday, April 7, 2012

JQuery illegal characters

The Jquery illegal characters are caused by the quote marks incompatibility, The single quotes are to be converted into double quote and parsed. This sorts the problem.