Status Update
Comments
va...@google.com <va...@google.com>
ku...@google.com <ku...@google.com> #2
Hello
Thank you for reaching out to us!
This issue seems to be outside of the scope of Issue Tracker. This Issue Tracker is a forum for end users to report bugs and request features on Google Cloud products. Please go through
I recommend you to
I'm going to close this thread which will no longer be monitored. In case you want to report a new issue, please do not hesitate to create a new Issue Tracker describing your issue.
Thank you
SA...@ssomens.com <SA...@ssomens.com> #3
First I tried PHP 8.2 Flexible Environment as per Document only
runtime: php
env: flex
service: uat
runtime_config:
operating_system: "ubuntu22"
document_root: .
This one only frist we tried not worked ,so i tried with public folder.
1.Has this scenario ever worked as expected in the past?
In Past we are used php 7.3. That one worked.As per GAE, they asked to change php 8.So that we are changing our application to php 8.2.
After Changed to php 8.2 deployment only , our CSS and JS not working.
My output screenshot attached here
Google App engine Document only we are followed
In my page CSS and JS not working in PHP >7.3.
I want solution to include my CSS and JS in my application.
ku...@google.com <ku...@google.com> #4
Hello,
Thank you for your response.
I have gone through your reported issue, however it seems like this is an issue observed specifically at your end. It would need more specific debugging and analysis. To ensure a faster resolution and dedicated support for your issue, I kindly request you to file a support ticket by clicking
Please note that the Issue Tracker is primarily meant for reporting commonly observed issues and requesting new features. For individual support issues, it is best to utilize the support ticketing system. I'm going to close this issue which will no longer be monitored. If you have any additional issues or concerns, please don’t hesitate to create a new issue on the
ma...@gmail.com <ma...@gmail.com> #5
SA...@ssomens.com <SA...@ssomens.com> #6
SA...@ssomens.com <SA...@ssomens.com> #7
I am not able to use PHP 8.2 in GAE Flexible Environment.Still facing that issue.Can anyone help me about this.
so...@gmail.com <so...@gmail.com> #8
SA...@ssomens.com <SA...@ssomens.com> #9
I checked out your workaround solution by changing nginx.app.config.But only static files serving only working.While caling AJAX POST response "405 Not Allowed from nginx server".
Can you please tell solution for that.
Description
Pls give me the solution for php 8.2 deployment
My app.yaml
runtime: php
env: flex
service: uat
runtime_config:
operating_system: "ubuntu22"
document_root: public
handlers:
- url: .*
script: index.php
My Index.php
<?php
echo phpinfo();
?>
<html>
<head>
<script src="JS/jquery-3.6.4.min.js"></script>
<link rel="stylesheet" type="text/css" href ="CSS/StyleSheet.css" />
<script>
$(document).ready(function(){
alert('inside');
})
</script>
</head>
In my sample I included JS file and in document ready i put alert for checking.
JS and CSS not working
File Structure I attached
Am waiting for your valuable response.