How to login phpbb by drupal 7 site?
Drupal is providing phpbb_sso module for drupal 7. Install this module and configure your phpbb setting on drupal admin side. http://www.YOURSITE.COM/admin/config/system/phpbb_sso You will need to set phpbb database name phpbb table prefix and phpbb path (where you installed phpbb).
how to move drupal site old server to new server?
Hi Friends, Follows below steps: First create disable the clean url and clear all cache from admin side or (From the database which table has “cache_” prefix truncate all tables). Second disable clean url from admin side. Third Export the
How to enable clean url in drupal?
Just enable mod_rewrite module in your server. check your site with this url. /admin/config/search/clean-urls enable clean url checkbox. after the enable this checkbox. and if it will given test checking error. then check following file /etc/apache2/sites-available/default.txt <Directory /var/www/> Options Indexes
How to create user in drupal 6 by Programmatically?
$fields = array( ‘name’ => strtolower($user_name), ‘mail’ => $email, ‘pass’ => $pass, ‘status’ => 1, ‘roles’ => array(2=>’registred user’), ); $account = user_save(”, $fields);
How to remove not verified string from user comment?
write this function on you theme’s template.php file. function mytheme_username($object) { if ($object->uid && $object->name) { if (drupal_strlen($object->name) > 20) { $name = drupal_substr($object->name, 0, 15) .’…’; } else { $name = $object->name; } if (user_access(‘access user profiles’)) { $output