Questions tagged [extension]

69 questions
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.
  • 574
  • 1
  • 9
  • 33
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,191
  • 14
  • 44
  • 75
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
  • 16
  • 31
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
0 answers

Azure Storage Lifecycle Management Policy - Filter by Extension

I want to utilize Lifecycle Management (LCM) policies on one of our storage accounts, mainly switch from cool tier to archive tier after X days. I have various blobs in this storage account as well as folders. I only want to apply the LCM policy to…
jrd1989
  • 628
  • 10
  • 35
0
votes
0 answers

Is it possible to screening files in domain computer storages with FSRM?

We do not want to copy specific file extenstions in domain computer storages (for example D: drive). We have been using FSRM in shared folders, but is it possible use FSRM for controlling domain computer storages ?
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.…
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…