Skip to content
Advertisement

Tag: php

Complete removal of php and all of it’s dependencies o RHEL7

I am trying to uninstall php and all of its modules from a RHEL7 server completely and do a clean install later. Things I have tried till now using yum – sudo yum remove ‘php*’. After the above command i can still see that php is not uninstalled. Please help. Answer You could also add this option to /etc/yum.conf: clean_requirements_on_remove=1.

What is the 4-digit octal Unix file permission system? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Closed 4 years ago. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to

Get PHP $_SESSION data in .htaccess for LiteSpeed cache

I need to send data from $_SESSION from PHP file to .htaccess for setup Vary variable for setting LiteSpeed cache. PHP script example: .htaccess example I already tried these ways: Via cookies. I set PHP variable in the cookies and get it from there in .htaccess via “RewriteCond %{HTTP_COOKIE} (.*) [NC]”. But I will have also private data which I

How to list a directory content

How to access directory files when we don’t have index file. I used this htaccess code but it worked when I mention file but I want to show directory file without insert index file. Please check my htaccess code and tell me where i am wrong thanks Answer You can use the Options configuration option. The documentations presents Options by

Linux command line for find & replace not working

Im having an issue with this code in the command line: For some reason i think it isnt working since the ’email’ but that is how the code is & i cant change it. Also im running it through the shell_exec for php. but i tried it directly and it wasnt working as well. any ideas? Answer Because you have

Yii2 call the console command not from the project folder

Hello. I created the console command in Yii2: I want to call this command in cron,and for testing I try to call it from the console, when I’m in the project folder: Everything works fine. But, if I call this command when I’m in a different directory, I get some errors. First, i got Seeing this, I commented configuration of

Using Sendmail from an external server

I have a server with a webapp and a mail server (who use sendmail to route mails). We need to migrate the webapp to an auto-scaling schema, so, I can’t have the mail server in there, so, I’m thinking on leaving the mail server right where it is now. So, to send mails I have different alternatives, I don’t want

Advertisement