Questions tagged [extension]

67 questions
0
votes
1 answer

How to configure Ajenti V hosted website with extension less URL

I am trying ways to configure my website to be extension less. That is when .php or .html files are visited, it'll be redirected to an URL without the extension. Eg: www.mywebsite.com/products.php will redirect to www.mywebsite.com/products Anyone…
darkkean
  • 11
  • 1
  • 4
0
votes
0 answers

Nginx urls that maps to php files?

I'm trying to configure my nginx server such that any php file will be accessible without giving it's extension. I'm already aware of many similar questions/answers like…
Cyril N.
  • 624
  • 1
  • 10
  • 36
0
votes
1 answer

.Htaccess - File extension gets not removed

I'm using the .htaccess below to remove the .html file extension but if someone types in example.com/test into the browser it redirects to http://www.example.com/test.html . Why does the .html gets added and not removed? RewriteEngine…
Tom
  • 1
  • 1
0
votes
1 answer

PHP 5.4.9 Mysqli issue

On Ubuntu 12.04 server I had PHP 5.4.9 installed from the source: ./configure --prefix=/etc/php --with-apxs2=/etc/apache2/bin/apxs --with-config-file-path=/etc/php --with-config-file-scan-dir=/etc/php/conf.d --with-libxml-dir=/usr/local/libxml2…
0
votes
1 answer

php always trying to load extensions from relative path

PHP is always trying to load extensions from a relative path. For example: php.ini extension=/vld.so Warning: PHP Startup: Unable to load dynamic library './/vld.so' - .//vld.so: cannot open shared object file: No such file or directory in Unknown…
Zulakis
  • 4,153
  • 14
  • 48
  • 76
0
votes
1 answer

match 2 numbers in extensions at asterisks dialplan

is there a simple way to match something like this: exten => _+380XXXXXXXXX,1,NoOp(hint that) exten => _0XXXXXXXXX,1,NoOp(hint that) this two extensions matches same number with or without +38 prefix. is there any rule to mutch like…
MealstroM
  • 1,517
  • 1
  • 17
  • 32
0
votes
2 answers

PHP libevent on Windows

How can I install libevent on Windows? Tryed to make this via PECL but got an error "WARNING: php_bin C:\PHP\php.exe appears to have a suffix .exe, but config variab le php_suffix does not match"
0
votes
1 answer

Which is the most efficient way (performance) to add functionality to MediaWiki?

I know of three ways to enhance MediaWiki functionality: Using extensions. Using templates. Changing MediaWiki:Common.css & MediaWiki:Common.js My question is, when I can choose which to do, which is best for performance? Obviously, templates only…
0
votes
0 answers

Add slash to end of url except of images, css, js, and xml and preserving the port

I am trying to add slashes to the end of all the url on my site except for files with extensions (all images type, css, js, xml), all while preserving the port for my local env. This is the behavior I am looking for: In production: …
Xenophiliac
  • 117
  • 1
  • 7
0
votes
1 answer

Chrome enterprise set custom setting for extension

We have developed a browser extension and wish to distribute it. A license key is required to use our chrome extension. This value should be set by the system administrators and not by individual end users. How can we let administrators pass the…
Dani-san
  • 111
  • 4
0
votes
1 answer

ERROR:Deploying ARM-'requireGuestProvisionSignal' is not valid because the 'Microsoft.Compute/Agentless' feature is not enabled for this subscription

I'm trying to deploy a windows server VM using ARM Template and I have configured the OS progile as below. "windowsConfiguration": { "provisionVmAgent": true, "enableAutomaticUpdates": true, …
0
votes
2 answers

RHEL PHP 7.3.5 with mysqlnd and apache

I'll start by stating I'm not a server admin by trade, so I've been struggling with this task. PHP 7.3.5 was already installed on RHEL7 running Apache. I have installed MySQL successfully and now I am tasked with connecting to the MySQL DB from PHP.…
Dan
  • 101
  • 5
0
votes
1 answer

Installing the Scripting Extension Python - SNAPSHOT JARs

I am trying to install the Geoserver Scripting Extension - Python (description). After downloading geoserver-2.17-SNAPSHOT-python-plugin (my Geoserver is 2.17.0) I followed the instructions: Extract the contents of the archive into the…
ill
  • 101
  • 3
0
votes
1 answer

php_http.dll not Found on Windows 10 Machine

So, I'm pretty stumped on why PHP can not find the php_http.dll extension that I put in my ext folder. I am currently using PHP 7.2, and I am working locally and using PHP's built-in web server. I downloaded the http extension from its PECL page. I…
0
votes
0 answers

Installing PCNTL module for PHP7.4 on Amazon Linux

I'm using amazon linux2 and trying to install pcntl extension for php7.4.9. There are no package for pcntl after run yum search pcntl, so I manually copied file pcntl.so to /usr/lib64/php/modules and created /etc/php.d/20-pcntl.ini, file. But I got…
HoangNK
  • 1
  • 2