Friday, September 6, 2013

How to Redirect using 301 Expired Job Nodes to another node in Drupal 7

Ok. I've a Drupal 7 base jobs website in which jobs come and go. To keep the in coming backlink juice for SEO purpose we should redirect 301 the expired jobs(or anything) to some page.

My urls are suffixed with Unix timestamp in the end so that I can recognize a deleted job url alias without looking anywhere else.

I've handled two things:

  1. Deleted jobs get redirected with 301 code
  2. Expired but not deleted jobs too get redirected the same way but are visible to logged in users. It is due to initially the url's did not have a Unix timestamp in the end. So we can simply delete those url's after 6-8 months after Google is sure of the 301 redirect.

Some Settings

Before you use it, do two settings. Firstly go to System->Site Information and key-in : "check-for-expired-job" in "Default 404 (not found) page".

Secondly create a basic page informing users that the vacancy they are trying to look for has been deleted. Give it a URL of job-vacancy-has-been-deleted . I give title: "The Job Vacancy Has been Deleted" so it picked up the url otherwise whatever url you've got don't forget to change it in the module below.

The Module Code

<?php

function anu_redirect_expired_jobs_menu() {
$items['check-for-expired-job'] = array(//this url is the Default 404 (not found) page in Site Information
'title' => 'Check for expired job listing',
'access callback' => TRUE,
'page callback' => 'anu_redirect_expired_jobs_checkforexpired',
);

return $items;
}

function anu_redirect_expired_jobs_menu_alter(&$items) {
$items['node/%node']['page callback'] = 'anu_redirect_expired_jobs_node_page_view';
}

function anu_redirect_expired_jobs_checkforexpired() {

$url = drupal_get_destination();

if (anu_redirect_expired_jobs_url_expired($url['destination'])) {
unset($_GET['destination']);
drupal_goto('job-vacancy-has-been-deleted', array(), 301);
} else {
return MENU_NOT_FOUND; //Page not found
}
}

function anu_redirect_expired_jobs_url_expired($url) {

//if the url ends with this pattern then the job has already been deleted
if (1 == preg_match('/-[0-9]{10}j$/', $url)) {
return true;
}
return false; //this isn't a job node type url
}

function anu_redirect_expired_jobs_node_page_view($node) {

global $user;

if($user->uid == 0) //logged in users should still be able to see these vacancies
{
if (in_array($node->type, array('central_government_vacancy', 'psu_vacancy', 'state_government_vacancy'))) {
//Check if has already expired
if (isset($node->field__expired_processed['und'][0]['value']) &&
$node->field__expired_processed['und'][0]['value'] == 1) {

drupal_goto('job-vacancy-has-been-deleted', array(), 301);
}
}
}
return node_page_view($node);
}

Saturday, June 29, 2013

How to delete the attachement files programmatically in Drupal

How to delete the attachment files programmatically in Drupal(D7 here)?

Somehow I've worked on this code but I'm not sure whether it is fool proof. But at the moment it is working for my site.

In the code field_file_attachment_s_ is the name of attachment field for my site. Assuming there could be multiple files which can be attached to this field. I've yet to test the multiple attachment file deletion feature in the code.

If you've got any better code then I'll be happy to have it.

Thanks for reading this!

$node = node_load($nid);
 
 //delete the file field 

// Get the language for the file field.
$lang = field_language('node', $node, 'field_file_attachment_s_');
// load the file for ($i = 0; $i < count($node->field_file_attachment_s_[$lang]); ++$i) {
$file = file_load($node->field_file_attachment_s_[$lang][$i]['fid']);
// unset the field for the node
if ($file) {
unset($node->field_file_attachment_s_[$lang][$i]);
// delete file from disk and from database

file_delete($file);
}
}
node_save($node);

Thursday, September 27, 2012

How to Disable Home Page textbox in Drupal Comments Form

Tired of automated spam comments for backlinks? To keep my life easy to manage Drupal sites I've finally come up with a smallest module that I'm most happy with.

It offers two functionalities:

  1. Removes home page from comment form
  2. Disables typing http:// or https:// within the comment text

