Search found 29 matches

by mahmoud
10 Sep 2024, 12:30
Forum: Laravel package
Topic: how to get the complete structure of JSONAPI
Replies: 3
Views: 7331

Re: how to get the complete structure of JSONAPI

thanks. i have to extract JsonAPI structure from every standard.php file ? for example for catalog: private array $searchConfig = array( 'id' => array( 'code' => 'catalog.id', 'internalcode' => 'mcat."id"', 'label' => 'ID', 'type' => 'int', 'public' => false, ), 'catalog.siteid' => array( ...
by mahmoud
09 Sep 2024, 00:41
Forum: Laravel package
Topic: how to get the complete structure of JSONAPI
Replies: 3
Views: 7331

how to get the complete structure of JSONAPI

Hi, I'm using aimeos/aimeos-headless to create my e-commerce with vue 3 and Typescript , to handle the code i created a types.ts file with the structure like below from the like https://aimeos.org/docs/2024.x/frontend/jsonapi/ , but that not compete and manually, can you give me the complete jsonAPI...
by mahmoud
27 Aug 2021, 21:08
Forum: Laravel package
Topic: theme with multi-site does not work
Replies: 9
Views: 8578

Re: theme with multi-site does not work

I think I didn't explain it well. In my laravel application i have 4 themes (devotheme1,devotheme2,devotheme3,devotheme4) in packages folder. ... ├── packages │└── devotheme1 │ └─composer.json │└── devotheme2 │ └─composer.json │└── devotheme3 │ └─composer.json │└── devotheme4 │ └─ composer.json the ...
by mahmoud
27 Aug 2021, 13:25
Forum: Laravel package
Topic: theme with multi-site does not work
Replies: 9
Views: 8578

Re: theme with multi-site does not work

{ "name": "aimeos-themes/devotheme1", "description": "Aimeos devotheme1 extension", "keywords": ["aimeos", "extension"], "type": "aimeos-extension", "license": "LGPL-3.0", "prefer-stab...
by mahmoud
27 Aug 2021, 03:46
Forum: Laravel package
Topic: theme with multi-site does not work
Replies: 9
Views: 8578

Re: theme with multi-site does not work

Thank you very much for your answer, I followed the steps it displays: "repositories": [{ "type": "composer", "url": "https://packages.aimeos.org/aimeoscom", "devotheme1": { "type": "path", "url": "package...
by mahmoud
25 Aug 2021, 22:39
Forum: Laravel package
Topic: theme with multi-site does not work
Replies: 9
Views: 8578

Re: theme with multi-site does not work

Hi, Now My project configration: "php": "^7.3|^8.0", "aimeos/ai-cms-grapesjs": "2021.07.4", "aimeos/aimeos-laravel": "~2021.07", "fideloper/proxy": "^4.4", "fruitcake/laravel-cors": "^2.0", "guzz...
by mahmoud
01 Jun 2021, 21:52
Forum: Laravel package
Topic: theme with multi-site does not work
Replies: 9
Views: 8578

theme with multi-site does not work

Hello, windows 10: 64 PostgreSQL 9.6.15 Laravel Framework 8.37.0 PHP 7.4.16 "php": "^7.3|^8.0", "aimeos/aimeos-laravel": "dev-master", I modified the theme in my own extension everything works fine, I switched to multi-site mode, the theme of my own extension ...
by mahmoud
02 May 2021, 00:13
Forum: Help
Topic: postgresq connexion error
Replies: 3
Views: 3757

Re: postgresq connexion error

Hi, Now I can say that (in hosted mode) the connection to a postgresql database is only done through port 5432 , even we change the port in .env and shop.php. it does not accept ports other than 5432 (if the website is hosted). but in local mode works perfectly. i only changed the server port and .e...
by mahmoud
01 May 2021, 19:00
Forum: Help
Topic: postgresq connexion error
Replies: 3
Views: 3757

Re: postgresq connexion error

Thank you for the reply. I use GIT including .env. File: .gitignore /node_modules /public/hot /public/storage /ext/devoext/vendor /storage/*.key /vendor .env.backup .phpunit.result.cache docker-compose.override.yml Homestead.json Homestead.yaml npm-debug.log yarn-error.log In my post: git push origi...
by mahmoud
01 May 2021, 01:41
Forum: Help
Topic: postgresq connexion error
Replies: 3
Views: 3757

postgresq connexion error

Hi "php": "^7.3|^8.0", "aimeos/ai-cms-grapesjs": "dev-master", "aimeos/aimeos-laravel": "dev-master", DB: Postgresql. i use the same configuration (.env and shop.php) in the local version and hosted version. One DB Postgresql 9.6 in Virtual...