Questions tagged [octane]

21 questions
1
vote
1 answer

Ember Octane, Tracked property not recomputing get function using the property

In emberJS Octane, I expect a "get" function to be recomputed when the used tracked properties inside of it changes. It does not in my case. Here is my template : {{#each this.model.appCategories as |appCategory|}} # Here, we call the onChange…
1
vote
0 answers

Unable to load dynamic library 'swoole'

I am trying to run laravel octane based image in php 8.1 image. but I am constantly getting an error of extension swoole.so not found swoole.so is already there in desired location and php artisan octane:start is giving some errors like function…
1
vote
0 answers

Laravel Octane concurrently very slow to resource model

I'm trying to improve the performance of my model resources. This is a simple test that without Octane corrotine takes 2 seconds. I tried to divide them and play inside a coroutine but the time that used to be 2 seconds, became 24 seconds, when in…
1
vote
1 answer

419 Page Expired with Laravel Octane, Sail, Sanctum and Dusk

After migration to Laravel Octane, the dusk tests fails with 419 Page Expired. Before the migration, everything was fine... I made the following change to the name file docker/8.1/supervisord.conf -command=/usr/bin/php -d variables_order=EGPCS…
martio
  • 121
  • 1
  • 5
1
vote
1 answer

Ember Octane on 'keyup' or 'keydown' is not firing

I have a glimmer Component in an Ember Octane app like this import Component from '@glimmer/component'; import { action } from '@ember/object'; export default class TestComponent extends Component { @action handleEvent(event) { …
Siraj Kakeh
  • 741
  • 6
  • 20
1
vote
0 answers

Laravel octane - Infinite loading on server error

When I get a server error or it encounters a dd method, the request hangs forever and no response comes. PHP: 8.0.3 Laravel: v8.62 Octane + Swoole Running in wsl2
Parsa_Gholipour
  • 794
  • 5
  • 16
1
vote
1 answer

Undefined array key "REMOTE_ADDR" in laravel octane

I am using laravel 8. Before upgarding to octane I was getting ip address in $_SERVER['REMOTE_ADDR']. After changing to octane there is no such index in $_SERVER. I am using this variable in validator of register controller ,while new user is…
1
vote
1 answer

Laravel Octane Nginx Supervisor Configuration

I've been investigating Laravel Octane as a possibility for performance improvements in an existing Laravel application and have found every 4000-5000 requests up to 15 requests are returning as failed. I currently have the laravel application…
Aaron
  • 13
  • 6
1
vote
2 answers

Is there a way to specify hostname in laravel octane

When i start octane it always use this host http ://127.0.0.1:8000 , which is usable in local development, but in production environnement i use domain name instead of localhost Is there a way to change the hostname like http ://domain.com:8000 when…
Omarname
  • 21
  • 5
0
votes
0 answers

Laravel Octane with roundrunner not recognizing .php file

i am trying to access http://127.0.0.1:8000/index.php with php artisan octane:start. but when i hit this url it shows index.php code screenshot is attached it should be redirect on landing page i am expecting it to be landing page instead of…
0
votes
0 answers

Difficulty Opening And Extracting Contents of Container File (.ORBX); Goal Is to Create Analogous Automotive Shader in Another Renderer (Redshift)

I do 3D renderings. I have some really good shaders and material setups that are already put together in a ".orbx" file format (this is Native to Octane Render). However, I would like to reverse engineer and recreate said shaders in Redshift…
0
votes
0 answers

Why i get fatal error when installing laravel octane swoole?

i want to install swoole mode in laravel octane but when in use command : pecl install swoole this error is happen Fatal error: Array and string offset access syntax with curly braces is no longer supported in C:\xampp\php\pear\PEAR\Config.php on…
Peyman Khn
  • 87
  • 1
  • 3
0
votes
1 answer

Ember.js 4.4 classic template syntax

I would like to update a project built in Ember 3.28 without Octane to version 4.4. I tried using ember-cli-update to change version and now all sorts of errors are thrown, such as template properties that must be used with @ and curly brackets…
0
votes
0 answers

Laravel Job (Without Queue) Not Dispatching With Laravel Octane

I have an "/x" api endpoint that dispatches a "MakeXJob" Job (without ShouldQueue). In local environment without Octane, it works just fine. But in Server with Octane (Swoole), does not dispatching the job. I am dispatching in command line with…
Alper
  • 152
  • 1
  • 7
0
votes
0 answers

Laravel Request Class prepareForValidation not reflected in $request->get

In a API endpoint taking "emails" as an array, I am validating values with a Request Class. In this Request class' prepareForValidation method: $this->merge([ 'emails' => array_unique($this->emails) ]); I have this lines. And a controller like…
Alper
  • 152
  • 1
  • 7
1
2