-
AuthorPosts
-
Arvind Chauhan Moderator
Arvind Chauhan
- Join date:
- September 2014
- Posts:
- 3835
- Downloads:
- 74
- Uploads:
- 92
- Thanks:
- 1240
- Thanked:
- 1334 times in 848 posts
May 7, 2012 at 11:52 am #451848JA Lens beta 2.0 is out fixing the issues reported. Please check the changelog.
http://pm.joomlart.com/secure/ReleaseNote.jspa?projectId=12880&version=15073
Regards
Arvind
November 21, 2013 at 8:39 pm #513049the problem is not solved. I have just downloaded and installed the joomla 3 version and im havving the same problem
Manos ModeratorManos
- Join date:
- February 2014
- Posts:
- 2806
- Downloads:
- 46
- Uploads:
- 56
- Thanks:
- 200
- Thanked:
- 633 times in 576 posts
November 21, 2013 at 8:51 pm #513051Can you please provide more info ?
November 21, 2013 at 9:15 pm #513052now i have hust updated to joomla 3.2 and the hole thing just croushed!!!
Manos ModeratorManos
- Join date:
- February 2014
- Posts:
- 2806
- Downloads:
- 46
- Uploads:
- 56
- Thanks:
- 200
- Thanked:
- 633 times in 576 posts
November 21, 2013 at 9:17 pm #513053Hello,
Is this on localhost or a live server ?
Can you please share with us your server settings ? PHP version etc ?Regards
Manos
November 21, 2013 at 9:21 pm #513056Something happend the same time i was updating to j3,2(in case the layout problem was to be fixed)
now i have this
Fatal error: Call to a member function get() on a non-object in /home/expose/public_html/new/plugins/system/remember/remember.php on line 94Manos ModeratorManos
- Join date:
- February 2014
- Posts:
- 2806
- Downloads:
- 46
- Uploads:
- 56
- Thanks:
- 200
- Thanked:
- 633 times in 576 posts
November 21, 2013 at 9:22 pm #513057That indicates php problems, can you please let me know the php version you have on your server ?
Regards
Manos
November 21, 2013 at 9:25 pm #513058i have have recently moved to 5.3 just to use the ja lens template.
5.3.27Manos ModeratorManos
- Join date:
- February 2014
- Posts:
- 2806
- Downloads:
- 46
- Uploads:
- 56
- Thanks:
- 200
- Thanked:
- 633 times in 576 posts
November 21, 2013 at 9:26 pm #513059Ok Thanks, let me do a test drive and i will reply with my findings.
Regards
Manos
November 21, 2013 at 9:49 pm #513063u realise that its not a “quickstart” installation if the backend its not working and the hole thing crashes after joomla update.
I had the same layout error in the backend with a j25 instalation on a 5.2 php server!Manos ModeratorManos
- Join date:
- February 2014
- Posts:
- 2806
- Downloads:
- 46
- Uploads:
- 56
- Thanks:
- 200
- Thanked:
- 633 times in 576 posts
November 21, 2013 at 10:06 pm #513066Yes i am aware that this is not just a QS installation.
Did you try to clear your browsers cookies ? Also can you please let me know what your error_log file saves ?
Regards
Manos
November 21, 2013 at 10:21 pm #513069u know it cant be a cookie problem… I will delete everything (db, files) and give it 1 more chance.
Although it s a great template it seems costing me a lot of time with backend major problems and update fatal instability.
Tomorrow i will have it in the layout error situation again(now its crashed cause of the update) so i ll reply here.
thnx for ur timeManos ModeratorManos
- Join date:
- February 2014
- Posts:
- 2806
- Downloads:
- 46
- Uploads:
- 56
- Thanks:
- 200
- Thanked:
- 633 times in 576 posts
November 21, 2013 at 10:30 pm #513071You don’t have to delete anything!
You can follow my directions that will solve your problem, even though i could really use some info from your side.
Anyway here’s the solution that will do the trick.
Open the file home/expose/public_html/new/plugins/system/remember/remember.php
This is a standard Joomla file, so you can make a backup first because you will revert any changes after that.
Now use a text editor or whatever you find more suitable to do the editing.Go to line 94, you will find the following lines:
<blockquote>
// Use domain and path set in config for cookie if it exists.
$this->cookie_domain = $this->app->get(‘cookie_domain’, ”);
$this->cookie_path = $this->app->get(‘cookie_path’, ‘/’);
$this->lifetime = time() + ($this->params->get(‘cookie_lifetime’, ’60’) * 24 * 60 * 60);
$this->secure = $this->app->isSSLConnection();
$this->length = $this->params->get(‘key_length’, ’16’);</blockquote>You need to comment those for now!
You can copy and paste mine :
<blockquote>
// Use domain and path set in config for cookie if it exists.
//$this->cookie_domain = $this->app->get(‘cookie_domain’, ”);
//$this->cookie_path = $this->app->get(‘cookie_path’, ‘/’);
//$this->lifetime = time() + ($this->params->get(‘cookie_lifetime’, ’60’) * 24 * 60 * 60);
//$this->secure = $this->app->isSSLConnection();
//$this->length = $this->params->get(‘key_length’, ’16’);</blockquote>Now you need to scroll down to line number 112
You will find the following function:
<blockquote>
if ($this->app->isAdmin())
{
return false;
}</blockquote>You can comment this function (only for now) again like this:
<blockquote> // No remember me for admin
//if ($this->app->isAdmin())
//{
// return false;
//}
</blockquote>Now you can try to log on to your joomla backend, (you need to try a couple of times if you don’t clear your browsers cache and cookies).
Now the problem is solved and you can revert all changes to previous file (the one you just edited) to it’s original state.
Problem solved 🙂
Regards
Manos
PS: Since your Joomla update failed you will also have to do a db repair using standard Joomla tool, included in your Joomla admin panel
November 22, 2013 at 9:22 am #513120never mind i fixed myself (layout g problem)
As it concerns the remember problem i wll try your fix and see how it goes with next update, or better, i will not update joomla until your next template update.
thnxManos ModeratorManos
- Join date:
- February 2014
- Posts:
- 2806
- Downloads:
- 46
- Uploads:
- 56
- Thanks:
- 200
- Thanked:
- 633 times in 576 posts
November 22, 2013 at 1:02 pm #513150If you have the latest version of the template and the rest of JA software installed then your site should be working like charm. The cookie issue is a must for that if you ask me.
Regards
Manos
-
AuthorPosts
This topic contains 30 replies, has 10 voices, and was last updated by Manos 10 years, 11 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum