Title: Name Hero's Replies | WordPress.org

---

# Name Hero

  [  ](https://wordpress.org/support/users/nameherocom/)

 *   [Profile](https://wordpress.org/support/users/nameherocom/)
 *   [Topics Started](https://wordpress.org/support/users/nameherocom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nameherocom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nameherocom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nameherocom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nameherocom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nameherocom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 35 total)

1 [2](https://wordpress.org/support/users/nameherocom/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nameherocom/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/nameherocom/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [ERR_SSL_SERVER_CERT_BAD_FORMAT](https://wordpress.org/support/topic/err_ssl_server_cert_bad_format/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/err_ssl_server_cert_bad_format/#post-10125565)
 * Do you have a valid SSL certificate installed on your website?
 * Since you didn’t post the URL I can’t check, but you can use this tool:
 * [https://www.sslshopper.com/ssl-checker.html](https://www.sslshopper.com/ssl-checker.html)
 * Simply enter in the URL of your website and make sure there is a valid and trusted
   SSL certificate installed.
 * If not, check with your web host to see if they offer them. Nowadays most web
   hosts have Let’s Encrypt which is free and automatic for domains.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate](https://wordpress.org/support/topic/fatal-error-allowed-memory-size-of-67108864-bytes-exhausted-tried-to-allocate-7/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-allowed-memory-size-of-67108864-bytes-exhausted-tried-to-allocate-7/#post-10099662)
 * [@webmarketingctm](https://wordpress.org/support/users/webmarketingctm/) You’re
   most welcome :). Glad you were able to get it resolved!
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Database problems before installing](https://wordpress.org/support/topic/database-problems-before-installing/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/database-problems-before-installing/#post-10096813)
 * These tables will be created during installation.
 * Are you [following these steps here](https://codex.wordpress.org/Installing_WordPress)?
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Error establish connection even though mysql command line works](https://wordpress.org/support/topic/error-establish-connection-even-though-mysql-command-line-works/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/error-establish-connection-even-though-mysql-command-line-works/#post-10096805)
 * Are either of your servers running a firewall such as iptables?
 * If so, you may want to try whitelisting each server to accept incoming and outgoing
   connections:
 * SSH Into 11.111.11.11:
 * `# iptables -A INPUT -s 22.22.22.22 -j ACCEPT`
 * `# iptables -A OUTPUT -s 22.22.22.22 -j ACCEPT`
 * SSH Into 22.22.22.22:
 * `# iptables -A INPUT -s 11.111.11.11 -j ACCEPT`
 * `# iptables -A OUTPUT -s 11.111.11.11 -j ACCEPT`
 * For the heck of it, you may also wish to check and make sure your wp-config.php
   file is using the correct table prefix as this can sometimes get overlooked ;).
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Moving from test URL to actual url](https://wordpress.org/support/topic/moving-from-test-url-to-actual-url/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/moving-from-test-url-to-actual-url/#post-10096791)
 * Without knowing the specifics behind your hosting environment I have to make 
   some assumptions to answer your questions.
 * _At the moment I am using the IP address/subfolder (12.34.56.78/folder for example)
   to contain the site files. When it comes to switching the 3rd party domain name
   to point to the new hosting provider, is it as simple as just changing the site
   URL’s in the general settings on the WordPress dashboard?_
 * Yes, you’d want to modify the General Settings to reflect the actual URL of the
   website. Personally, I like to do this through PHPMyAdmin [modifying the Options table](https://codex.wordpress.org/Changing_The_Site_URL#Changing_the_URL_directly_in_the_database).
 * I’m assuming that the /folder lives right below the public_html folder (i.e. /
   home/user/public_html/folder). If that’s the case, I’d recommend moving these
   files up a level to be inside the public_html folder.
 * If you’re using a FTP program, you could select all the files in the sub folder,
   and drop them in the appropriate directory.
 * If you’re using SSH, you can simply run:
 * `mv folder/* .`
 * _Also will I need to add a CNAME or an A name with the 3rd party domain provider
   as I am pointing to a ‘/subfolder’. At the moment if I just type in the Web address
   without the ‘/folder’ bit, I get a blank white page._
 * Apache actually controls all of this for you. That’s why I recommend moving the
   files inside the public_html directory (or the [directory configured in Apache](https://httpd.apache.org/docs/2.4/howto/public_html.html)
   for your public-facing files).
 * Once the files are in the right place, you should be all set to point the domain
   to the IP address, [given the proper DNS entries are in place](https://httpd.apache.org/docs/2.4/dns-caveats.html).
 * domain.com IN A 12.34.56.78
 * If you didn’t build/configure the hosting environment, you may want to get with
   the web host, or the person that did first, to make sure you’re moving things
   to the proper directories :).
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How Do I Solve HTTP Error 500](https://wordpress.org/support/topic/how-do-i-solce-http-error-500/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/how-do-i-solce-http-error-500/#post-10096739)
 * It looks like your website is no longer online, but I do see an _error\_log_ 
   file which likely contains the details behind the 500 error.
 * FTP into your website or use cPanel -> File Manager to view that file and it 
   should tell you what needs to be done.
 * If you’re not familiar with PHP errors, feel free to post the contents in here
   and I’ll give you my suggestions.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate](https://wordpress.org/support/topic/fatal-error-allowed-memory-size-of-67108864-bytes-exhausted-tried-to-allocate-7/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-allowed-memory-size-of-67108864-bytes-exhausted-tried-to-allocate-7/#post-10096719)
 * _Allowed memory size of 67108864 bytes exhausted_ indicates your memory limit
   for PHP is set less than 67MB.
 * Nowadays, with WordPress, I recommend this setting being at least 128MB as many
   of the most popular themes now require this.
 * Before you work on increasing it, it’s always good to find out what your PHP 
   memory limit currently is.
 * To do this, create a new file in your root WordPress installation called “info.
   php.” Inside that file, put the following contents:
 *     ```
       <?php
   
       // Show all information, defaults to INFO_ALL
       phpinfo();
   
       ?>
       ```
   
 * Visit the file in your web browser and search for:
 * _memory\_limit_
 * This value will tell you what your current hosting environment is set to.
 * You could then use the suggestions the poster above me recommended to try and
   increase it. Once you do so, reference that info.php file to see if the changes
   applied correctly.
 * A lot of web hosts allow you to control this value by creating a php.ini file
   in the directory right above your public_html or inside of cPanel (using the 
   PHP Selector).
 * If all else fails though, raise the issue with your web host, and tell them you
   need your PHP memory limit set to at least 128MB. They should know exactly what
   to do as this is very common amongst the WordPress community.
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Admin Fatal error](https://wordpress.org/support/topic/admin-fatal-error-2/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/admin-fatal-error-2/#post-10092153)
 * This error can also be corrected by increasing your PHP Memory Limit.
 * _Allowed memory size of 41943040 bytes exhausted_ – Indicated your PHP Memory
   limit is set to lower than 41 MB.
 * A lot of themes nowadays (such as Divi) require a memory limit of at least 128MB.
 * To see exactly what your PHP Memory Limit is:
 * * Create a new file in the root folder of your WordPress installation called 
   info.php
 * * Place the following code inside:
 *     ```
       <?php
   
       // Show all information, defaults to INFO_ALL
       phpinfo();
   
       ?>
       ```
   
 * * Access the file from your web browser (i.e. [http://yourdomain.com/wordpress/info.php](http://yourdomain.com/wordpress/info.php)
 * * Look for memory_limit
 * Depending on what value this is, I would recommend increasing to at least 128MB
   to avoid such errors with future plugins/themes.
 * A lot of web hosts allow you to modify this limit from inside of cPanel or with
   a custom php.ini file inside your /path/to/home.
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pre-Crunching (Sizing) Images](https://wordpress.org/support/topic/pre-crunching-sizing-images/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/pre-crunching-sizing-images/#post-10092125)
 * A 3MB Upload limit is really low.
 * [Check out this article](https://help.dreamhost.com/hc/en-us/articles/214200558-How-do-I-increase-the-PHP-upload-limit-)
   in their knowledgebase that will show you how to increase this via a custom php.
   ini file.
 * Personally, I set mine to at least 32MB as sometimes I have some really large
   media files that I don’t want to have to compress inside of Photoshop.
 * Instead, I use [ShortPixel Image Optimizer](https://wordpress.org/plugins/shortpixel-image-optimiser/)
   which will automatically compress and optimize on upload.
 * It’s free for your first 100 images, then credits are pretty cheap. I went ahead
   and bought some as it really increased the loadtime of my blog.
 * Hope this gets you straightened out! Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Website is loading very slow](https://wordpress.org/support/topic/website-is-loading-very-slow/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/website-is-loading-very-slow/#post-10092106)
 * It’s loading really slow here.
 * If I check the site using Google Chrome’s developer Console, I see a couple concerning
   errors:
 *     ```
       Failed to load resource: the server responded with a status of 500 (Internal Server Error)
       jquery-migrate.min.js?ver=1.4.1:2 JQMIGRATE: Migrate is installed, version 1.4.1
       custom_admin.php Failed to load resource: the server responded with a status of 500 (Internal Server Error)
       (index):565 GET https://www.kameleonchic.com/%E2%80%9C/s7.addthis.com/js/300/addthis_widget.js 404 (Not Found)
       ```
   
 * The 500 Internal Server Errors are coming from this URL:
 * [https://www.kameleonchic.com/wp-content/plugins/wp-stats-manager/css/custom_admin.php?ver=1.0.0](https://www.kameleonchic.com/wp-content/plugins/wp-stats-manager/css/custom_admin.php?ver=1.0.0)
 * I would recommend disabling the Wp Stats Manager plugin and then seeing if the
   site responds faster.
 * If so, I would then recommend re-installing or upgrading the plugin so you can
   get rid of that 500 Internal Server Error.
 * That should solve your issue!
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Authorization Required – cant log in](https://wordpress.org/support/topic/authorization-required-cant-log-in/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/authorization-required-cant-log-in/#post-10092095)
 * If your friend has access to cPanel you may want to login to File Manager from
   there, click the cog on the top to view hidden files, and then look.
 * You may also want to try another FTP program for the heck of it.
 * If you’re using a Mac I like [Transmit](https://panic.com/transmit/) but there
   is also [Filezilla](https://filezilla-project.org/).
 * Also, if you have SSH access you can navigate to the /wp-admin folder:
 * `cd /path/to/wp-admin`
 * and then type:
 * `ls -l`
 * To see if the .htaccess file is there.
 * Finally, if he is using cPanel, you may want to go to “Directory Privacy” to 
   see if it’s inside of there.
 * If all else fails, perhaps reach out to his web host to make sure they haven’t
   added a global .htaccess for the wp-admin directory. This is a common practice
   if they’ve recently had a brute-force attack on the server.
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My website is down](https://wordpress.org/support/topic/my-website-is-down-16/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/my-website-is-down-16/#post-10088484)
 * Looks like they’ve completely suspended the website as I just get their default
   suspended page when I try to access your website.
 * I would personally recommend giving them a call (or live chat) and asking them
   what specific limit you’ve reached. For example, disk space, Inode limit, CPU
   usage, mySQL connections, etc.
 * Once you know this, you can then evaluate your best option to getting the website
   back online. If you’re wanting to stay with BlueHost, they may have an upgrade
   to the package your on or maybe able to move you over to a VPS.
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How Do I email 11,000+ of my Subscribers?](https://wordpress.org/support/topic/how-do-i-email-11000-of-my-subscribers/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/how-do-i-email-11000-of-my-subscribers/#post-10088476)
 * Personally, I wouldn’t recommend emailing that many subscribes inside of WordPress.
 * If you’re on a shared hosting plan, your web host may even suspend you if they
   suspect you’re spamming. They also may have really low email relay limits making
   this task impossible.
 * If you’re on a VPS or dedicated server, you’ll have better luck, but you’re also
   going to be fighting against actually inboxing your users.
 * Whenever I want to do a mass mailing such as this, I use [https://convertkit.com/](https://convertkit.com/)(
   there are many others out there) where you can export your users from WordPress,
   import them into the email provider, and then email them this way.
 * Using tools such as this, you can track the mailing every step of the way, and
   will also have a much higher inboxing rate. Just make sure everything you’re 
   doing is CAN-SPAM compliant :).
 * Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Safari can’t establish a secure connection to the server” error on site](https://wordpress.org/support/topic/safari-cant-establish-a-secure-connection-to-the-server-error-on-site/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/safari-cant-establish-a-secure-connection-to-the-server-error-on-site/#post-10088457)
 * Looks like the domain has been placed on hold at the registrar level:
 * `Domain Status: clientHold https://icann.org/epp#clientHold`
 * [http://whois.domaintools.com/swaytheory.com](http://whois.domaintools.com/swaytheory.com)
 * ICANN requires all domains to use a valid email address in their Whois data.
 * If you ever updated this, it’s likely your domain registrar sent you a verification
   email to your contact address on file.
 * You have to click that link inside for the domain to stay active.
 * I’d recommend checking your Spam folder for your Registrant Email (I won’t publish
   it here) and looking for that verification email.
 * If you don’t see it, reach out to your domain registrar and have them re-send
   the verification email.
 * Once you click that verification link, your website will come back within a few
   hours.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [cannot access PDF or MP3 media files](https://wordpress.org/support/topic/cannot-access-pdf-or-mp3-media-files/)
 *  [Name Hero](https://wordpress.org/support/users/nameherocom/)
 * (@nameherocom)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/cannot-access-pdf-or-mp3-media-files/#post-10088442)
 * I’ve seen this problem before.
 * The fix for me was to SSH into my website and run the following:
 * `chown USERNAME.USERNAME FILE.pdf`
 * This assigned my “web user” access to the file, which allowed it to be downloaded
   via web browser. In my case, the permissions were lose when I migrated over from
   another server.
 * Also, you may want to try setting the permissions to 644 vs. 604.
 * Good luck!

Viewing 15 replies - 1 through 15 (of 35 total)

1 [2](https://wordpress.org/support/users/nameherocom/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nameherocom/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/nameherocom/replies/page/2/?output_format=md)