Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I'm working on a VPS from OVH with php Symfony 4. I use twig for my view and always work. And a couple days ago all my template is blocked on my old version.
I tried to change some other files like robots.txt, it's work fine. But when I change the HTML of my base.html.twig nothing was change. Futhermore, I tried to restart my VPS and twig still not working. I have no error message, it's working correctly on my dev env but not on my prod env. I have no error message and no clues.
I'm little bit confused, if anyone would have an idea.
Thank you in advance for your help !
Maybe it's cache. Try with:
./bin/console cache:clear
or with
rm -rf var/cache/**
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
this is the ui when running on my localhost
this is the ui when running on cpanel hosting
my question is, what is wrong with the ui? everytime i run my application on server, the sidebar always gone wrong
for little information, i use Laravel 5.6 and AdminLTE3 template.
the top navbar and the sidebar is at different .blade.php file. i combine them in master template that contains them (using #include) and the content of page (using #yield).
my master.blade.php
is there anything's wrong with my code, or, this is the bugs from adminLTE 3?
thanks for your help.
I was seen your web & I tried to understand your problem. I found 3 errors in console related to your css files. I think that problem happens because that css file errors. but i can't understand why it shown that errors in console. I attached snapshot of that error, see this below
enter image description here
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I'm trying to get changes in twig file on web page. There is some cache problem with symfony2. Cache is not being clear unless deleting app/cache folder.
Please help to solve my problem. Thanks
Disable twig cache, edit config.yml:
twig:
cache: false
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
php composer.phar install,
php composer.phar update, and
php composer.phar self-update
They all just hang and go nowhere. I wonder why
I had a php ide open with with debug on, and another running program was sitting at a breakpoint, roadblocking any php statement.
It's the second time it happened to me.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I really don't understand how it can be possible... The site angelescielo.com/candidatas was working... But I have this PHP (candidatas.blade.php... And as far as I understand the blade extension is from Laravel) ...
I updated its DOM (not even PHP code) to remove a text. But now it doesn't work anymore ... (I get a WSOD and debugging the only thing I see is a 500 error) And the only modification was to a span tag .
I've been trying to see the logs according to other posts I've seen around Internet and StackOverflow but I can't see the reason of the 500 error, I'm desperate and now I don't know where to start from.
This error is very often comes when you upload first time your website on server. In such cases changing permissions for folders helps.
Try to use this commands in terminal
sudo chmod 755 -R laravel_site
chmod -R o+w laravel_site/storage
laravel_site - is the laravel folder
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
Recently we have upgraded our PHP version in C-panel to PHP Version 5.4.36. After updation we have run the Easy Apache successfully. After that Some of the websites are getting errors in website. I am giving you some sample examples. Can you please let us know the possibilities and the solutions.
http://www.kopanaacreations.com/bollywood-replica.html
http://supremelaptopservices.com/
Prompt response will be highly appreciated.
Regards,
Subbareddy
The first one is actually an out of memory error, which means that either the images you have uploaded are too big to be processed by the GD module with your current memory settings or there is another error going on there.
The second site has errors because you have strict errors enabled (they are enabled by default on newer version of PHP)
Disabling Strict Errors
See the link above on how to rectify this!