[solved] module manager error

Have a question or a suggestion about a 3rd party addon module or plugin?
Let us know here.
Post Reply
NashBridges
Forum Members
Forum Members
Posts: 75
Joined: Sun Jun 15, 2008 2:29 pm

[solved] module manager error

Post by NashBridges »

hi
i get an error i cannot deal with... the module manager shows me such lines:
Array ( [name] => CompanyDirectory [filename] => CompanyDirectory-1.1.5.xml [md5sum] => ca7428b2c8c21863a71d3172b76bfa82 [version] => 1.1.5 [mincmsversion] => 1.3.1 [description] => Description [date] => 2008-07-21 12:59:58 [size] => 357324 [status] => notinstalled )

Array ( [name] => FrontEndUsers [filename] => FrontEndUsers-1.4.4.xml [md5sum] => 16b6076e63e44753919c128c1a5e8718 [version] => 1.4.4 [mincmsversion] => 1.3.1 [description] => Allow users to log in to the frontend of your site [date] => 2008-07-21 12:59:58 [size] => 1766155 [status] => notinstalled )

Array ( [name] => NMS [filename] => NMS-2.2.xml [md5sum] => 45f42aa644b0c92fa5c9100ebcc48683 [version] => 2.2 [mincmsversion] => 1.3.1 [description] => This module is a module that allows you to create a newsletter system. [date] => 2008-07-21 12:59:58 [size] => 1282604 [status] => upgrade )

Array ( [name] => SelfRegistration [filename] => SelfRegistration-1.2.1.xml [md5sum] => dc13eefd84a43b2d6205e069a79e7c74 [version] => 1.2.1 [mincmsversion] => 1.3.1 [description] => A module that allows front end users to register themselves. [date] => 2008-07-21 12:59:58 [size] => 596285 [status] => notinstalled )

Array ( [name] => SimpleFeedback [filename] => SimpleFeedback-0.1.xml [md5sum] => 8c5c6e497998ab07b65be7e161fd8a60 [version] => 0.1 [mincmsversion] => 1.3.1 [description] => Manage Simple Feedback [date] => 2008-07-21 12:59:58 [size] => 21451 [status] => notinstalled )
these modules are classified as not compatible, but some of them are installed and working properly (i.e. the newsletter module)... any idea where this error comes from?
please help
greets
christian


CMS Made Simple Version: 1.3

Installed Modules:

   * CMSMailer: 1.73.13
   * FileManager: 0.3.0
   * MenuManager: 1.5
   * ModuleManager: 1.1.6
   * News: 2.8
   * nuSOAP: 1.0.1
   * Printing: 0.2.3
   * Search: 1.5
   * ThemeManager: 1.0.8
   * TinyMCE: 2.4.1
   * Skeleton: 1.3
   * Album: 0.9.3
   * Calendar: 0.8.1
   * NFS: 1.0
   * Captcha: 0.3.1
   * Guestbook: 1.1.10
   * TemplateManager: 0.2
   * CGExtensions: 1.8
   * NMS: 2.1.1

Current PHP Version: 5.2.6

PHP Configuration:

   * Maximum Post Size: 24M
   * Maximum Upload Size: 24M
   * PHP Memory Limit: 64M
   * PHP Safe Mode: Off
   * Maximum Execution Time: 30 seconds
   * Session Save Path: /var/www/html/web201/phptmp

MySQL Server Version: 5.0.51a

Server Software: Apache/2.2.3 (CentOS)
Server API: CGI-FCGI
Server OS: Linux v 2.6.18-92.1.6.el5 on x86_64 architecture

Directory Permissions:

   * tmp/cache - 0755
   * tmp/templates_c - 0755
   * uploads - 0755
   * modules - 0755

Browser: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1
Last edited by NashBridges on Tue Jul 29, 2008 10:32 pm, edited 1 time in total.
Pierre M.

Re: module manager error

Post by Pierre M. »

NashBridges wrote: CMS Made Simple Version: 1.3
1.3 or 1.3.1 ?

