我正在使用Opencart 2.3.0.2,只是安装在localhost中并且还创建了一个数据库。在安装过程中,我为admin提供了用户名和密码。但管理方面没有得到。 当我写他的url localhost / mysitename / admin它重定向到localhost / admin ..
答案 0 :(得分:1)
您需要打开.htaccess文件并更改说明您的eshop安装位置的行。
默认为:
// service
tiempotransCurrido$() {
return Rx.Observable.interval(1000).map(segundos => segundos * 1000);
}
// component
tiempotransCurrido$ = tiempoService.tiempotransCurrido$();
// template
<h5>{{tiempotransCurrido$ | async | date:'mm:ss'}}</h5>
但在您的情况下,您需要将其更改为:
private void button2_Click(object sender, EventArgs e)
{
Cursor = Cursors.WaitCursor;
logBox.Text += "My text";
logBox.Refresh();//This will display the modifications
try
{
ping thing;
}
catch
{
}
}
答案 1 :(得分:0)
请检查根文件夹中的.htaaccess文件。打开文件并在下面的行中进行更改 -
RewriteBase /
将以上行更改为以下代码 -
RewriteBase /mysitename
希望它会有所帮助。如有任何疑问或问题,请随时询问。
答案 2 :(得分:0)
检查您的admin/config.php
文件。你想要这样的东西:
// HTTP
define('HTTP_SERVER', 'http://localhost:8888/YOURSITE/upload/admin/');
define('HTTP_CATALOG', 'http://localhost:8888/YOURSITE/upload/');
// HTTPS
define('HTTPS_SERVER', 'http://localhost:8888/YOURSITE/upload/admin/');
define('HTTPS_CATALOG', 'http://localhost:8888/YOURSITE/upload/');
我假设你正在使用MAMP / WAMP;如果没有,请留下端口号。