Search found 8624 matches
- 05 Nov 2015, 21:07
- Forum: Laravel package
- Topic: How to protect admin routes
- Replies: 1
- Views: 3711
Re: How to protect admin routes
But the admin board still opens up without authentication. That's a very good question! ;-) Laravel offers the authentication middleware (you can add it in ./config/shop.php -> "routes" config) but it has no way to make a difference for user and admin authentication. This means that an au...
- 05 Nov 2015, 20:55
- Forum: Laravel package
- Topic: Return Email Data
- Replies: 3
- Views: 5195
Re: Return Email Data
Our client wants us to send emails via Mandrill. I was wondering if there was a way to get the raw data from the Email templates to send to Mandrill - there are a lot of config files to battle with and I don't know where to start! If I understand Mandrill correctly, it's a service for sending e-mai...
- 04 Nov 2015, 21:25
- Forum: Laravel package
- Topic: Admin interface stuck?
- Replies: 17
- Views: 31041
Re: Admin interface stuck?
I modified composer.json to install Bestmomo\Scafold so as to have the app.blade.php etc. I ran composer update I modified app.php to include the Bestmomo Scafold provider. Can you redo the whole stuff but leave out the Bestmomo stuff? You can create the app.blade.php according to the docs: https:/...
- 03 Nov 2015, 14:12
- Forum: Laravel package
- Topic: Admin interface stuck?
- Replies: 17
- Views: 31041
Re: Admin interface stuck?
I attached a screenshot of the XHR requests. I can grab the other requests also if needed - 80 total There are a lot of XHR request that are not related to Aimeos. Did you've integrated it into another application? If yes, could you please make a setup of Laravel/Aimeos only first? The only Aimeos ...
- 03 Nov 2015, 09:02
- Forum: Laravel package
- Topic: Admin interface stuck?
- Replies: 17
- Views: 31041
Re: Admin interface stuck?
Something seems to be really messed up. Can you make a screenshot of the loaded URLs in the "Network" tab from the Chrome developer tools, please?swpierce wrote:Code: Select all
Uncaught SyntaxError: Unexpected token < admin:1
- 03 Nov 2015, 08:57
- Forum: Laravel package
- Topic: Can not install Aimeos-Laravel package in fresh Laravel 5.1
- Replies: 2
- Views: 4553
Re: Can not install Aimeos-Laravel package in fresh Laravel
I think you've used "localhost" as host parameter which causes MySQL to try Unix domain sockets first. But it seems there's no socket in the standard location (usually /var/lib/mysql/mysql.sock). Please try "127.0.0.1" instead which enforces using TCP/IP.
- 02 Nov 2015, 23:58
- Forum: Laravel package
- Topic: Admin interface stuck?
- Replies: 17
- Views: 31041
Re: Admin interface stuck?
<b>Deprecated</b>: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in <b>Unknown</b> on line <b>0</b><br /> The HTTP_RAW_POST_DATA...
- 02 Nov 2015, 15:30
- Forum: Laravel package
- Topic: Admin interface stuck?
- Replies: 17
- Views: 31041
Re: Admin interface stuck?
Can you post the request and response of the XHR call that caused the JSON decode error?swpierce wrote:The only error I see is a JSON decode error:
- 02 Nov 2015, 09:05
- Forum: Laravel package
- Topic: Admin interface stuck?
- Replies: 17
- Views: 31041
Re: Admin interface stuck?
Fixed the blank page issue - storefront working again. Still unable to access to admin pages. Anywhere else I might look for an error? What was the error that caused the problem in the front-end? Did you've checked the XHR requests that the admin interface is sending to the server and their respons...
- 01 Nov 2015, 13:37
- Forum: Laravel package
- Topic: Admin interface stuck?
- Replies: 17
- Views: 31041
Re: Admin interface stuck?
The admin page will load, and I can click on all of the tabs (except Catalog - that is grayed out) but I can't see any data. I only get a box in the middle of the screen that says "Loading..." Might be due to a HTTP 500 error. If you have Chrome or Firefox, please have a look into the dev...