I moved a Pyrocms site to another server. Go to index: blank page.

Turn on errors: get this

A PHP Error was encountered

Severity: Notice

Message: Undefined property: Pages::$session

Filename: core/Model.php

Line Number: 50
Fatal error: Call to a member function set_flashdata() on a non-object in /var/www/vhosts/brokentalkers.com/httpdocs/system/pyrocms/modules/modules/models/module_m.php on line 193

If it sheds any light, I made a tar.gz of the contents of the old httpdocs folder, and extracted it in the new httpdocs folder.

I made a duplicate of the database with an identical user, so config/database.php shouldn't need changing.

Any ideas? Thanks in advance.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 2 down vote accepted

It seems like $session class is not initializing correctly.

  1. Check for default_ci_sessions table, if you are using sessions for database.
  2. Check if the constructor is loading sessions library.
  3. Check if session is in autoload.php config
link|improve this answer
Thanks, I'm going to try these tonight. 3. Yes, it's definitely in the helper. – puppybeard Sep 9 '11 at 9:43
1  
I fixed it by upgrading in the end, but your advice got me going in the right direction, thank you. – puppybeard Sep 11 '11 at 12:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.