Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Official] Contentify 2 #52

Closed
chriskonnertz opened this issue Apr 8, 2016 · 100 comments
Closed

[Official] Contentify 2 #52

chriskonnertz opened this issue Apr 8, 2016 · 100 comments
Assignees

Comments

@chriskonnertz
Copy link
Member

chriskonnertz commented Apr 8, 2016

Branch:

2.0-dev

Current Releases:

2.0
2.0 RC
2.0 Beta

Release Date:

24th of December, 2016. 🎄

Changelog so far:

  • Updated Laravel to v5.2, general update of PHP vendor packages, also updated Font Awesome and jQuery
  • Dropped Sentry (user authentication package) in favor of Sentinel
  • Incorporated the theme of the demo website
  • Added more "Go back to overview" buttons
  • Added config values for Facebook, Twitter and YouTube so they are no longer hardcoded
  • Added theme support. That means you can switch between themes in the admin backend.
  • New feature: Added "stream view" for news (and videos)
  • Fixed: Deletion of models with dependencies is no longer possible!
  • Teams: Overhauled team pages
  • Navigations can now translate their link titles
  • New cups module
  • New theme called "Phobos"
  • Updated the installation scripts
  • Added a warning if the debug mode is enabled on a production server

Some bug fixes have been commited to Contentify 2 and 1.x. For examples changes that improve the compatibility with PHP 7 or a solution for the Twitch API issue.

Current issues:

ATTENTION: Contentify 2 is a work in progress!

@Garey27
Copy link

Garey27 commented Apr 13, 2016

Hello! Is Contentify 2 ready for fresh install?

@chriskonnertz
Copy link
Member Author

Hello. Yes it is. However, consider the current state being an alpha version. So it might have some bugs.

(And ofcourse note that you have to switch to the 2.0-dev branch 😉 )

@Garey27
Copy link

Garey27 commented Apr 13, 2016

Ok i make tarball 2.0-dev, then copy to /var/www now the install.php says:
Contentify already has been installed.
And index.php return blank page =)
/var/www was empty before :) also i drop all old tables of previous 1.1.0 version which installed good

@chriskonnertz
Copy link
Member Author

Okay. I start to hate this problem... I guess I should change the way Contentify decides if it is installed or not.

However, the solution is to create an (empty) file: storage/app/.install
Then try again.

@Garey27
Copy link

Garey27 commented Apr 13, 2016

Okay now requirements page is shows but when click "Launch installer" its redirect to /install which empty (changing disable *.php from address just makes button Launch installer just reload page) so i go back to 1.1.0 and start my Laravel coding journey 😄

@chriskonnertz
Copy link
Member Author

Okay. (However, this might be a problem with the server configuration so you might have it with 1.1 as well!)

@GenDorMetie
Copy link

From where i can download contentify 2.0?

@chriskonnertz
Copy link
Member Author

chriskonnertz commented Apr 15, 2016

Here: https://github.com/Contentify/Contentify/archive/2.0-dev.zip

(Most likely you will have to create the storage/app/.install file manually to make the installer work.)

@ghost
Copy link

ghost commented Apr 15, 2016

Is there a live demo of Contentify 2? :)

@chriskonnertz
Copy link
Member Author

chriskonnertz commented Apr 16, 2016

No not yet. Contentify 2 is a work in progress. Not final at all, not even a beta.

Sorry if there was a misunderstanding.

@ThomasKedie
Copy link

ThomasKedie commented Apr 24, 2016

Hi. Thanks for verry good CMS! I'm trying contentify 2.0 and i'm getting this error:

InvalidArgumentException in FileViewFinder.php line 137:
View [::layout] not found.

@chriskonnertz
Copy link
Member Author

chriskonnertz commented Apr 24, 2016

Yep. Once it has reached a stable version (2.0 not 2.0-dev or 2.0-beta or whatever) there will be a complete download that contains all the third party packages. But what you can download from GitHub right now does not have these, so you have to install them via Composer.

@ThomasKedie
Copy link

Updated bug. Sorry :)

@chriskonnertz
Copy link
Member Author

Is there a file named storage/app/modules.json? If so, delete this file.

@ThomasKedie
Copy link

Deleted. Getting same error. Log file says:

[2016-04-24 14:40:29] production.ERROR: exception 'InvalidArgumentException' with message 'View [::layout] not found.' in /var/www/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137 Stack trace:

