CamelotWeb Posted September 3, 2013 Share Posted September 3, 2013 (edited) Hi, I'm working on a site, and I've got this problem never seen it before. When I get login and come back to the index, everything but the logo has disappeared. The divs are empty so I guess the problem are the Hooks that are returning empty as a result. Everything seems to be fine in the Hooking positions administrator page. Any idea ? Thanks Edited September 3, 2013 by CamelotWeb (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted September 3, 2013 Share Posted September 3, 2013 if you've got "blank" page you should definitely follow these steps: http://www.prestashop.com/forums/topic/224525-how-to-turn-on-error-reporting-for-debug-information-500-error-or-blank-page/ then if any additional information about error appear - please paste it here Link to comment Share on other sites More sharing options...
CamelotWeb Posted September 3, 2013 Author Share Posted September 3, 2013 (edited) Actually it displays the logo and the divs. But all the $hooks are not beign displayed correctly while before being login they were displayed correctly. There is no bug error just empty content. Edited September 3, 2013 by CamelotWeb (see edit history) Link to comment Share on other sites More sharing options...
CamelotWeb Posted September 3, 2013 Author Share Posted September 3, 2013 I've found the solution. Just needed to reset all the modules. Link to comment Share on other sites More sharing options...
karthicbabbu Posted October 8, 2015 Share Posted October 8, 2015 Hi I am new to prestashop..i used godaddy server i just took all backup from my one prestashop website (www.example.com) and re upload all of my files to another prestashop website (www.example1.com)...but the problem is store front look fine..but when i try to login admin page..it appeared as blank page?? is there anything missing.. i changed shop url also..but admin got blank screen..pls help me Link to comment Share on other sites More sharing options...
jcasub Posted October 8, 2015 Share Posted October 8, 2015 Have you checked that all the values on: the table ps_shop_url change the id_shop_url, domain_ssl and physical_uriare correct? Can you activate define('_PS_MODE_DEV_', true);to see if appear any error on the white page? Once in the PrestaShop root folder, double click the folder named config and then open the file named defines.inc.php for editing. Change the 'false' to 'true' and then click the Save Changes button to save and activate the change. The changed line should read as follows: /* Debug only */ define('_PS_MODE_DEV_', true); Link to comment Share on other sites More sharing options...
kavin Posted January 27, 2016 Share Posted January 27, 2016 Hi Friends, I am also facing the same challenge. While logging through User ID in Front Office, everything goes blank but showing Store Information only. Is there any workaround or RESET is the only option ? Link to comment Share on other sites More sharing options...
GREPY Posted June 27, 2017 Share Posted June 27, 2017 Hello, I have this blank home page problem after I create remotely customer via webservice and try to login with his email and password. All the divs are placed correctly but no content is displayed for this user (menu, footer and other hooks). When I replace URL to get into "My account", it works, but no header/footer is displayed. What could be the problem? Did I forgot to fill some of the madatory fields for customer? I created customer with these fields filled: lastname firstname email passwd active note Thank you Link to comment Share on other sites More sharing options...
GREPY Posted June 28, 2017 Share Posted June 28, 2017 I did it! I found out that customer_group isn't set correctly in the database. All the customers have customer_group set to 3 but this one (created via webservice) has 0. After a while I found an answer here: https://www.prestashop.com/forums/topic/290508-customer-group-webservice-acccess/ When creating customer via Webservice these parameters must be set: $this->xml->customer[0]->id_default_group = 3;$this->xml->customer[0]->associations->groups->group->id = 3; The second line is more important. First I thought that setting id_default_group is enough but it is not. You need also to set assocations like this to insert record into customer_group table. Now it works like a freaking charm! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now