Make WordPress Core

Opened 15 years ago

Closed 15 years ago

#18103 closed feature request (duplicate)

Add support for new web server - IdeaWebServer

Reported by: utnalove's profile utnalove Owned by:
Milestone: Priority: normal
Severity: normal Version: 3.2
Component: General Keywords:
Focuses: Cc:

Description

I wrote about it here.

The hosting provider suggests to change the core files. And add

strstr($_SERVER['SERVER_SOFTWARE'], 'IdeaWebServer')) ? 1 : 0;
to the vars.php

In addition to this it looks like that in the pluggable.php file this code

	$location = wp_sanitize_redirect($location);

should be changed to this code

$location = wp_sanitize_redirect($location);
	if ($location[0] == '/')
		$location = get_bloginfo('url') . $location;

Is it possible to make these changes official in the next releases?

Change History (1)

#1 @kawauso
15 years ago

  • Milestone Awaiting Review deleted
  • Resolution set to duplicate
  • Status changed from new to closed

Duplicate: #9763

Feel free to attach an up-to-date patch for that ticket

Note: See TracTickets for help on using tickets.