good afternoon. Just started using drupal a few weeks ago and I stumbled across this module last night. I uploaded it to the modules folder within my specified sites folder. After doing so, I went to Administer > Site Building > Modules. On the Modules page I get the following error:

warning: Error parsing
sites/cincytucky.com/modules/site_user_list/site_user_list.info on line 6 in /home/styledes/public_html/includes/module.inc on line 195.

I wasn't sure if there was something I needed to do or what...I removed the module and re-uploaded, but still received the same error.

Any help is greatly appreciated. If you want a screen just let me know. Thx.

:cD

Comments

pukku’s picture

Assigned: Unassigned » pukku

Hi! What version of Drupal, PHP, and MySQL are you using? Also, what OS are you using?

You might try opening site_user_list.info and making sure that there is a newline at the end of the file. It should look like this:

; $Id: site_user_list.info,v 1.1.2.2 2007/04/17 20:20:13 pukku Exp $

name = Site User List
description = Provides a searchable and sortable tabular view of user profiles
dependencies = profile
version = $Name:  $

You could also try removing the line starting with 'version', and see what that does...

Ricky

STyL3’s picture

i'm on drupal 5.1, php5 and mysql 4...running on a linux server. i'll try your suggestions and get back to you.

THANKS for the QUICK response.

pukku’s picture

Did either suggestion fix the problem?

Anonymous’s picture

I had the same error; this upon upgrading my site to Drupal 5 and installing this module for the first time.

Site_user_list.info from the tarball was this:

; $Id: site_user_list.info,v 1.1.2.2 2007/04/17 20:20:13 pukku Exp $

name = Site User List
description = Provides a searchable and sortable tabular view of user profiles
dependencies = profile
version = $Name: DRUPAL-5 $


; Information added by drupal.org packaging script on 2007-04-18
version = "5.x-1.x-dev"
project = "site_user_list"

Stripping it down to the following fixed the problem (rather, the error isn't happening yet -- I haven't yet tried out the module):

; $Id: site_user_list.info,v 1.1.2.2 2007/04/17 20:20:13 pukku Exp $

name = Site User List
description = Provides a searchable and sortable tabular view of user profiles
dependencies = profile

This is on a shared linux server, php 5.2.1, MySQL 4.1.21-standard.

I hope the added info helps!

pukku’s picture

Status: Active » Fixed

Thanks! I've just committed a fix for the .info file as per your note...

Ricky

Anonymous’s picture

Status: Fixed » Closed (fixed)