Giter VIP home page Giter VIP logo

Comments (17)

hillelcoren avatar hillelcoren commented on May 18, 2024

Please try running a git pull/artisan migrate.

On Apr 17, 2014, at 5:54 PM, Thomas Heinz [email protected] wrote:

Installed it in
http://dev.mydomain.net/invoice-ninja/

Trying to access it via
http://dev.mydomain.net/invoice-ninja/public/

Page loads, everything looks finde. As soon as I click on "Invoice now" I
get a 404:
/var/www/virtual/user/dev.mydomain.net/invoice-ninja/public/index.php

Okay, so I added index.php in the URL
http://dev.mydomain.net/invoice-ninja/public/index.php

As soon as I now click in "Invoice now" I get a error Message:

Symfony \ Component \ Debug \ Exception \ FatalErrorException
Class Zizaco\Confide\ConfideUser contains 3 abstract methods and must
therefore be declared abstract or implement the remaining methods
(Illuminate\Auth\UserInterface::getRememberToken,
Illuminate\Auth\UserInterface::setRememberToken,
Illuminate\Auth\UserInterface::getRememberTokenName)

Don't know how to solve that....


Reply to this email directly or view it on
GitHubhttps://github.com//issues/99
.

from invoiceninja.

TomTomNavigator avatar TomTomNavigator commented on May 18, 2024

Mh, nothing changed:

[invoice-ninja]$ git pull
remote: Counting objects: 51, done.
remote: Compressing objects: 100% (50/50), done.
remote: Total 51 (delta 7), reused 0 (delta 0)
Unpacking objects: 100% (51/51), done.
From https://github.com/hillelcoren/invoice-ninja
   016b215..0d91237  master     -> origin/master
Updating 016b215..0d91237
Fast-forward
 .gitignore                                         |    4 +-
 .../2014_04_17_100523_add_remember_token.php       |   34 +
 app/lang/de/texts.php                              |    2 +
 app/lang/en/texts.php                              |    2 +
 app/lang/es/texts.php                              |    2 +
 app/lang/fr/texts.php                              |    2 +
 app/lang/it/texts.php                              |    2 +
 app/lang/nl/texts.php                              |    2 +
 app/lang/pt_BR/texts.php                           |    2 +
 app/libraries/utils.php                            |    5 +
 app/models/User.php                                |   15 +
 app/routes.php                                     |    4 +-
 app/views/accounts/details.blade.php               |    2 +-
 app/views/accounts/import_map.blade.php            |    2 +-
 app/views/accounts/notifications.blade.php         |    2 +-
 app/views/accounts/payments.blade.php              |    2 +-
 app/views/clients/edit.blade.php                   |    2 +-
 app/views/credits/edit.blade.php                   |    2 +-
 app/views/header.blade.php                         |   14 +-
 app/views/invoices/edit.blade.php                  |    8 +-
 app/views/master.blade.php                         |   40 +-
 app/views/payments/edit.blade.php                  |    2 +-
 app/views/public/about_us.blade.php                |    8 +-
 composer.lock                                      | 5055 ++++++++++++++++++++
 24 files changed, 5171 insertions(+), 44 deletions(-)
 create mode 100644 app/database/migrations/2014_04_17_100523_add_remember_token.php
 create mode 100644 composer.lock
[invoice-ninja]$ php artisan migrate
Migrated: 2014_04_17_100523_add_remember_token

Do you need more info / error logs?

from invoiceninja.

hillelcoren avatar hillelcoren commented on May 18, 2024

Please try running composer install.

On Apr 17, 2014, at 5:54 PM, Thomas Heinz [email protected] wrote:

Installed it in
http://dev.mydomain.net/invoice-ninja/

Trying to access it via
http://dev.mydomain.net/invoice-ninja/public/

Page loads, everything looks finde. As soon as I click on "Invoice now" I
get a 404:
/var/www/virtual/user/dev.mydomain.net/invoice-ninja/public/index.php

Okay, so I added index.php in the URL
http://dev.mydomain.net/invoice-ninja/public/index.php

As soon as I now click in "Invoice now" I get a error Message:

Symfony \ Component \ Debug \ Exception \ FatalErrorException
Class Zizaco\Confide\ConfideUser contains 3 abstract methods and must
therefore be declared abstract or implement the remaining methods
(Illuminate\Auth\UserInterface::getRememberToken,
Illuminate\Auth\UserInterface::setRememberToken,
Illuminate\Auth\UserInterface::getRememberTokenName)

Don't know how to solve that....


Reply to this email directly or view it on
GitHubhttps://github.com//issues/99
.

from invoiceninja.

TomTomNavigator avatar TomTomNavigator commented on May 18, 2024

You are the best. It's working now. Great!

from invoiceninja.

hillelcoren avatar hillelcoren commented on May 18, 2024

Great, thanks for letting me know.

On Apr 17, 2014, at 7:37 PM, Thomas Heinz [email protected] wrote:

You are the best. It's working now. Great!


Reply to this email directly or view it on
GitHubhttps://github.com//issues/99#issuecomment-40734741
.

from invoiceninja.

Dixens avatar Dixens commented on May 18, 2024

Hi Hillel,

Got the same message on a fresh install today (complete with the remember_token field and methods) :

Symfony \ Component \ Debug \ Exception \ FatalErrorException
Class Zizaco\Confide\ConfideUser contains 3 abstract methods and must therefore be declared abstract or implement the remaining methods (Illuminate\Auth\UserInterface::getRememberToken, Illuminate\Auth\UserInterface::setRememberToken, Illuminate\Auth\UserInterface::getRememberTokenName)

Reran the whole thing (pull/migrate -> nothing to migrate / composer install -> Nothing to install or update), same error message.

Thank you

from invoiceninja.

Dixens avatar Dixens commented on May 18, 2024

... never mind, it is sorted out. For some reason, my Zizaco/Confide/ConfideUser.php did not have new reference to UserInterface in Token related methods. Sorry about the fuss.

from invoiceninja.

hillelcoren avatar hillelcoren commented on May 18, 2024

I believe this is related to the latest version of Laravel. As you've seen
I've included the fields but I think there maybe a change require by the
confide framework.

I'm away for a couple of days so haven't had a chance to really look into
it but I've checked in the composer lock file which should have solved this.

I hope to be able to spend more time on this later in the week.

On Apr 20, 2014, at 5:54 PM, dixens [email protected] wrote:

Hi Hillel,

Got the same message on a fresh install today (complete with the
remember_token field and methods) :

Symfony \ Component \ Debug \ Exception \ FatalErrorException
Class Zizaco\Confide\ConfideUser contains 3 abstract methods and must
therefore be declared abstract or implement the remaining methods
(Illuminate\Auth\UserInterface::getRememberToken,
Illuminate\Auth\UserInterface::setRememberToken,
Illuminate\Auth\UserInterface::getRememberTokenName)

Reran the whole thing (pull/migrate -> nothing to migrate / composer
install -> Nothing to install or update), same error message.

Thank you


Reply to this email directly or view it on
GitHubhttps://github.com//issues/99#issuecomment-40896523
.

from invoiceninja.

Dixens avatar Dixens commented on May 18, 2024

(I sent you my feedback in the same time you sent yours) No problem: I just updated Zizaco/Confide/ConfideUser.php and it worked perfectly OK. Thanks.

from invoiceninja.

hillelcoren avatar hillelcoren commented on May 18, 2024

Thanks for letting me know.

On Apr 20, 2014, at 6:06 PM, dixens [email protected] wrote:

... never mind, it is sorted out. For some reason, my
Zizaco/Confide/ConfideUser.php did not have new reference to UserInterface
in Token related methods. Sorry about the fuss.


Reply to this email directly or view it on
GitHubhttps://github.com//issues/99#issuecomment-40896736
.

from invoiceninja.

osmanzeki avatar osmanzeki commented on May 18, 2024

For all us composer newcomers out there, you just need to change your composer.json file's version for Confide from 3.1.x to 3.2.x and do composer update via ssh to fix this issue for your current install.

from invoiceninja.

hillelcoren avatar hillelcoren commented on May 18, 2024

@osmanzeki

Thanks for the tip! Once I've tested everything I'll check in the change.

from invoiceninja.

rollbrettler avatar rollbrettler commented on May 18, 2024

@osmanzeki this worked for me. Thanks!

from invoiceninja.

whitebook avatar whitebook commented on May 18, 2024

I just wanted to post a link to the laravel docs on this as well. I ran into the same trouble although google search returned this page and was easy to debug.

http://laravel.com/docs/upgrade#upgrade-4.1.26

from invoiceninja.

hillelcoren avatar hillelcoren commented on May 18, 2024

The composer.json file has been updated so this should no longer be a problem.

from invoiceninja.

AnthonyOkwi avatar AnthonyOkwi commented on May 18, 2024

Hello Hillelcoren i am trying to run a self-hosted installation on xampp windows
laravel-error.txt
but keep running into this error at the setup stage. Any suggestions on what could be wrong will be helpful

from invoiceninja.

hillelcoren avatar hillelcoren commented on May 18, 2024

The main error seems to be Maximum execution time of 30 seconds exceeded

Are you able to increase the execution time?

from invoiceninja.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.