Show Posts


Messages - avnish

Pages: [1]
1
Hi,

I manually set up a local copy of Abantecart v 1.2.10 on Windows 10 on IIS 2-3 days back. PHP version is 7.1.1.

When i accessed admin page, I get this error:  Your server is unable to create a session necessary for AbanteCart functionality. Check logs for exact error details and contact your hosting support administrator to resolve this error.

IIS logs looks fine. The error message in Abantecart log file is same as above except it mentions issue in \core\helper\system_check.php on line 472.

Based on old posts, I did following:
I opened php.ini file from C;/windows and removed ';' in front of following statements:
session.save_path = "N;/path"
session.save_path = "N;MODE;/path"
session.save_path = "/tmp"

Then I tested session generation successfully using this script:

<?php
session_start();
$counter = isset($_SESSION['counter']) ? $_SESSION['counter'] : 0;
$counter++;
print "You have visited this page $counter times during this session";
$_SESSION['counter'] = $counter;
?>

AS per my investigation so far, its an application issue in Windows env using IIS.

Appreciate any help, i can get.

Thanks.
Avnish

2
General Support / Re: cannot access admin area
« on: April 20, 2017, 04:49:11 AM »
Hi,

I opened php.ini file from C;/windows and removed ';' in front of following statements:
session.save_path = "N;/path"
session.save_path = "N;MODE;/path"
session.save_path = "/tmp"

Then i recycled application pool and restarted the website on IIS. Then I cleared cached data from browser.

Still the issue persists.

===================
Edit: I even tried to set an absolute path: session.save_path = "C:\webhosting\tmp" and created directory with write permission to all. but nothing seems to work. Will really appreciate a resolution.

===================
Edit2: Tested session setup using this code:
<?php
session_start();
$counter = isset($_SESSION['counter']) ? $_SESSION['counter'] : 0;
$counter++;
print "You have visited this page $counter times during this session";
$_SESSION['counter'] = $counter;
?>
It worked fine. But Admin page is still not working. Shall i try to reinstall afresh or there is a good explanation?

3
General Support / Re: cannot access admin area
« on: April 20, 2017, 03:19:28 AM »
Hi,

I just manually set up a local copy of Abantecart v 1.2.10 on Windows 10 on IIS. PHP version is 7.1.1.

When i accessed admin page, I get this error:  Your server is unable to create a session necessary for AbanteCart functionality. Check logs for exact error details and contact your hosting support administrator to resolve this error.

I went through old posts for the same error but I could not understand those as I guess they are talking about apache server or linux env.

I have OTB setup, so not sure why this is not working. My other php sites work fine.

Appreciate any help, i can get

Thanks.

Pages: [1]

Powered by SMFPacks Social Login Mod