@chriskonnertz
Copy link
Member Author

chriskonnertz commented Apr 24, 2016

Okay I guess I know what happened, a bug in the installer. Bugfix: 09f5c73

Maybe the easiest way to get this bugfix is to delete everything then download the whole repository again from GitHub (it will contain the bugfix). Then install it again.

@ThomasKedie
Copy link

Thanks! I will try! +++

@ThomasKedie
Copy link

Seems working perfect! But then i go to my profile i get this error:

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'activated' in 'where clause' (SQL: select * fromuserswhereid= 3 andactivated= 1 limit 1)

:)

@chriskonnertz
Copy link
Member Author

Bug fixed: 1744e34

@ThomasKedie
Copy link

Thanks! I really like this CMS! BEST OF BEST! :)

@chriskonnertz
Copy link
Member Author

:)

@ThomasKedie
Copy link

One more bug. After uploading a file, i get this error:

ErrorException in VerifyCsrfToken.php line 23: hash_equals(): Expected user_string to be a string, null given

@chriskonnertz
Copy link
Member Author

I uploaded several images but I did not see this error.
a) Where did you upload it? (Which module?)
b) Are you sure that you were logged in? (If not sure, please try it again - maybe the CMS logged you out without telling you)
c) It was with Contentify 2, right?
d) Make sure the CMS can write to the public/uploads/folder and its sub-folders

@ThomasKedie
Copy link

ThomasKedie commented Apr 27, 2016

Hello Chris.
a) In file downloads module.
b) Yes i'm logged in.
c) Yes matte, contentify 2.
d) CMS can write to all folders.

My edit: If file larger than 100mb or more i get this error. If file is small uploads working fine. (P.S: Uploading in .rar format)

@chriskonnertz
Copy link
Member Author

Okay. Please go to the admin panel. Then "Config", then "Diagnostics". What are the values of PHP.post_max_size and PHP.upload_max_filesize? These are PHP settings from the php.ini configuration file. I assume one of them is less thann 100 MB?

@chriskonnertz chriskonnertz self-assigned this May 9, 2016
@EnigmaZA
Copy link

for me it is saying in install that PHP Mcrypt is not available but it is installed and up to date.

Is there anything i have done wrong?

@chriskonnertz
Copy link
Member Author

Just to make sure I understand what you are speaking about: Does it look like this? http://i.imgur.com/BBQ0fds.jpg

@EnigmaZA
Copy link

yes, i managed to fix that issue,

but now i cannot run the install script. it says the file cannot be found in the public folder, so i tried using the wiki address http://

/contentify/install.php but did not work

@acamilleri
Copy link
Member

Hello @my-eternity,

If i understand your request, you would upgrade Contentify 1.2 to Contentify 2 ?
What did you do for it?

For Contentify 2 you must create ".installed" file in "storage\app" if you have installed it.

@my-eternity
Copy link

I tried to do a fresh install of Contentify 2 and i tried to create the ".install" file in storage\app, after that i got a white screen. After i tried it again it said "NotFoundHttpException in RouteCollection.php line 161:"

@acamilleri
Copy link
Member

I'm not in my home, but I think it's ".installed" and not ".install"

@my-eternity
Copy link

I just saw that i have to create that file in a comment.
That's the reason why i tried it ^^

" chriskonnertz commented on 13 Apr

Okay. I start to hate this problem... I guess I should change the way Contentify decides if it is installed or not.

However, the solution is to create an (empty) file: storage/app/.install
Then try again."

@acamilleri
Copy link
Member

Oh yes ^^ since this comment @chriskonnertz and @ImTheLe are change the .install to .installed for some reason ;)

So now you are no problem ? :)

@my-eternity
Copy link

my-eternity commented Nov 30, 2016

oh..well.. :D
getting a blank page now..it's full white, no text, nothing.
tried it with /public/install.php and /public/install

@acamilleri
Copy link
Member

can you create new issue please: https://github.com/Contentify/Contentify/issues/new
I will trying to help you on your issue.

@my-eternity
Copy link

#109

@my-eternity
Copy link

hi
is there a way to update contentify from version 1.2 to 2.0 on final release?

@chriskonnertz
Copy link
Member Author

chriskonnertz commented Dec 22, 2016

Hello.

