Joomla | Article Manager is not displaying Articles - joomla1.5

I am using Joomla 1.5.21 for my website. When I logged in via my Super Administrator account and goes to Article Manager then it does not display any article.
Please help me how to fix this problem. I will be very thankful to all of you.

In database ,check whether the #_content table is empty.If its empty create a new article.

Related

overide site notice dashlet to user dashboard

I tried to do a wellcome notes dashlet into my alfresco share user dashboard, that is edited by the admin.
so i just overide the site notice dashlet, but i cant figured out how to save the components properties like the text and title.
now when i edit the title or text after a page refresh i lose everything, and every user gets its own content.
im kind newbie in this.
I apreciate an help.
my regards.
so this is how i made it:
the wellcome.get.js
the welcome.get.ftl
wellcomeTo.get.desc.xml
Follow the below article for adding the custom Dashlet and its works perfectly fine for me. Give a try and let me know if any issues.
Custom New Dashlet: http://www.krutikjayswal.com/2016/07/alfresco-share-dahslet.html
Customizing the Dashboard: https://docs.alfresco.com/6.1/tasks/dev-extensions-share-tutorials-js-customize.html

demo-magento2.vuestorefront find user name and password

I am new Vuestorefront, I am trying to change product catalog
for that, everywhere is returning to go admin panel but can anyone tell me how to get the user name and PWD of demo admin panel
http://demo-magento2.vuestorefront.io/admin
reference page https://docs.vuestorefront.io/guide/cookbook/data-import.html#_2-1-recipe-a-using-demo
thanks in advance
The Magento demo is purely for demo purposes. If you intend to begin working in Magento on catalog and orders you will need to spin up your own instance of Magento (or desired backend).

Facebook Login Integration in AEM/CQ

I have come across an issue while integrating Facebook login with AEM.
I took reference from below link
https://docs.adobe.com/docs/en/cq/5-6-1/administering/social_communities/social_connect.html
Although everything is working fine but on welcome page it is not displaying the logged in user name the way it is working for Geometrixx Outdoors website.
Instead it is displaiying the ID only.
Any suggestions who have already worked on this integration? :)
When your user logs in from facebook,it will exist as a user in /home/users/facebook under the group you have specified.If it is not there,you need to do it.Dont forget to check the about me part shown in figure ,so that user can save the info with the help of this.User in your aem will fetch only those info which you check here,
And in the welcome page,you need to fetch the user-info from that group and show it on your welcome page,it will not be on the fly.You need to do it like geomatrix.
I have done work on this integration,If you need further help,feel free to ask me.

Administrator has no admin bar for specific pages

I have an issue with a dotnetnuke 7 site, where the administrator cannot edit a minority of the pages.
When logged in and on such a page, the edit page menu missing.
When on the page management view, there are only options to view or make homepage. On clicking, properties are not shown.
What could be causing this?
Cheers, mark
I've seen in the past where the Administrator Role Id is incorrectly defined in the database.
Unfortunately there isn't a UI way to change this, you'll need to go into the DB to see what Role ID is defined. I believe AdministratorRoleID is stored either in the Portals table, or in the PortalSettings or PortalLocalization table. Check the # and see if that matches the ID of the Administrators role for that portal.
It could also be a CSS issue if it only affects some pages. Can you try changing the skin on those pages to the default skin and try again...
Just noticed this old question, so I thought that I'd update with what the actual problem was.
We imported pages using a direct to database program - we naturally assumed that the site administrator could, as a default be able to edit pages within their own site.
As it turns out, DNN actually creates correct access rights to each page as they are created, and rights are added and removed as required. This means that if you create pages you must directly create access rights for the correct site administrator.
Kind Regards, Mark, IA

Joomla 2.5.9 Wrong redirect after Read more -> Login

I´ve a strange Joomla 2.5.9 problem where I do not know if it´s a bug or a setting issue.
Anyway my problem is I ´ve created a menu item kind "Blog List", choosed a category and set the "access" of the articles to "registered" and "show unauthorized access links" to yes. Now the user can see the articles, but is redirected to the login if he clicks "read more".
steps can be seen here (-> http://tinyurl.com/bldbvx4)
So far so good. Unfortunately the return URL for the article is not created correctly.
I ´ve created a demo installation which illustrates my problem.
http://seminare-gratz.de/Joomla_2/index.php/problem
Login:
demo
demo
If I click "Koala" and log-in in the next step, Joomla tries to redirect me to:
http://seminare-gratz.de/Joomla_2/index.php/%2FJoomla_2%2Findex.php%2Fproblem%3Fid%3D25%3Akoala
correct would be:
http://seminare-gratz.de/Joomla_2/index.php/problem/25-koala
To solve this issue I tried to cut the wrong part with htaccess (failed)
Any clue how to fix this?
Thankful for any help,
Tony
Okay, got it. For everyone else having this problem. I did a template override of:
components/com_content/views/category/tmpl/blog_item.php
and cutted the urlencode in line 149.
//$link->setVar('return', base64_encode(urlencode($returnURL)));
$link->setVar('return', base64_encode($returnURL));
with this hack it works ...
This is because you have given Access level to register so normal users are not allowed to read this article. So you kindly change access level registered to public.