Saturday, December 17, 2011

How to remove Remove Joomla SEO powered by JoomSEF

1. Go to /components/com_sef/
2. Find file joomsef.php
3. Find the word $cacheBuf2
4. Remove the content inbetween the


That's it , you are free from the links.....

Sunday, July 31, 2011

Converting .zip file to .war file

You can change the name of the file from .zip to .war using command prompt.

1.Go to the file location

2. Use this command. Ren file.zip file.war

That's it . Happy coding.

Wednesday, June 22, 2011

Your PHP settings limit the maximum file size per upload to 16 MB. Depending on your server environment -- Drupal upload error

I have changed the upload_max_filesize = 800M and also post_max_size = 800M . I am still getting the same error. I have also restarted the apache.

Then I added the following code snipet in .htaccess file of my drupal root directory.
  • php_value upload_max_filesize 800M
  • php_value post_max_size 800M
It worked.

Now I am able to upload upto 800 MB of files.

Tuesday, June 21, 2011

user warning: Data too long for column 'timezone' at row 1 query error in Drupal

I am trying to resolve this error.

I commented this line in my my.ini of Mysql.

# sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

Now its working fine.