I have installed magento on localhost successfully but one small problem I'm facing is when I'm trying to create an admin account it is showing message "Only registered domain accounts are allowed" when I entered my email address. Can anyone help me ?
We are facing this problem in the actual site also when the customer buys some product from our site and come back to buy another product magento shows the same message even when person click on forgot password it shows same message again.
Please help me?
Usually while installation of Magento, it is not required to get the domain accounts registered.For localhost, it accepts any valid email ID.
But since your are facing an issue, Check, While installation of Magento (I am using version 1.9.0.1), In your database connection phase:
1) Select Drop Down option FILE SYSTEM for save session data.
2) Enable Charts should be checked.
3) Base URL must have your localhost path to magento.
4) Admin path should be : admin.
Related
I'm currently developing a plugin for wordpress that uses recurly for subscription. I already uploaded it to our site and resume coding there. I'm already done with the checkout page and was in the middle of developing the accounts page when I run into an error:
Fatal error: Uncaught exception 'Recurly_ConnectionError' with message 'Failed to connect to Recurly (Could not resolve host: xx-my-subdomain-xx.recurly.com)
xx-my-subdomain-xx is the placeholder for the subdomain
I already increased the connection timeout to 30 but my effort was futile. I tried testing it in my localhost and found out that it was working. I think i has something to do with the cURL but I can't point out what's causing the problem.
Any help would be appreciated.
Recurly_Client::$subdomain = 'your-subdomain-name'; // i.e devapp,myapp..etc
You don't need to write whole subdomain URL you just need to pass your subdomain name which is found in configuration -> site setting (Only the name of the subdomain).
I hope this will solve your issue as I also got the same error after this change its working fine for me.
Provide your subdomain as follows
Recurly_Client::$subdomain = "Your RECURLY_SUBDOMAIN";
Then add your API key and certificate path as follows
Recurly_Client::$apiKey = "Your RECURLY_API_KEY";
Recurly_Client::$CACertPath = "Your RECURLY_OPENSSL_CertificatePATH";
I hope this will work for you.
Recently, I installed magento 2 . Everything works well but I can't get access to admin. When I'm trying to log in, I get the message:
You did not sign in correctly or your account is temporarily disabled.
I created new users
php bin/magento admin:user:create --admin-user="admin" --admin-password="11gtbAAjjjj*" --admin-email="example#gmail.com" --admin-firstname="Admin5" --admin-lastname="Admin5"
But still cann't log in, the users are not locked.
The site worked well in the past.
Please help me to fix my problem
You have to Unlock user using following command.
php bin/magento admin:user:unlock [user name].
Facing this issue You did not sign in correctly or your account is temporarily disabled.
open your http://127.0.0.1/phpmyadmin/
go your database
reset admin_user column then check field first_failure and lock_expires 000.00.000
now save you time
I am using osTicket as ticket system on my site. Hope someone here will be able to help me out.
I was setting up an email in osTicket so that emails can be retrieved automatically. Fetching works properly but I am facing these issues:
Mail fetching:
a. Sometimes the fetching works and I can see the new ticket.
b. sometimes the email is deleted from mail box (as I have selected
"Delete fetched emails") but no ticket is created.
c. Sometimes the ticket is created and I can see it in database but
it is not automatically assigned to anyone although a user is
selected for Auto-assign in HelpTopics.
I cannot setup "Move to" for fetched emails in Mail Account page. When I enter the folder name and click on save, it gives error "Invalid or unknown archive folder!" and " Invalid or unknown mail folder! >> Mailbox is empty" errors. I created the folder from Horde but for some reason osTicket is not able to access that folder i guess. This is when Protocol is POP.
If I select IMAP and click on save, I get:
Warning: imap_open() [function.imap-open]: Couldn't open stream {localhost:110/imap/novalidate-cert}INBOX in /home/admin/lifeemail.com/support/include/class.mailfetch.php on line 130 on top of the page and below in the settings table i get this in red: [CLOSED] IMAP connection broken (server response)
Point 2 is the main problem that is a headache. I tried getting help from Google and osTicket forum(its not very active) but I got nothing.
I am using 1.7 RC3.
try to type the folder name this way:
INBOX.myfolder
should work!
Solved #2 for you, "When I enter the folder name and click on save, it gives error 'Invalid or unknown archive folder!' and 'Invalid or unknown mail folder! >> Mailbox is empty' errors."
I also could not enter the folder name into the "Move to folder" field. I solved it by clicking in the field, and keeping the mouse key held down while typing the name of the folder.
I've downloaded the wamp server and it's online. I'm trying to install Joomla.
At page 4 I'm told Unable to connect to the database
An error has occurred:The database details provided are incorrect and/or empty.
Can anyone help me in fixing this error?
This problem has been fixed by Ocaso Protal, finaly this page ocurs
what should I put here ?Site Name? nd finaly why should i use joomla any specific properties of this product ?
Even if you use the default settings for mysql (user: root, password empty) you should put the username root in the Username field in the form that's showed in your first screenshot.
You must check these things before
Setup a blank database from the Cpanel/Mysql Admin
Fix the username/password and user permissions on this database
Run Joomla... and give it the above credentials + localhost
Make sure you have 777 or adequate permissions otherwise some errors may occur#
If im not mistaken the default account for wamp/xamp myqsl is
user: "root"
password: ""
//Password is null - do not write nothing inside
I apoligise if this has been asked many times before, but I'm wondering if anyone has a link to a good tutorial on implementing a working remote authentication system in Drupal 7. I'm new to Drupal.
I've found various examples online, but the system for doing this seems to have changed substantially between Drupal 5 to 6 to 7.
I have a working system that will allow me to authenticate a user remotely and adds the user to my drupal installation. However now I cant log in any Drupal only accounts (eg the admin) as I get an error saying that the username is unknown since the code is looking for my admin username in the external system.
I get an unrecognised username error. The code is being executed for both an external and an internal user.
I know its something simple.
External site login
Case on same server and try from any store on same path
like /store
define('DRUPAL_ROOT','D:/wamp/www/drupal');
require_once '../includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
global $user;
//change this line and put your username and password instead of 'admin' and 'password'
$account = user_authenticate('krishana', 'hiddens');
$user = user_load($account, TRUE);
drupal_session_regenerate();