Statuses Module, Views Errors "Broken/missing handler"

Using the statuses module for Drupal 7 and when I open statuses/all in Drupal it is all sorts of out of whack.

  • "Broken/Missing Handler"
  • Unable to preview due to validation errors.
  • Style RSS Feed requires a row style but the row plugin is invalid.

The view works on the frontend of the site just fine /statuses/all -- no problems whatsover, but views seems to be busted up. Any advice on how to fix this? What is going on?

D7: Print Taxonomy Tree in Unordered List

D7: Print Taxonomy Tree in Unordered List. Note, I had to use Bundle_Copy -> Export to find the Vocabulary ID.

HTTP ERROR 500 - Can't catch a break...

Hello friend,

Thank you for reading.

My website (Drupal 7) was working well,

Now there's a problem; whenever I delete or upload an image...

..and save. The 500 error pops up.

I can edit pages, but when ever I touch an image - I get the error.

Can you help me out?

D7: Code to Alter Tabs, Paths, Titles, & Redirect

<?php

// Retitle Tabs
function custom_menu_alter(&$items) {

  $items['user/%/messages']['title'] = 'PMs';
  $items['user/register']['title'] = 'Register';
  $items['user']['title'] = 'Login';
  $items['user/password']['title'] = 'Reset';

}

// Remove Tabs
function custom_menu_local_tasks_alter(&$data) {

  foreach ($data['tabs'][0]['output'] as $key => $value) {
    if (
      $value['#link']['path'] == "user/%/points" || 
    	$value['#link']['path'] == "user/%/edit" || 
    	$value['#link']['path'] == "node/%/points" ||

How To: Create Additional User Account Pages?

I want to create additional user accounts pages besides just /user/user-name, user/uid/edit, etc.

Basically, I want a separate page that mimics the account page, so that I can populate it based on the UID of that user. If that makes sense? My initial thought is simply to make a views page and pass in a contextual filter, but not sure I want to have to run a default query.

Count # of Times a View w/ Value has been displayed?

  • I have an imitation ad banner system on my site that uses a custom content-type for adding the banner, some text about the company and a link to their web address.
  • I am able to use statistics to count (node_counter) the number of times a node has been viewed, but i want to do the same thing with views, count the number of times the view showing the ad has been displayed.
  • Basically trying to get a "views" count and a "clicks" count so that I can display that to the end user.

Is there a more solid way of going about this? Any ideas?

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x