Pierre M.
NashBridges
Forum Members
Forum Members
Posts: 75
Joined: Sun Jun 15, 2008 2:29 pm

Re: module manager error

Post by NashBridges »

CMS Made Simple 1.3 "Cuba"
Pierre M.

Re: module manager error

Post by Pierre M. »

What about trying 1.3.1 ? 1.4 will be out soon.

Or it may be an broken upload issue ? http://wiki.cmsmadesimple.org/index.php/FTP_program

Pierre M.
User avatar
kermit
Power Poster
Power Poster
Posts: 693
Joined: Thu Jan 26, 2006 11:46 am

Re: module manager error

Post by kermit »

i'm also seeing this on 1.3; first noticed today, so it's something new.
eternity (n); 1. infinite time, 2. a seemingly long or endless time, 3. the length of time it takes a frozen pizza to cook when you're starving.
4,930,000,000 (n); 1. a very large number, 2. the approximate world population in 1986 when Microsoft Corp issued its IPO. 3. Microsoft's net profit (USD) for the quarter (3 months) ending 31 March 2007.
CMSMS migration and setup services | Hosting with CMSMS installed and ready to go | PM me for Info
Pierre M.

Re: module manager error

Post by Pierre M. »

Does the upgrade to 1.3.1 solve it for you ?
User avatar
kermit
Power Poster
Power Poster
Posts: 693
Joined: Thu Jan 26, 2006 11:46 am

Re: module manager error

Post by kermit »

it's coming from this (so since it's the handling of 'incompatible' modules and all reference a min version of 1.3.1, an upgrade to that version would [temporarily] "fix" the "problem"):
    //
    // Do a third loop
    // and check min and max cms version
    //
    $results2 = array();
    foreach( $results as $oneresult )
      {
if( (!empty($oneresult['maxcmsversion']) &&
    version_compare($CMS_VERSION,$oneresult['maxcmsversion']) > 0) ||
    (!empty($oneresult['mincmsversion']) &&
    version_compare($CMS_VERSION,$oneresult['mincmsversion']) ';[/b][/color]
    $oneresult['status'] = 'incompatible';
  }
$results2[] = $oneresult;
      }
    $results = $results2;
the same print_r is present in 1.4beta2..  just looks like that routine (its display or other handling of 'incompatible' modules within the list) is unfinished is all... 

Image

'incompatible' modules should really be listed with the rest, just with status 'incompatible requires version xx.x or whatever' and no 'download/install' link (or perhaps hidden via a preference).
Last edited by kermit on Thu Jul 24, 2008 8:30 pm, edited 1 time in total.
eternity (n); 1. infinite time, 2. a seemingly long or endless time, 3. the length of time it takes a frozen pizza to cook when you're starving.
4,930,000,000 (n); 1. a very large number, 2. the approximate world population in 1986 when Microsoft Corp issued its IPO. 3. Microsoft's net profit (USD) for the quarter (3 months) ending 31 March 2007.
CMSMS migration and setup services | Hosting with CMSMS installed and ready to go | PM me for Info
NashBridges
Forum Members
Forum Members
Posts: 75
Joined: Sun Jun 15, 2008 2:29 pm

Re: module manager error

Post by NashBridges »

i'm waiting for 1.4 before upgrading anything...
thanks for your help...
NashBridges
Forum Members
Forum Members
Posts: 75
Joined: Sun Jun 15, 2008 2:29 pm

Re: module manager error

Post by NashBridges »

was there a forum upgrade too? tried to add "solved" to the topic but the edit-link doesn't work
Pierre M.

Re: module manager error

Post by Pierre M. »

NashBridges wrote: tried to add "solved" to the topic but the edit-link doesn't work
Please try again to edit the title of your first post. Thanks.

Pierre M.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12709
Joined: Thu Mar 09, 2006 5:32 am
Location: Arizona

Re: module manager error

Post by Dr.CSS »

Did you hit the modify button?...
Post Reply

Return to “Modules/Add-Ons”