Symptoms

The store is configured to use parallels color palette, the store URL has some postfix, e.g. /store. When clicking "Search" from the main store page (trying to register the domain), an apache 404 Not Found error is returned.

alttext

Cause

You are redirected to a wrong URL (without prefix), due to the bug with id #PBA-62171 ("Button "Check" on the main store page leads to wrong path").

Resolution

Make changes in the parallels_index.tpl layout template, add {$SCRIPT_DIR} to the line below:

 <form action="/index.php?NAME_PATH={$domain_path}&SCREEN={$domain_screen}" method="post" id="operation_0" onsubmit="setDomainZone(dz_array, this.id); return ValidateForm('operation_0', event);"> 

so that it looks like:

<form action="{$SCRIPT_DIR}/index.php?NAME_PATH={$domain_path}&SCREEN={$domain_screen}" method="post" id="operation_0" onsubmit="setDomainZone(dz_array, this.id); return ValidateForm('operation_0', event);"> 

and synchronize the store.

Internal content