PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, May 16, 2022

[FIXED] How to prevent EasyPHP DevServer 16 to add prefix 'edsa' for alias

 May 16, 2022     alias, apache, easyphp, wordpress     No comments   

Issue

I'm coming from EasyPHP DevServer 14, with a lot of websites developed for many customers, and I used to have a custom alias 'workspace', but now, in EasyPHP 16, they made obligatory the use of a prefix 'edsa' in every defined alias, breaking my WordPress installations. How could I solve that?


Solution

It seems to be hardcoded in a code (...), but fortunately the code is in php, so you can just edit it out and be OK (until the update I guess). Go to the eds-dashboard subdirectory and edit the index.php file.

In the current version (17), the code is on the line 95:

$new_alias[0]['alias_name'] = 'edsa-' . $_POST['alias_name'];

Just remove the silly part from it

$new_alias[0]['alias_name'] = $_POST['alias_name'];

save the file and you should be done.

Tested on windows



Answered By - Daddy32
Answer Checked By - Dawn Plyler (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

1,216,226

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © 2025 PHPFixing