Troubleshoot - Administration
From Zen Cart(tm) Wiki
(Difference between revisions)
m (Reverted edits by Allcanadiansearch.ca (Talk); changed back to last version by RjzT0q) |
|||
| Line 1: | Line 1: | ||
| + | {{MenuBarTroubleshooting}} | ||
| + | == Login issues == | ||
| + | [[Errors#You_entered_the_wrong_username_or_password.|Forgotten admin username or password]] | ||
| + | |||
| + | '''The login page just keep reloading when entering the correct login information:''' | ||
| + | * [[Troubleshooting_-_Sessions#Cache_directory|Check cache directory]] | ||
| + | * [[Troubleshooting_-_Sessions#session.referer_check|PHP setting: session.referer_check]] | ||
| + | |||
| + | |||
| + | '''The page never loads, or you receive a browser error about redirection:''' | ||
| + | * [[configure.php#Domain|Trailing slash after domain in configure.php]] | ||
| + | |||
| + | |||
| + | == SQL Patch issues == | ||
| + | '''The Install SQL Patches tool in the Admin complains about an SQL file you're trying to load''' | ||
| + | * [[Troubleshooting_-_SQL_Patches#Magic_quotes|Magic_quotes_gpc]] | ||
| + | * [[Troubleshooting_-_SQL_Patches#Patch_tool_syntax|Patch tool syntax]] | ||
| + | * [[Troubleshooting_-_SQL_Patches#Other_issues|Other issues]] | ||
| + | |||
| + | |||
| + | == Tips and Tricks == | ||
| + | '''Can not paste text in HTMLAREA in Firefox or Mozilla?''' | ||
| + | |||
| + | |||
| + | Two options: | ||
| + | |||
| + | # Use Shift Insert, or | ||
| + | # Edit the file ''C:\Documents and Settings\username\Application Data\Mozilla\Profiles\default\something.slt\prefs.js'' | ||
| + | |||
| + | ::adding: | ||
| + | |||
| + | <pre>user_pref("capability.policy.policynames", "allowclipboard"); | ||
| + | |||
| + | user_pref("capability.policy.allowclipboard.sites", "http://www.mozilla.org"); | ||
| + | |||
| + | user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess"); | ||
| + | |||
| + | user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");</pre> | ||
| + | |||
| + | :Note: This may have security issues, but does work. | ||
Latest revision as of 01:50, 5 December 2007
Login issues
Forgotten admin username or password
The login page just keep reloading when entering the correct login information:
The page never loads, or you receive a browser error about redirection:
SQL Patch issues
The Install SQL Patches tool in the Admin complains about an SQL file you're trying to load
Tips and Tricks
Can not paste text in HTMLAREA in Firefox or Mozilla?
Two options:
- Use Shift Insert, or
- Edit the file C:\Documents and Settings\username\Application Data\Mozilla\Profiles\default\something.slt\prefs.js
- adding:
user_pref("capability.policy.policynames", "allowclipboard");
user_pref("capability.policy.allowclipboard.sites", "http://www.mozilla.org");
user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
- Note: This may have security issues, but does work.