Concerning Magenta 1.9. - “Invalid Form Key. Please refresh the page“ - forms

I have a problem with the Safari browser complaining about unsecure transfer when adding products to the basket and fails. So, I sat the unsecure transfer to https in configurations. That helped for Safari but now I can’t log in to the Magento admin. I get: “Invalid Form Key. Please refresh the page“.
In phpMyAdmin > core_config_data I changed the unsecure transfer back to http. That didn’t help so I deleted the whole site from the server and uploaded a one-week old backup, but I still got the same error. Finally, I have deleted the backup and uploaded the original. And of course, still have the error.
I have emptied var/session, var/cache and var/reports and flushed my own cache and deleted cookies.
I have found technical solutions as https://www.tigren.com/magento-error-invalid-form-key/, but I’m a novice and on top of that not a programmer.
Now, when I try to address the site via phpMyAdmin I get “mysqli_real_connect(): (HY000/1045): Access denied for user 'username'#'localhost' (using password: YES)”.
When everything else fails for me I can e-mail the host company to work on the server. But what to write?
Could a professional please walk me through a solution?

Related

FMS 16 cant get a green lock

Good afternoon everyone,
Question about Uploading file in FMS 16 but getting an Orange Security Lock.
I already installed the Filemaker Server 16 and install SSL Certificate and domain from Go Daddy.
Then try uploading an existing file in Filemaker Pro Advanced 16, after choosing local host and type the admin console credentials im getting the orange security lock and cant upload the file. (Attached image)
I read in another thread to reinstall FMS and it should change it to a green lock, but even after a fresh reinstall, it hasn't changed it to green.
I can verify the certificate is good, Am I missing something?
I already purchase SSL certificate and Domain in Go Daddy, yet im getting in webdirect an error "Certificate is not valid".
Thanks in advance for any advice.enter image description here
It looks you have entered IP address instead of domain name. That might be the reason for orange lock. SSL verifies the domain name, not IP address.
File Upload error says Encryption password is incorrect. You have enabled encryption on rest. Enter the correct encryption password. Once file uploaded, go to admin console, open the file. Enter the encryption password and save it. Hope, it fixes the issue.

Unable to get login page in Moodle

I am unable to get a Login page after Moodle 2.5 installation got over. it throws following error
The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
This problem can sometimes be caused by disabling or refusing to accept cookies.
I will be more helpful if anybody gives me an answer.
Assuming this is a fresh install?
I would first check this setting is correct in config.php - something like
$CFG->wwwroot = 'http://localhost/yourwebname';
or
$CFG->wwwroot = 'http://www.yourdomainname.com';
If those are correct then clear the cookies in the browser for the specific domain.
And maybe clear the Moodle cache. From a terminal, go to your web directory
cd /var/www/moodle
Then run
php admin/cli/purge_caches.php
http://docs.moodle.org/25/en/Administration_via_command_line#Purge_caches_via_CLI
I had this same issue (except with XAMMP, and Moodle 2.7, but my guess is the same issues are at play). The solution at https://moodle.org/mod/forum/discuss.php?d=239793#p1115879 worked for me.
Basically, delete the contents of moodledata\cache (just use explorer, no need for any CLI stuff), and increase max memory in php.ini (should be wamp\php\php.ini) from 128M to 1024M, then try loading the page again.

What would happen if I deleted all the files associated with vBulletin?

I would like to completely take down the vBulletin forum running out of a subfolder of a site. I have already removed access to the bulletin via .htaccess, but now I would like to get rid of the whole shebang.
Can I just go in via ftp and remove all of the vBulletin files or will that cause problems?
The reason I want to get rid of the bulletin now, other than for security and resource conservation, is because now, after a move to a new server, I am receiving emails of database errors (I am assuming this is because the bulletin didn't get hooked up to the database at the new server).
If it makes any difference, this is the error:
mysql_connect() [function.mysql-connect]: Unknown MySQL server host 'blah.blah.blah.some.url.associated.with.my.old.hosts.nameserver.com' (1)
/path/to/my/forum/includes/class_core.php on line 317
Thanks in advance for any advice/info you have.
to completely remove vbulletin you want to remove all the files in FTP and delete the database as well. the database is usually a lot larger then the forum files. but to just stop the errors your getting removing the ftp files will work.

Squirrelmail ERROR Login Error

I have been using Squirrelmail version 1.4.22 for over 2 months now and its been working perfectly.
Suddenly this morning users cant login and it gives them this error:
ERROR
You must be logged in to access this page.
Go to the login page
When i use an alternative mail client users are able to login into the mail accounts fine. I have tried to read online and even reinstall squirrelmail but still brings the same error and even within this forum and everybody seems to point it to a cookie issue. I have cross-checked by cookie session settings both on the server and browser and i don't seem to see an issue.
Please advise will be grateful for any help
Create php file in httpdocs of your web site with code:
<? phpinfo();
Check for value of session.save_path variable
Check for permissions on folder which defined in session.save_path:
ls -ld /path-to-folder
it should be 1733
Also check for errors in log file in
/var/www/vhosts/<your domain name>/statistics/logs/error_log

'DefaultAppPool' is being automatically disabled due to a series of failures

Having a tough time with this issue. Not sure how but my ApplicationPoolIdentity is broken.
Currently I'm running IIS 8 on Windows 8 with Visual Studio 2012. When trying to debug an application from Visual Studio, or just navigating to the site in a browser I get the following error logged and a 503 error.
Application pool 'DefaultAppPool' is being automatically disabled due to a series of failures in the process(es) serving that application pool.
If I check out the Application error logs, I find the following error from the User Profile Service.
Windows cannot log you on because your profile cannot be loaded. Check that you are connected to the network, and that your network is functioning correctly.
DETAIL - The system cannot find the path specified.
Upon looking into the details I find that the User Profile Service is trying to load up a profile with the Id
S-1-5-82-3006700770-424185619-1745488364-794895919-4004696415
Now I opened up the registry to try and find the profile with that UserId. However there's nothing in the Profile list that helps.
So digging around a little more I've found that this issue can be resolved by either
A) Set the Load User Profile of the Application Pool to false.
B) Use a different account for the application pool.
C) Fix the account.
Seeing how this is the built in account, I'd prefer to fix the issue rather than fix the sympton.
What I have tried
aspnet_regiis -i
Removing IIS from windows and reinstalling.
Attempted to follow the guide here but I don't know the account password :P
My hunch
Somehow the ApplicationPoolIdentity got messed up. Is there any physical folders for the built-in accounts? I know that the Network and Local service profiles physical directories exist at C:\Windows\ServiceProfiles\. It is possible to recreate the ApplicationPoolIdentity profile? Or am I way off on what the real issue is?
C) Here is what i did to fix the account
Go in regedit at key
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
There is a setting called "Default". You have to make sure that the data value point to an existing directory on the drive.
By default it contains "%SystemDrive%\Users\Default". In my company the default is changed to a custom profile. Somehow, someone deleted that user profile. So when the defaultAppPool user tryed to create an accound for himself, it was unable to do so because windows cannot provide him with a default user profile.
You can also diagnose this error when looking at the Event Viewer under the Application folder. You will get a message of that type:
Windows cannot find the local profile and is logging you on with a
temporary profile. changes you make to this profile will be lost when
you log off.