Guess now what is left for the bots to try on your site! Well I still found 1 or 2 spams just testing without backlinks if they could post at all.

But life is much better for me managing a dozen sites.

Code

This is for D6. Create folder "anu_disable_http" in sites/all/modules and create these files

anu_disable_http.info

; $Id: anu_disable_http.info,v 1.1 2012/09/26 09:08:13 D14 Exp $
name = Anu Disable http in comments
description = to prevent spam
files[] = anu_disable_http.module
core = 6.x
package = custom
; Information added by drupal.org packaging script on 2010-11-12
version = 1.0
core = 6.x

anu_disable_http.module

function anu_disable_http_form_alter(&$form, &$form_state, $form_id) {
global $user;
if ($user->uid !=1 and $form_id == 'comment_form') {
$form['#validate'][] = 'anu_disable_http_validate_comments'; if(isset($form['homepage']))
{
$form['homepage']['#access'] = FALSE; //disable homepage
} }
} function anu_disable_http_validate_comments($form, $form_state)
{
$pattern = '/\bhttps?:\/\//i';
if(preg_match($pattern,$form_state['values']['comment']))
{
form_set_error('comment',"Please remove http:// or https:// from links, we will add them if required");
}

Enable it

Go to admin/build/modules and enable this and enjoy.

Wednesday, September 26, 2012

Validating A Profile field in Drupal (module source of phone field example)

If you have added a profile field like a phone number and want to validate it at the time of registeration of new user account, then here is the code of module(D6) which does exactly that.

First enable profile module and add the field(s), here I've added the field whose machine name is "profile_phone_number" of type textfield.

Firstly create a directory anu_check_phone_profile_field in sites/all/modules and create these two files with the names:

anu_check_phone_profile_field.info

 

; $Id: anu_check_phone_profile_field.info,v 1.1 2012/09/26 09:08:13 D14 Exp $
name = Anu Check Phone Profile field
description =if you've added phone number in the profile field then this will validate it
files[] = anu_check_phone_profile_field.module
core = 6.x
package = custom
; Information added by drupal.org packaging script on 2010-11-12
version = 1.0
core = 6.x

anu_check_phone_profile_field.module

<?php
function anu_check_phone_profile_field_form_alter(&$form, &$form_state, $form_id) {
global $user;
if ($user->uid !=1 and $form_id == 'user_register') {
$form['#validate'][] = 'anu_check_phone_profile_field_validate';
}
}
function anu_check_phone_profile_field_validate($form, $form_state)
{
$ph = trim($form_state['values']['profile_phone_number']);
if(strlen($ph) != 10 or in_array($ph[0],array('1','2','3','4','5','0')) or ! ctype_digit($ph) or preg_match('/([0-9])\1\1\1\1\1/',$ph))
{
form_set_error('profile_phone_number',"Please provide your correct cell number!");
}
}
 
 
That's it go and add the module in admin/build/modules/list and enjoy!


Friday, August 24, 2012

Drupal Download Wait Module - Make users wait before every download

Drupal module to make user wait before download of any file

My requirement

I want to every visitor to wait before downloading any file. Also I don't want the search engines to index the download file. I earn from ads so the more visitors see them, the better for me.

How to do it

It is best done using POST form submission, which will make search engines to automatically stop there. This POST data will contain the file to download, wait delay the user will need to wait before downloading the file.

Functionality

You can find actual implementation here.
To present a file for download, first install the anu_download_wait module. I use brtDownloadPostRequest.pl file to quickly generate the "Download" button. It looks something like:
<form method="post" action="http://127.0.0.1/bookrailticket/downloadsbrt/90n-brt-download-file-now" class="com_download_showpage_form">
<input type="hidden" value="http://127.0.0.1/bookrailticket/200812-48539a7b9-indian-rail-route-map-p09" name="anu_download_file_link" />
<input type="hidden" value="1" name="anu_download_wait_delay_factor" />
<input type="hidden" value="Indian Railways Route Map" name="anu_download_file_title" /> <input type="submit" title="Press this button to download the document" value="Download" class="submitBtn1" />
</form>
Mind you it contains following changeable values:
  • anu_download_file_link : Set it to wherever the download is present. After wait is over, visitor will be taken to this page
  • anu_download_wait_delay_factor(optional): How many seconds the visitor will wait( 1- 300 secs). Any other value will have it reset to 45 second in the module
  • anu_download_file_title: This title will be shown in the download page.
There is also a text box in the download area where user can enter his/her email id. I'm simply saving the email in a txt file in the module directory. Not doing anything else.

Javascript Issues

If javascript is disabled then the download button is shown enabled. So it will work by default. Also unless jquery & Drupal library is fully loaded the "Download" button will show as enabled and as soon as it is fully loaded, the javascript code will hide it and re-enable it after the wait period.

Redirect Feature

There is another redirect feature I've added is that if in the link the file is present in within your site then you can create a file in the same folder with the same name but with ".redirect" suffix added and put the redirected url in it, then the download will be redirect to this location. White space is not a problem in .redirect file.
This is because mine is shared hosting and download of big files will choke my account and also all files should be present in my site as a backup by default.
So if anu_download_file_link is set to "http://www.example.com/sites/default/files/abc.pdf" then just upload this file in say DropBox, Hotfile etc and put that link in the file: sites/default/files/abc.pdf.redirect in your site. So even if you remove this redirect file your downloads keep working!

Module

Download the drupal 6 download wait module here and enjoy! Here is the backup link.

Tuesday, November 29, 2011

How to use Drupal Node Locations/Location CCK modules

Using Node Locations

Install these modules
Gmap

Location

Node Location  : This provides address input textfields in a
node. To configure it edit node type

Gmap Location : You add a block of the gmap of the node in view
mode. But this block is not visible when using Location CCK.




Using Location CCK

In this case you don't need Node Location and instead follow the
following configuration

1) Gmap

