For 2 days now I have been trying to access my admin page for the zencart on a site I am working on, I have re-uploaded the whole zencart numerous times and I keep getting a blank page when I go to the admin section. Can anyone help?
We will probably need more details to really be able to help. If you just see a blank page (have you checked the source code in the browser? Is it completely blank?) you will need to check the error logs to be able to trace the problem.
If you are using Zen Cart version 1.3.8a or higher you will have the error logging tool enabled by default, so you can have a look for logging files inside the /catalog/cache folder. Take a look at a few files and look for fatal errors, because you probably will have one of those if you are getting a blank page.
By the way, that kind of error doesn't happen without good reason, What is the last thing you have modified/added to your admin site? A new contribution perhaps?
Related
So I've just moved a Wordpress site to a new hosting provider, and the strangest thing is happening..
I have a contact form (the same contact form) at the bottom of each page on the site, each page loads fine, except for the home page. If I try and load the home page, I get a 403 Permission denied error. If i disabled the plugin, or remove the form from that page, it loads fine.
I suspect it might be a permissions issue but I have no idea where to even start looking. Everything else on the site works fine.
It's Gravity Forms btw.
Also, I know this might not be the right place to ask but I'm at my wits end here trying to work this out.
So after going through some logs etc i discovered it was php mod_security that was triggering on a false positive on an iframe that gravity forms was producing. Still not sure why it was only happening on the home page though.
I contacted the hosting provider and asked them why it was happening and they just advised they'd turn it off. Which they did and it's working fine now. If anyone wants to add anything to this please do.
Check your wordpress options table. Your old site link is still there, as it seems. Replace it with new one.
I am having the strangest error come up on a site that I am working on. For a while we have had the site in admin only view so we could work on things without any users logging in. Was fine during this phase.
Today we opened up the site to a handful of people to sign up and test the site out. As people started coming in however, every user was getting this error:
"can't open file" with a white screen
The error first pops up when the user tries to register and gets to the final page. This is the part that is supposed to tell the user that a email confirmation link has been sent to them.
Once this error pops up, the error will continue to display for all pages until they clear their cache.
Changes that were done:
1: Prior to opening the site up, the .htaccess was edited to prompt a initial login box (this was done to prevent others from accessing the site while we were moving to a 'beta' phase). I also added a .htpasswd file that contained the details for the users to enter to get to the site. I have tried to delete this edit thinking that it was this acting up, but did not work, error was still displaying.
2: Checking and repairing the joomla session table within the database - my thoughts were that perhaps it was a session issue since it was triggered when the user went to sign up and complete the registration process. This did not work.
3: One of the components that we were using needed a custom edit to the session.php file. "/libraries/joomla/session/session.php" - I reverted this file back to the original, however the error still comes up. Did this, thinking it was session related as the point above)
4: I cleared all cache and purged all expired cache, this had no effect. I also cleared all cache as I did the previous 3 items as well.
So now I am completely stumped on how to go ahead and get this working correct. The error that displays is VERY vague and leaves no information other than it 'can't open file'
Joomla Version: Joomla! 3.4.8 Stable
PHP Version: 5.6.16
Web Server: LiteSpeed
Community Component: EasySocial
Subscription Component: PayPlans
We've sorted this now I think. Looking in the logs one of the site plugins was using the ftp layer to open a file which had been created directly by Apache, and so the permissions didn't allow it.
I've change the permissions now and the error condition seems to have gone.
Using Wordpress 4.0.1 , activated multisite for bolgging.
no. of themes are loaded. But when trying to customize themes, the customize.php page not loaded.
Its getting 504: Gateway Timeout Error
Any one know about this?
SOLVED! I figured out what the problem was with. I'll post the solution here, in case anyone else runs into it:
It might be a compatibility issue with one of the plugins, so I deactivated all of them, then I logged out and logged back in. Then I systematically activated each one, one by one. After I activated one, I'd check the customize page to see if it was the one causing the issue. I found that the Network Latest Post plugin is the one causing it to hang up for me.
Hope that helps someone!
I am hosting a site locally via MAMP, but somehow while editing sidebar (tried to edit widgets), site went blank and it cannot give me access to wordpress admin panel. It shows up 500 error and blank page.
Site has multiple themes assigned to different pages, so when I try to access homepage (arcade basic theme) it works fine. But when I try to access Shop (mystile theme), it shows blank page and 500 error.
The 500 error is also received when I try to access admin panel via wordpress dashboard (on my homepage).
what can I do?
Just in case you didn't know, 500 errors mean there's a server misconfiguration somewhere.
This could easily be down to an error in coding, which clearly this sounds like.
You would be helped greatly by looking in your apache error logs (usually in your log folders), this should tell you what caused the error - or you could also try turning PHP error display on, which may display the same information but on the screen.
Once you find out where abouts in the code the error is being generated, update your answer, along with an excerpt of that area of the code, and others may be able to help you better.
Another suggestion would be to try using an IDE software application to write your code, as this will flag up any errors as you type them. Personally, I use NetBeans.
I installed an facebook login extension named inchoo.First time it runs perfect in localhost,ie. i logged in through it into my magento website successfully.Then after, two issues are coming :-
1.After login in facebbok in my website, i logged in succesfully but my name is not showing in home page.But it is showing in other pages of website.
2.And sometimes, after login it shows a blank page.
I tried it in my live website, but it is creating same problem there also.
I need any help.I will be very thankful to any help.
if you get a blank page on your magento installation then it means a php error behind a scene. By default error reporting is disabled for Magento in index.php so to get the real cause behind this:
enable error logging from index.php ini_set('display_errors', 1);
inspect your server php error log
do all that and you can ask a better question and maybe answer the question before you ask.