Good morning, I'm facing an error that occurs after I hosted my gesior. What happens is that when I click on create account the page is directed to the link ( ErrorDocument 404 http://127.0.0.1/?subtopic=error ) that I found in .htacess
When I copy the link to directly access the create account page, the error does not occur and when I access the hosted site on my pc, this error does not occur.
The error only happens when I click on the "Create Account" button. Does anyone know if I have to redirect the button as the site is now hosted?


.htacess
accountmanagement.php
When I copy the link to directly access the create account page, the error does not occur and when I access the hosted site on my pc, this error does not occur.
The error only happens when I click on the "Create Account" button. Does anyone know if I have to redirect the button as the site is now hosted?


.htacess
Lua:
AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType application/x-font-woff .woff
Header set X-Content-Type-Options "nosniff"
Header set X-FRAME-OPTIONS "SAMEORIGIN"
Header set X-XSS-Protection "1; mode=block"
Header set Cache-Control "public, max-age=60"
# Security to css and js files
<FilesMatch "\.(html|htm|js|css|png|jpeg|jpg|gif|pdf|zip)$">
FileETag None
<ifModule mod_headers.c>
Header set Cache-Control "public, max-age=1000"
</ifModule>
</FilesMatch>
RewriteEngine on
Options All -Indexes
#Error Document
ErrorDocument 403 http://127.0.0.1/?subtopic=error
ErrorDocument 404 http://127.0.0.1/?subtopic=error
ErrorDocument 500 http://127.0.0.1/?subtopic=error
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Post automatically merged:
accountmanagement.php
PHP:
<table class="InnerTableButtonRow" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td></td>
<td align="right" style="padding-right:7px;width:100%;">
<form action="?subtopic=accountmanagement&action=createcharacter" method="post" style="padding:0px;margin:0px;">
<input type="hidden" name="selectedcharacter" value="Draz Mytos">
<div class="BigButton" style="background-image:url(' . $layout_name . '/images/global/buttons/sbutton.gif)">
<div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(' . $layout_name . '/images/global/buttons/sbutton_over.gif);"></div>
<input class="ButtonText" type="image" name="Create Character" alt="Create Character" src="' . $layout_name . '/images/global/buttons/_sbutton_createcharacter.gif">
</div>
Last edited: