Well, heres the error (somewhat) that I'm getting
Fatal error: mysql error: [1: Can't create/write to file '/var/tmp/#sql_9469_0.MYI' (Errcode: 28)] (or any other errors related to a .MYI file)
The help and support of Zen Cart provides this solution;
If you are the server/host administrator and can control disk configurations/permissions on your server, either reconfigure MySQL to use another location with more space available; or add more space to the indicated volume/mount-point (in the example above, that would be /var); or relax security surrounding the /var/tmp folder for the MySQL user.
If you are not the server administrator, you need to report the error to your host/web-company so that they can resolve the situation for you. This is a good time to remind you to do regular backups... You should be sure to double-check all your data after encountering such an error, and having a good backup on hand could save you tons of trouble.
So I'm wondering now. Is it possible for me to resolve this myself? Or am I basically out of options? I'm not sure how the MySQL works with x10, I'm not sure if I'm able to allocate more space or not.
In addition, this was a provided solution by an individual user who stated Zen Cart's solution is incorrect;
Fatal error: mysql error: [1: Can't create/write to file '/var/tmp/#sql_9469_0.MYI' (Errcode: 28)] (or any other errors related to a .MYI file)
The help and support of Zen Cart provides this solution;
If you are the server/host administrator and can control disk configurations/permissions on your server, either reconfigure MySQL to use another location with more space available; or add more space to the indicated volume/mount-point (in the example above, that would be /var); or relax security surrounding the /var/tmp folder for the MySQL user.
If you are not the server administrator, you need to report the error to your host/web-company so that they can resolve the situation for you. This is a good time to remind you to do regular backups... You should be sure to double-check all your data after encountering such an error, and having a good backup on hand could save you tons of trouble.
So I'm wondering now. Is it possible for me to resolve this myself? Or am I basically out of options? I'm not sure how the MySQL works with x10, I'm not sure if I'm able to allocate more space or not.
In addition, this was a provided solution by an individual user who stated Zen Cart's solution is incorrect;
Is there anyway I can go about this? Or is it admin controlled? I don't normally mess in this area of my server, this is the first time I've had problems in this area, so I'm extremely confused.It is likely that your /usr/tmpDSK is corrupted. You should stop all processes that have files open on /tmp such as MySQL and other applications using:
/usr/sbin/lsof /tmp
Run the following commands (in that order):
/bin/umount -l /tmp
/bin/umount -l /var/tmp
/bin/rm -fv /usr/tmpDSK
/scripts/securetmp
This should create a new /tmp partition for you. That's all