Search found 23 matches

by D-Cell
05 Feb 2019, 19:36
Forum: Laravel package
Topic: How to retrieve siteid in custom controller?
Replies: 2
Views: 2001

Re: How to retrieve siteid in custom controller?

I`m sorry, i forgot to provide my system info.
My Laravel version is 5.7.24, Aimeos version is 2019.01.1
System is Linux Fedora 29, PHP 7.2.13, Mariadb 10.2.19, Nginx.
by D-Cell
05 Feb 2019, 10:45
Forum: Laravel package
Topic: How to retrieve siteid in custom controller?
Replies: 2
Views: 2001

How to retrieve siteid in custom controller?

Hello! The question may sound silly, but how can i retrieve parameters like Aimeos "siteid" and "site" in controllers, which are not related to Aimeos? For example i provide one of my cases - in my Laravel app there is a PostController. Some methods of this controller are used in...
by D-Cell
31 Jan 2019, 09:38
Forum: Laravel package
Topic: Error on Customers and Products page in admin panel.
Replies: 2
Views: 990

Re: Error on Customers and Products page in admin panel.

Sorry to trouble! The problem has gone. I dont know what was the reason, but i don`t see any error after i restarted mysql, php-fpm and nginx services :)

So if someone faces the same trouble after update, please restart the server first.

Aimeos, please, mark the topic as solved)
Thank you!
by D-Cell
30 Jan 2019, 17:56
Forum: Laravel package
Topic: Error on Customers and Products page in admin panel.
Replies: 2
Views: 990

Error on Customers and Products page in admin panel.

Hello, Aimeos team! I would like to say thank you for the major update of Aimeos. :) Today i updated my Laravel/Aimeos to the latest versions. Everything seems to go well, but when i open Customers and Products pages in my admin panel, there is an error on the top: Error SQLSTATE[42S22]: Column not ...
by D-Cell
24 Jan 2019, 16:50
Forum: Laravel package
Topic: Using several domains with multishop.
Replies: 1
Views: 987

Using several domains with multishop.

Hello! First of all, i would like to say thank you for your help in my previous topics. Now i`m working with multishop and configured a few test shops using one Aimeos instance. At this moment their URLs are looking like mydomain.com/shop1/list and mydomain.com/shop2/list. Please tell me, is it poss...
by D-Cell
23 Jan 2019, 17:51
Forum: Laravel package
Topic: What is the best way to create blog within Aimeos?
Replies: 5
Views: 2524

Re: What is the best way to create blog within Aimeos?

For the frontend, you can use the app.blade.php file you've created for Aimeos. Either extend from that file or assign the rendered blog to the view property named "content". For the backend, you can add a new Aimeos admin client that implements create/search/save methods like this one: h...
by D-Cell
22 Jan 2019, 14:00
Forum: Laravel package
Topic: What is the best way to create blog within Aimeos?
Replies: 5
Views: 2524

Re: What is the best way to create blog within Aimeos?

The requirements of a blog are very different from a shop so Aimeos won't help you much. You should check if there's any Laravel blog package that fulfills your needs or your take a look at that one: https://cms.grafite.ca/ Hello! Thank you for reply! Now i`m writing my own simple blog based on sim...
by D-Cell
22 Jan 2019, 08:14
Forum: Laravel package
Topic: What is the best way to create blog within Aimeos?
Replies: 5
Views: 2524

Re: What is the best way to create blog within Aimeos?

Sorry! I forgot to provide info about my environment.
I work with Linux Fedora 28, PHP 7.2.13, Mariadb 10.2.19, Nginx. Laravel 5.7.18 and Aimeos 2018.10.3
by D-Cell
21 Jan 2019, 17:40
Forum: Laravel package
Topic: What is the best way to create blog within Aimeos?
Replies: 5
Views: 2524

What is the best way to create blog within Aimeos?

Hello! I`m thinking about to create a blog for my Aimeos website, so i would like to ask - which way is the best? Should i create a simple CRUD as i usually do with laravel and extend my views with aimeos views? If so, than how to integrate such blog into Aimeos admin panel? Or, may be, there is som...
by D-Cell
18 Dec 2018, 08:49
Forum: Laravel package
Topic: Error during install demo data
Replies: 5
Views: 2490

Re: Error during install demo data

That's a bug in the current Doctrine DBAL library (2.9.1): https://github.com/doctrine/dbal/issues/3410 You can add this to your composer.json file to use the previous version instead until a new one is released: "doctrine/dbal": "v2.9.0" Thank you! Your solution works perfect! ...