Contentify 1.x uses Sentry, a library created by a company called Cartalyst: ttps://github.com/cartalyst/sentry
If you click on the link you will see that this library is deprecated:

This package is DEPRECATED, please check our Sentinel package for a better authentication & authorization system.

Therefore Contentify 2 uses Sentinel, the new version of Sentry. Sentinel helps to manage users, for example create user accounts and handle user permissions. In other words, it's a very important library.

Unfortunately Sentry and Sentinel are not compatible at all. A website built with Contentify 1.x / Sentry will not work with Contentify 2 / Sentinel, because the user database table differs. That's the problem. The solution would be to create a migration path, an update tool that takes the old user data and transforms it so it would work with Sentinel.

But this is a challenge. An expansive one. Expansive in meanings of effort and time. Contentify currently is a 100% open source CMS. It does not generate any revenues while it generates costs. Despite - as far as I know - being the only modern gaming CMS that is not in a beta with the release date "when it's done" (at some unspecified point in the future), Contentify is not very popular. I believe very few people would use such an migration tool.

And this is where the story ends. I know that it sounds harsh, but writing such a tool is not worth the effort. Also, only solving the "Sentry vs Sentinel" conflict would just solve one problem amongst others.

I am unhappy with how this went but this is one of the consequences of open source software: Sometimes there are not enough resources to meet all requirements.

Side note: Contentify 1.x has long term support (LTS) so it will still get bugfixes after the release of Contentify 2.

@vlaad23
Copy link

vlaad23 commented Dec 29, 2016

Hello Chris,
i just tried this CMS a few days ago, and i love it so much.
but somehow i deleted the database and try to re-install the CMS.
ofc i got the error like irbisgaming and Eyongkevin.

FatalErrorException in Migrator.php line 335:
Class 'MigrationCartalystSentinel' not found

is this error already solved?

i felt sad after read your comment above, i really understand the situation.
i'm just curious, will this development continues?
and can u recommend me the most stable version of this CMS ?
i think i will explore this much further. It was a good work, i really appreciate it.

Thumbs up

@chriskonnertz
Copy link
Member Author

chriskonnertz commented Dec 29, 2016

Hi

but somehow i deleted the database and try to re-install the CMS.
ofc i got the error like irbisgaming and Eyongkevin

Did you try this? https://github.com/Contentify/Contentify/wiki/Troubleshooting#installation-error-message-fatalerrorexception-in-migratorphp

is this error already solved?

Well, yes and no. More information: #102

i'm just curious, will this development continues?

Yes it will continue, no worries. Next version will be 2.1 - see #113.

and can u recommend me the most stable version of this CMS ?

v1.2 but I recommend to use 2. It may have some bugs still but a) this is pretty normal for a new release and b) v2 is the future. Bugs will be fixed, updates such as v2.1 will be released.

i just tried this CMS a few days ago, and i love it so much.

It was a good work, i really appreciate it.

Thanks! :)

@vlaad23
Copy link

vlaad23 commented Dec 29, 2016

Did you try this? https://github.com/Contentify/Contentify/wiki/Troubleshooting#installation-error-message-fatalerrorexception-in-migratorphp

at the very first time, i used XAMPP to run this cms
before u replied my message, i tried to delete all the tables related to the cms, but still got the same error.
then i re-install my XAMPP and create a new database.
The installation works without any problem.
i didn't expect u respond that fast. I will try to reproduce that error tomorrow bcause its alr 11.30 pm here.

v1.2 but I recommend to use 2. It may have some bugs still but a) this is pretty normal for a new release and b) v2 is the future. Bugs will be fixed, updates such as v2.1 will be released.

Okay, for now i will use v2 and i'm very excited to wait the next release.

Yes it will continue, no worries. Next version will be 2.1 - see #113.
i'm glad to hear that !

Thanks

@eodclan
Copy link

eodclan commented Dec 29, 2016

