Author Topic: Task Error  (Read 4373 times)

myasirbaig

  • Newbie
  • *
  • Posts: 4
    • View Profile
Task Error
« on: April 06, 2009, 08:59:15 am »
I have just upgraded my Opengoo to 1.3.1 since then my Task option is not working and even not showing the previous tasks i had added by clicking the task tab i have getting following error Error# document.getElementByid(config.user) is Null.
can anyone has the solution .
Regards,
Yasir

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: Task Error
« Reply #1 on: April 07, 2009, 03:10:22 pm »
Tried refreshing your browser? Maybe some file got corrupted when you uploaded it. What browser are you using?

myasirbaig

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: Task Error
« Reply #2 on: April 10, 2009, 03:33:29 am »
This problem only coming in IE browser or FireFox. i have checked it in Safari its not showing any error.
further i am facing an error while taking backup which i have tried on all type of browsers it showing me this error:
Caught Exception in AutoLoader: exception 'Exception' with message 'Could not find class file for "ZIPARCHIVE"' in C:\wamp\www\opengoo\environment\classes\AutoLoader.class.php:105 Stack trace: #0 C:\wamp\www\opengoo\environment\classes\AutoLoader.class.php(111): AutoLoader->loadClass('ZIPARCHIVE') #1 C:\wamp\www\opengoo\application\functions.php(33): AutoLoader->loadClass('ZIPARCHIVE') #2 [internal function]: __autoload('ZipArchive') #3 C:\wamp\www\opengoo\application\controllers\BackupController.class.php(174): class_exists('ZipArchive') #4 C:\wamp\www\opengoo\application\controllers\BackupController.class.php(155): BackupController->create_zip() #5 C:\wamp\www\opengoo\environment\classes\controller\Controller.class.php(75): BackupController->launch() #6 C:\wamp\www\opengoo\environment\classes\controller\PageController.class.php(62): Controller->execute('launch') #7 C:\wamp\www\opengoo\environment\classes\Env.class.php(133): PageController->execute('launch') #8 C:\wamp\www\opengoo\init.php(146): Env::executeAction('backup', 'launch') #9 C:\wamp\www\opengoo\index.php(9): require('C:\wamp\www\ope...') #10 {main}
Regards,
Yasir Baig
« Last Edit: April 10, 2009, 03:53:01 am by myasirbaig »

counterpower

  • Newbie
  • *
  • Posts: 9
    • View Profile
Re: Task Error
« Reply #3 on: May 02, 2009, 06:53:45 pm »
I love OpenGoo but really I'm puzzled why backups and auto-upgrades rely on ZIPARCHIVE when so many hosting services do *not* make that function available. Isn't tar.gz a lot more standard? Thanks.

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: Task Error
« Reply #4 on: May 05, 2009, 12:56:48 pm »
You can't handle tar.gz files directly in PHP without any extension AFAIK. The ZIP format is the most popular compression format and is usually supported in all OSes without installing anything else. For the backup we are already distinguishing whether the zip extension exists, and if not we use a pure PHP (but worse) implementation. We should do the same for reading the zip file in the auto-upgrade.