Search results

  1. garrettroyce

    Resolved My site more than a week offline.

    The free account should work, I just want to make sure since the DNS is either for premium or for cloudflare. Did you see anything suspicious with cloudflare? Have you tried purging the cloudflare cache? Can you disable cloudflare temporarily or put it in development mode?
  2. garrettroyce

    Resolved AUTH TLS Error: Could not connect to server. Error when I trying login FTP on Filezilla

    I don't believe FTPS is available on free hosting. If you disable TLS, it should work.
  3. garrettroyce

    Resolved My site more than a week offline.

    I see some cloudflare headers when I open your site in the developer console and this domain has DNS for cloudflare. This sounds like a cloudflare configuration issue. Any errors from cloudflare? Is this account even hosted on x10hosting free? The DNS for the subdomain doesn't belong to a free...
  4. garrettroyce

    Resolved My site more than a week offline.

    Please post the last few entries in your error log from DirectAdmin. If your IP address is in those logs, you may wish to delete it; it is not necessary for troubleshooting.
  5. garrettroyce

    Resolved Can send but not receive emails.

    mail.1.collierlee.com is set up correctly; maybe you want to use that as your MX record instead of mail.collierlee.com ?
  6. garrettroyce

    Resolved Can send but not receive emails.

    Make sure to remove the bad MX record, if you haven't already. I still see it if I query using a non-caching service like https://mxtoolbox.com Also, the A record for mail.collierlee.com goes to a non-x10 server, so x10 won't be handling your mail. Also also, your main domain DNS is a mess...
  7. garrettroyce

    Resolved Can't Access cPanel

    It sounds like something is being blocked still. I'll ask an admin to re-check, but rarely this could be a problem somewhere between your computer and x10. Ping check fails; can an admin see if there's something else to check for a block?
  8. garrettroyce

    Resolved Can't Access cPanel

    Try to run a "ping" command from your computer to the server. You may have to google this for your OS, but generally it looks like: Open the menu Command Line (or command prompt, or terminal) type in "ping x14.x10hosting.com"
  9. garrettroyce

    Resolved .htaccess equivalent commands of Nginx configuartion

    Here's what I see: GET /Main_Page 200 - OK GET /load.php?lang=en&modules=oojs-ui-core%2Coojs-ui-widgets&skin=timeless&version=7khli 304 - NOT MODIFIED GET /load.php?lang=en&modules=ext.visualEditor.core&skin=timeless&version=1sypu 304 - NOT MODIFIED GET...
  10. garrettroyce

    Resolved Can send but not receive emails.

    Your MX records are invalid. The hostname must be a FQDN, including the trailing period. Example Domain TTL Class Type Priority Host # MX record 1.collierlee.com. 1936 IN MX 10 mail.collierlee.com. # this also may be required...
  11. garrettroyce

    Resolved Blacklisted

    The files should not be restored. The database is the important part and can be optionally restored. You can pick and choose what tables in the database to backup, and then restore. Content tables are the most valuable and least likely to pose a problem. System tables like plugins...
  12. garrettroyce

    Resolved How to access my website after migration

    Please try now. Clear your cache if you see the suspended page.
  13. garrettroyce

    Resolved .htaccess equivalent commands of Nginx configuartion

    You need to reorder the rules. You want the most specific rule to match, and then finish the chain. Then the next most specific, and so on. The last rule should be the index, as it's the least specific. Both the 2 sets of RewriteCond are different ways of saying the same thing. Only one or the...
  14. garrettroyce

    Resolved Blacklisted

    You can create a new installation and then copy the old database on top of the new database. It's not guaranteed to work, but the content won't be lost that way.
  15. garrettroyce

    Resolved htaccess file

    AutoIndex is almost always bad. It makes the server treat folders like special websites, but this allows filesystem snooping, which is a basic, but effective tactic to look for vulnerabilities in your website. @spacresx fixes that problem, but I think there's another problem as well. What you...
  16. garrettroyce

    Resolved .htaccess equivalent commands of Nginx configuartion

    Interesting. I'm noticing that the rule asks NGinx to match the directory rest.php, but how could it be a directory? Maybe that's the bug they're trying to fix. RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule /de/rest.php/...
  17. garrettroyce

    Resolved Getting "Domain does not exist" error after cPanel update

    I'm sorry I didn't point it out specifically, but when it asks to delete the files for this domain, you have to uncheck the box or else it deletes them. I can see if a restoration is possible, but even if it is, it would be from March.
  18. garrettroyce

    Resolved Blacklisted

    Check your error log in DirectAdmin and also look if there is an error log file anywhere (perhaps administrator/logs ?)
  19. garrettroyce

    Resolved .htaccess equivalent commands of Nginx configuartion

    Yep. I read that wrong. My apologies. RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ /rest.php?%{QUERY_STRING} [L] Here's a summary of the processing: * If a file matching the request does not exist, continue processing (else serve that...
Top