ErrorException in Collection.php line 1187:
Undefined index: enabled
in Collection.php line 1187
at HandleExceptions->handleError('8', 'Undefined index: enabled', '/var/www/www-root/data/xxxxx/vendor/laravel/framework/src/Illuminate/Support/Collection.php', '1187', array('key' => 'enabled')) in Collection.php line 1187
at Collection->offsetGet('enabled') in LocalRepository.php line 211
at LocalRepository->isEnabled('MorpheusTheme') in Modules.php line 280
at Modules->isEnabled('MorpheusTheme') in Module.php line 59
at Module->enabled() in AdminModulesController.php line 32
at AdminModulesController->App\Modules\Modules\Http\Controllers{closure}(object(Module)) in ModelHandler.php line 218
at ModelHandler->index(array('buttons' => null, 'dataSource' => array(object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module)), 'brightenFirst' => false, 'tableHead' => array('Title' => null, 'Enabled' => null, 'State' => null), 'tableRow' => object(Closure), 'actions' => array('install', object(Closure))), 'admin') in Facade.php line 219
at Facade::__callStatic('index', array(array('buttons' => null, 'dataSource' => array(object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module)), 'brightenFirst' => false, 'tableHead' => array('Title' => null, 'Enabled' => null, 'State' => null), 'tableRow' => object(Closure), 'actions' => array('install', object(Closure))), 'admin')) in BaseController.php line 381
at ModelHandler::index(array('buttons' => null, 'dataSource' => array(object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module)), 'brightenFirst' => false, 'tableHead' => array('Title' => null, 'Enabled' => null, 'State' => null), 'tableRow' => object(Closure), 'actions' => array('install', object(Closure))), 'admin') in BaseController.php line 381
at BaseController->indexPage(array('buttons' => null, 'dataSource' => array(object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module)), 'brightenFirst' => false, 'tableHead' => array('Title' => null, 'Enabled' => null, 'State' => null), 'tableRow' => object(Closure), 'actions' => array('install', object(Closure)))) in AdminModulesController.php line 67
at AdminModulesController->index()
at call_user_func_array(array(object(AdminModulesController), 'index'), array()) in BaseController.php line 89
at BaseController->callAction('index', array()) in ControllerDispatcher.php line 146
at ControllerDispatcher->call(object(AdminModulesController), object(Route), 'index') in ControllerDispatcher.php line 94
at ControllerDispatcher->Illuminate\Routing{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 52
at Pipeline->Illuminate\Routing{closure}(object(Request)) in VerifyCsrfToken.php line 20
at VerifyCsrfToken->handle(object(Request), object(Closure))
at call_user_func_array(array(object(VerifyCsrfToken), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 103
at Pipeline->then(object(Closure)) in ControllerDispatcher.php line 96
at ControllerDispatcher->callWithinStack(object(AdminModulesController), object(Route), object(Request), 'index') in ControllerDispatcher.php line 54
at ControllerDispatcher->dispatch(object(Route), object(Request), 'App\Modules\Modules\Http\Controllers\AdminModulesController', 'index') in Route.php line 174
at Route->runController(object(Request)) in Route.php line 140
at Route->run(object(Request)) in Router.php line 724
at Router->Illuminate\Routing{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 52
at Pipeline->Illuminate\Routing{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 103
at Pipeline->then(object(Closure)) in Router.php line 726
at Router->runRouteWithinStack(object(Route), object(Request)) in Router.php line 699
at Router->dispatchToRoute(object(Request)) in Router.php line 675
at Router->dispatch(object(Request)) in Kernel.php line 246
at Kernel->Illuminate\Foundation\Http{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 52
at Pipeline->Illuminate\Routing{closure}(object(Request)) in VerifyAdminAccess.php line 37
at VerifyAdminAccess->handle(object(Request), object(Closure))
at call_user_func_array(array(object(VerifyAdminAccess), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request)) in UpdateUser.php line 108
at UpdateUser->handle(object(Request), object(Closure))
at call_user_func_array(array(object(UpdateUser), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request)) in ShareErrorsFromSession.php line 49
at ShareErrorsFromSession->handle(object(Request), object(Closure))
at call_user_func_array(array(object(ShareErrorsFromSession), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request)) in StartSession.php line 64
at StartSession->handle(object(Request), object(Closure))
at call_user_func_array(array(object(StartSession), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request)) in AddQueuedCookiesToResponse.php line 37
at AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
at call_user_func_array(array(object(AddQueuedCookiesToResponse), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request)) in EncryptCookies.php line 59
at EncryptCookies->handle(object(Request), object(Closure))
at call_user_func_array(array(object(EncryptCookies), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request)) in CheckForMaintenanceMode.php line 44
at CheckForMaintenanceMode->handle(object(Request), object(Closure))
at call_user_func_array(array(object(CheckForMaintenanceMode), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 103
at Pipeline->then(object(Closure)) in Kernel.php line 132
at Kernel->sendRequestThroughRouter(object(Request)) in Kernel.php line 99
at Kernel->handle(object(Request)) in index.php line 53

@chriskonnertz
Copy link
Member Author

Hi,

where does this error appear (URL for exmple /user/1/daemon)?

@vlaad23
Copy link

vlaad23 commented Dec 31, 2016

Hi chris,
i tried to install the cms in a shared hosting, before did that i tested on local, and seems fine.
but whenever i upload an image via admin backend (in shared hosting), why the images not appear in every section (slides, teams, partner etc) ?

i already configure the server.php and index.php into the right paths

@eodclan
Copy link

eodclan commented Jan 1, 2017

chris die fehler meldung kommt im backend bereich wenn man in die modul einstellungen möchte.
Und wie stellt man das cms komplett auf https um?

@eodclan
Copy link

eodclan commented Jan 1, 2017

Es scheint so, wenn man das CMS auf HTTPS umstellt, dass das backend System nicht auf HTTPS umgestellt wird.

Bitte um Aufklärung. ;)

@eodclan
Copy link

eodclan commented Jan 1, 2017

Als Notlösung bitte eure .htaccess Datei ändern in folgendes:

suche in deiner .htaccess Datei:

RewriteEngine On

in folgendes ändern:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://yourdomain/$1 [R=301,L]

`

@vlaad23
Copy link

vlaad23 commented Jan 2, 2017

Hi chris,
i tried to install the cms in a shared hosting, before did that i tested on local, and seems fine.
but whenever i upload an image via admin backend (in shared hosting), why the images not appear in every section (slides, teams, partner etc) ?

i already configure the server.php and index.php into the right paths

Finally i figured out the problem my self.
in shared hosting i made the project files into 2 separate folders (in root).
the first folder is project, inside this folder are all the files except files in public folder.
the second one is public_html, inside this folder are all the files inside public folder (so basically its like changing public folder into public_html).

the problem appears when i uploaded pictures or images via backend.
the images won't appear at the front end, because when i uploaded them, the project folder creates a new public folder inside it. (it will become project/public/uploads/...)
the system should read all the images from public_html/uploads/... instead of project/public/uploads/...
that's why the problem occurs.
So, after configuring the paths on server.php and index.php,
i put this on index.php

$app->bind('path.public', function() {
return DIR;
});

and it works perfectly.

@chriskonnertz
Copy link
Member Author

@eodclan

Es scheint so, wenn man das CMS auf HTTPS umstellt, dass das backend System nicht auf HTTPS umgestellt wird.

Wie meinst du das? Was in der Tat stimmt: Wenn man HTTPS aktiviert gilt das nicht generell sondern im Grunde nur für den Login. Meinst du das?

@chriskonnertz
Copy link
Member Author

Notice: For other topics than bugs or problems with the installation, please use the v2.1 issue: #113

@eodclan
Copy link

eodclan commented Feb 21, 2017

ja das meinte ich chris.

Ich habe nun komischerweise ein neuen fehler gefunden:

SQLSTATE[HY000]: General error: 1030 Got error -1 from storage engine (SQL: insert into visits (ip, user_agents, visited_at) values (91.20.58.xxx, 1, 2017-02-21))

@chriskonnertz
Copy link
Member Author

@eodclan Hast du dazu noch mehr Infos? Wo tritt der Fehler auf bzw. wie kann man ihn erzeugen?

@Shakir86
Copy link

Shakir86 commented Apr 25, 2017

Ich habe dasselbe Problem wie eodclan.
Wenn ich im Backend auf Module klicke, haut er mir folgende Meldung um die Ohren:

`ErrorException in Collection.php line 1187: Undefined index: enabled

in Collection.php line 1187
at HandleExceptions->handleError('8', 'Undefined index: enabled', '/var/www/vhosts/******.net/esl.*******.net/vendor/laravel/framework/src/Illuminate/Support/Collection.php', '1187', array('key' => 'enabled')) in Collection.php line 1187
at Collection->offsetGet('enabled') in LocalRepository.php line 211
at LocalRepository->isEnabled('MorpheusTheme') in Modules.php line 280
at Modules->isEnabled('MorpheusTheme') in Module.php line 59
at Module->enabled() in AdminModulesController.php line 32
at AdminModulesController->App\Modules\Modules\Http\Controllers\{closure}(object(Module)) in ModelHandler.php line 218
at ModelHandler->index(array('buttons' => null, 'search' => '', 'searchFor' => 'title', 'tableHead' => array('Titel' => null, 'Aktiviert' => null, 'Status' => null), 'tableRow' => object(Closure), 'actions' => array('install', object(Closure)), 'brightenFirst' => false, 'sortby' => 'id', 'order' => 'desc', 'filter' => false, 'permaFilter' => null, 'dataSource' => array(object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module)), 'infoText' => '', 'pageTitle' => true), 'admin') in Facade.php line 219
at Facade::__callStatic('index', array(array('buttons' => null, 'dataSource' => array(object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module)), 'brightenFirst' => false, 'tableHead' => array('Titel' => null, 'Aktiviert' => null, 'Status' => null), 'tableRow' => object(Closure), 'actions' => array('install', object(Closure))), 'admin')) in BaseController.php line 381
at BaseController->indexPage(array('buttons' => null, 'dataSource' => array(object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module), object(Module)), 'brightenFirst' => false, 'tableHead' => array('Titel' => null, 'Aktiviert' => null, 'Status' => null), 'tableRow' => object(Closure), 'actions' => array('install', object(Closure)))) in AdminModulesController.php line 65
at AdminModulesController->index()
at call_user_func_array(array(object(AdminModulesController), 'index'), array()) in BaseController.php line 89
at BaseController->callAction('index', array()) in ControllerDispatcher.php line 146
at ControllerDispatcher->call(object(AdminModulesController), object(Route), 'index') in ControllerDispatcher.php line 94
at ControllerDispatcher->Illuminate\Routing\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 52
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in VerifyCsrfToken.php line 20
at VerifyCsrfToken->handle(object(Request), object(Closure))
at call_user_func_array(array(object(VerifyCsrfToken), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 102
at Pipeline->then(object(Closure)) in ControllerDispatcher.php line 96
at ControllerDispatcher->callWithinStack(object(AdminModulesController), object(Route), object(Request), 'index') in ControllerDispatcher.php line 54
at ControllerDispatcher->dispatch(object(Route), object(Request), 'App\Modules\Modules\Http\Controllers\AdminModulesController', 'index') in Route.php line 174
at Route->runController(object(Request)) in Route.php line 140
at Route->run(object(Request)) in Router.php line 724
at Router->Illuminate\Routing\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 52
at Pipeline->Illuminate\Routing\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 102
at Pipeline->then(object(Closure)) in Router.php line 726
at Router->runRouteWithinStack(object(Route), object(Request)) in Router.php line 699
at Router->dispatchToRoute(object(Request)) in Router.php line 675
at Router->dispatch(object(Request)) in Kernel.php line 246
at Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 52
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in VerifyAdminAccess.php line 37
at VerifyAdminAccess->handle(object(Request), object(Closure))
at call_user_func_array(array(object(VerifyAdminAccess), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in UpdateUser.php line 108
at UpdateUser->handle(object(Request), object(Closure))
at call_user_func_array(array(object(UpdateUser), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in ShareErrorsFromSession.php line 49
at ShareErrorsFromSession->handle(object(Request), object(Closure))
at call_user_func_array(array(object(ShareErrorsFromSession), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in StartSession.php line 64
at StartSession->handle(object(Request), object(Closure))
at call_user_func_array(array(object(StartSession), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in AddQueuedCookiesToResponse.php line 37
at AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
at call_user_func_array(array(object(AddQueuedCookiesToResponse), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in EncryptCookies.php line 59
at EncryptCookies->handle(object(Request), object(Closure))
at call_user_func_array(array(object(EncryptCookies), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request)) in CheckForMaintenanceMode.php line 44
at CheckForMaintenanceMode->handle(object(Request), object(Closure))
at call_user_func_array(array(object(CheckForMaintenanceMode), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 136
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 32
at Pipeline->Illuminate\Routing\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 102
at Pipeline->then(object(Closure)) in Kernel.php line 132
at Kernel->sendRequestThroughRouter(object(Request)) in Kernel.php line 99
at Kernel->handle(object(Request)) in index.php line 52

`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests