Greetings I have a problem with my application in CodeIgniter 4, recently I moved all my websites to Heroku and for this website what is built in CodeIgniter 4 https://myconfessio.com/ only the index/home page look right but when I try to go to another page or do something else I get the error Not Found The requested URL was not
Tag: heroku
HEROKU error: During inheritance of ArrayAccess
This is the log of heroku, previous version of my code was running perfect but I change some code and have this error. Rollback is no t solution same error now… Answer I got the exact same error recently. My local php version is 8.0.13 and it is working fine, but when I uploaded it to heroku (the php version
Data not passed correctly from Laravel controller to blade view **ONLY IN PRODUCTION**
I have recently encountered a problem with my Laravel application when deployed to Heroku. Just to note, this has been working just fine in production until very recently. The above snippets still work as intended in dev using Laravel Valet; However, in production, the $isFollowing variable is always returned to the view as bool(false) regardless of whether the data shows
Upload image to AWS s3 storage from Laravel showed Heroku Server 500 Error
I’ve added AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_DEFAULT_REGION AWS_BUCKET in Heroku and the according value to Heroku Config Vars. Then, I uploaded image to ‘/images’ folder on s3. After that, Heroku server showed the following error: server error 500 title server error 500 specific Is there anyone can help me explain what’s going on? Thanks a lots. I’m trying figure out… UPDATE: Here
Is it possible to upload a file to Dropbox without storing it on my server first using PHP?
Currently, I have a PHP app running on Heroku using a Postgresql database. I want my users to be able to upload an image to a folder on my dropbox, and store other information (in this case, product information such as price, title, weight, location of the image on dropbox) on my database. Right now, I’m using a file input
Cannot connect database to heroku with PHP
I am not able to connect my database(.sql) file to heroku. I am using PHP for connecting database and frontend of webpage. The heroku page is showing the static site and for login page, it’s showing error while registering new user. It’s working perfectly fine when I run it on xampp server. On clicking submit button of a form on
Heroku PHP Immediately Consuming all of the memory
I have a Heroku 1X dyno that immediately consumes all of its memory upon restart. Here is the restart in the log: My procfile is just: My .user.ini is: None of this code is set to run in the background, it’s just an API that handles requests. And yet it’s immediately consuming the maximum memory and throwing R14 errors with
Heroku – View Not Found – FileFinderView InvalidArgumentException
This is consuming the last 2 days of my life. Locally everything is working fine but when my code is deployed to Heroku, Laravel can’t find the index view. It’s my understanding this is some caching issue, so I have tried most of Artisan’s commands to clean the cache: This is my route, I’m serving a SPA: And this is
Dokku: PHP extension mbstring is missing when deploying Laravel application
I am still getting this error below saying that PHP extension mbstring is missing when deploying my Laravel application (version 6.17.1) using Dokku (version 0.18.3) even though I have followed the …
Heroku : FFMpeg installed but php worker can’t find it
Context I’ve a RabbitMQ’s queue that contains AMQPMessage, those messages are referencing a video that needs to be treated (cut essentially and encoded in x264 also) Here’s the code that cause the …