Monday, September 20, 2010

Important Modules

Custom (Form) destination

http://drupal.org/project/customdestination

Friday, July 2, 2010

Best Video Tutorial For Drupal Beginners

Video1:




Video2:




Video3:




Video4:




Video5:




Video6:





Video7:





Video8:




Video9:






Video10:




Video11:




Video12:




Video13:




Video14:




Video15:





Video16:



Video17:



Video18:












Wednesday, June 30, 2010

Installing Drupal On Windows

step1: First Download WAMPP server and install

step2: Download the latest version of Drupal.

step3:follow this video





Problems while installation

Error1:#1045 - Access denied for user 'root'@'localhost' (using password: NO)

(This error while accessing http://localhost/phpmyadmin)

Solution: Go to

\wamp\apps\phpmyadmin3.2.0.1\config.inc.php

edit the file with the password:

$cfg['Servers'][$i]['password'] = ''; to

$cfg['Servers'][$i]['password'] = 'root';

because mysql password is root.

Error2: Deprecated: Function ereg() is deprecated in \wamp\www\drupal6\includes\file.inc

Solution: Go to wamp\www\drupal\includes\file.inc

change ereg in line to mb_ereg to make the line transform into :

i.e,. elseif ($depth >= $min_depth && ereg($mask, $file))

to elseif ($depth >= $min_depth && mb_ereg($mask, $file))

That message appear because if we use latest wamp software that utilize php 5.3.0 where ereg() function is deprecated.

best solution for this case is to Downgrade wamp to previous version or else made above changes.



Error3:Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 16 bytes) in C:\wamp\www\includes\cache.inc on line 33


add this code in .htaccess


#
# Apache/PHP/Drupal settings:
#
 php_value memory_limit 96M