Show Posts


Messages - gswan

Pages: [1]
1
SEO / Adding meta keywords to content pages
« on: November 10, 2017, 12:39:34 AM »
Is there a way of adding a meta "keywords" tag to the content pages?

The keywords setup in the admin interface appear nicely on the home page, however I was hoping to add further keywords to various content pages, separately from those on the home page. 
I cannot see a way of doing this in the admin interface, and checking the resulting source of the page when rendered, there is no meta tag for keywords present.

Any advice appreciated.

2
General Support / Re: Admin timeout login URL HTTPS_SERVER
« on: November 09, 2017, 06:47:09 PM »
Once the "SEO URL's" setting was enabled (and .htaccess included) the problem is no longer present.


3
General Support / Re: Admin timeout login URL HTTPS_SERVER
« on: October 10, 2017, 10:49:30 PM »
I ended up finding this in the code (html.php), and there does not appear to be any check to see if HTTPS_SERVER is actually defined.

               
public function getURL($rt, $params = '', $encode = '') {
      if (isset($this->registry->get('request')->server['HTTPS'])
            && (($this->registry->get('request')->server['HTTPS'] == 'on') || ($this->registry->get('request')->server['HTTPS'] == '1'))) {
         $server = HTTPS_SERVER;
      } else {
         //to prevent garbage session need to check constant HTTP_SERVER
         $server = defined('HTTP_SERVER') ? HTTP_SERVER : 'http://' . REAL_HOST . get_url_path($_SERVER['PHP_SELF']);
      }


4
General Support / Re: Admin timeout login URL HTTPS_SERVER
« on: June 26, 2017, 11:12:20 PM »
Checked apache settings and .htaccess rewrite rules. Nothing there.
It looks more like a string coming from PHP, where HTTPS_SERVER is supposed to be defined somewhere, but isn't.



5
General Support / Admin timeout login URL HTTPS_SERVER
« on: June 16, 2017, 10:01:34 PM »
Hi,
I am using abantecart 1.2.8, php-5.6.30.

After leaving the admin console to timeout it appears to redirect to the admin login page, however it has the string "HTTPS_SERVER" in the URL.
If I manually remove the string I get the admin login page.
Example: HTTPS_SERVERindex.php?rt=index/

The server URL's are configured and SSL is enabled in the settings. Is there anywhere else I should be looking for where this comes from?

Pages: [1]

Powered by SMFPacks Social Login Mod