2) Location CCK

3) Location

Now add the location cck field in the node and in it's "Display Fields" select "Address with map" under "Full Node". This will show map for the location entered automatically.
This will automatically add Google map as in the image below.

Location CCK will store location data in location_instance. Here is the thread.

Tuesday, November 1, 2011

Configuring XDebug with PHP and Netbeans IDE for Drupal

This is for you if just want to configure Netbeans with XDebug on
Windows whether or not you use Drupal. It also equally applies for
Joomla.

My last experience to configure this on Eclipse wasn't good while
working with Joomla. Since the debugger would frequently stop working.
Later I configured it to work with Zend debugger which was better.

But now I've a new Windows-7 and I needed to configure Xdebug while working on Drupal. And lo! It was so easy and works nicely.
Surprisingly I did pretty less settings to configure it to use it.

My Configuration

  • Xampp: 1.6.8 (one later version was giving some problem so I reverted to this stable one)
  • Netbeans: 7.0.1( newly installed)
  • PHP: 5.2.6
  • OS:Windows-7
  • Webserver: on localhost

Steps


  1. Open php.ini. On Windows it is in <xampp>/apache/bin/php.ini
    or you can find from the xampp page when you go to http://localhost and
    click phpinfo() on the left side.
  2. Search for [Zend] section followed by [XDebug] section. Now
    comment all the [Zend] section by placing semicolon from [Zend] till
    End:. Next uncomment all lines in [XDebug] section. I'm placing a screenshot of these changes(see below).
  3. Download XDEBUG version and place it in <xampp>/php/ext also
    the name of this xdebug...dll should be same as mentioned in the
    [XDebug] section in zend_extension.
  4. Open Netbeans and create a new PHP project selecting the project
    path in the DocumentRoot. While creating project select Local Server(
    and NOT remote server) For Drupal project select full path till Drupal.
    That's it and I did no other configuration.
  5. Now open index.php in the Drupal project and set a breakpoint at a
    valid source code line by right clicking in the file above the line and
    selecting "Toggle breakpoint". Again right click and select in the file
    "Debug". I assume you have a default browser set. Now do the debugging
    to your hearts-ful and when done then go to Debug menu and select
    "Finish debugger session". I did not create file extension to recognize .module as php file in Netbeans.