Winginx is a local web-server specially for nginx users, it also serves PHP5, MySQL, MongoDB, NodeJS developers.
Questions tagged [winginx]
46 questions
0
votes
0 answers
How to conncect Oracle with PHP under Winginx?
I want to use PHP to connect to Oracle, but get an error:
Fatal error: Call to undefined function oci_connect()...
I searched in Google, and get that the OCI is not enabled in PHP, but after install Ora10InstantClient & enable…

July
- 1
- 2
0
votes
1 answer
winginx server software, latest version (0.6.3.1), wont start
been a while.
I've noticed there's been an update on Winginx server software, so i downloaded latest version last day and re-installed. Everything was fine after the install, started right after without trouble. After i re-booted my laptop, as…

Hyperion
- 5
- 3
0
votes
1 answer
NGINX url rewrite - remove /web/guest/
I need to remove /web/guest/ from all urls on a portal via nginx.
Currently urls looks like…

RMP
- 15
- 1
- 6
0
votes
1 answer
How can i add hsts for a mixed website with http and https?
Webserver using is nginx
Suppose i have a website http://www.test.com. and then there is https://test.com?market.
Iam redirecting all https to 301 http for test.com
Suppose i want to enable https strict transport security header for url
.I can…

melvil james
- 592
- 7
- 18
0
votes
1 answer
Error creating new project in Winginx (Hm stops working) - Windows 8.1 64-bit
I installed Winginx in Windows 8.1 64-bit, the server operates normally, but can not create a new project:
When i try to create a new project, after entering all the information and click create, i get a Windows message that Hm stopped working.
Has…

Jaime
- 1
- 2
0
votes
1 answer
Upgrade MySQL to 5.5 or above
I am trying to upgrade MySQL to 5.5 or above but having problems as mysqld in not in mysql/bin and after upgrading it cant find the right file locations.

David Kitchen
- 3
- 2
0
votes
1 answer
How to enable mod_rewrite in winginx server
I've installed winginx server in my windows xp system, I've created a wordpress site, which works perfectly fine, but the main issue is wordpress permalinks are not working.
I've browsed various sites regarding this issue. But I'm unable to solve…

user3914898
- 1
- 1
0
votes
2 answers
How to create different vhosts on nginx? (WINDOWS)
So far I'm using this configuration for a server block
server {
listen 80;
server_name mydomain.com;
root /D:/www;
}
But it's giving me this error
403 Forbidden
nginx/1.5.12
Apparently it's reading the vhost, but it's not reading the right…
user3486319
0
votes
2 answers
memcached not working on winginx
I am planning to try out memcached with winginx on windows 7. I have the following configuration currently:
location / {
root home/$host/public_html/static;
try_files $uri @def;
}
location @def {
…

Hrishikesh_Pardeshi
- 995
- 4
- 19
- 45
0
votes
1 answer
stuck on nginx location directive
I am working on windows and using Winginx, modifying the nginx.conf file under conf folder. I have changed up the server block listening to port as follows:
server{
listen 127.0.0.1:80;
log_not_found off;
charset utf-8;
access_log…

Hrishikesh_Pardeshi
- 995
- 4
- 19
- 45
0
votes
2 answers
How to access /cygdrive/c in nginx?
I am trying with Nginx under windows; it requires the file located in the /cygdrive/c.
If I installed cygwin, then everything is file. I am wondering if I can use Nginx without cygwin? How to specify the file in the location like c:\nginx

Adam Lee
- 24,710
- 51
- 156
- 236
0
votes
2 answers
Installing PEAR + PHPUnit under WINGINX
I need PHPUnit and according to their GitHub page I need to use PEAR to install it.
Problem is, PEAR is not installed by default on WINGINX nor does my PHP folder have a go-pear.bat file as mentioned here:…

Wouter Dorgelo
- 11,770
- 11
- 62
- 80
0
votes
1 answer
Where to place NGINX host configuration file?
I've used WINGINX to install NGINX, PHP-FPM, MySQL, MongoDB, NodeJS and MemcacheD on my Windows machine.
In the Yii Framework documentation I've found the following host configuration code:
server {
set $host_path "/www/mysite";
access_log …

Wouter Dorgelo
- 11,770
- 11
- 62
- 80
-1
votes
1 answer
Can winginx be trusted?
I recently installed winginx, because I wanted to try it out as an alternative to XAMPP.
I pressed yes on every confirmation for the software to "make chances to my computer", so that it could change the host files for me, even tho I could do it…

Alex
- 5,671
- 9
- 41
- 81
-2
votes
1 answer
Deploy php project on localhost
I'm trying to deploy php project on localhost using Winginx
Now poking around this php code
public static function compareIP( $ip, $mask )
{
$arr1 = ( ".", $ip );
$arr2 = ( ".", $mask );
$good = true;
$i = 0;
while ( $i < ( $arr1…

im_infamous
- 972
- 1
- 17
- 29