Borge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website Redirection Gone Wrongyour site is hosted upon A2 Hosting. According to them
“If you have a shared hosting account, add a2hosting.com to the Server Name value. For example, if cPanel displays a2s78 for your server name, then the complete server name is a2s78.a2hosting.com.”
I checked your PTR record. It is a2ss27.a2hosting.com
Hope that helps.
It is actually fine.
@sterndata if plug ins on your site/blog needs more than 256M and the default is 256, then how can you have it adjusted then?. You may check this ticket below raised to WP core.
https://core.trac.wordpress.org/ticket/13847
https://core.trac.wordpress.org/attachment/ticket/13847/13847.2.patchHope it helps you understanding WP core.
Here are the following values you should add in the PHP.ini.
Some of there arent needed as it is added in default in server. However, some of the cases where in a faulty cageFS stops mysqli extensions from running thus it is better to add it in as well. But if your host is reliable, then no need for you to add ” mysqli extensions”.
memory_limit = 512M
upload_max_filesize = 512M
post_max_size = 512M
safe_mode = Off
max_file_upload = 512M
max_post_size = 512M
max_execution_time = 300suhosin.simulation = On
suhosin.post.max_vars = 4096
suhosin.request.max_vars = 4096
request.max_varname_length = 350
suhosin.session.encrypt = off
magic_quotes_gpc = Off
magic_quotes_runtime = Off
magic_quotes_sybase = Offextension=pdo.so
extension=pdo_sqlite.so
extension=sqlite.so
extension=pdo_mysql.so
extension=gd2.so
extension=curl.so
extension=mbstring.so
extension=mcrypt.so
extension=mysqli.so
extension=mysql.so
extension=pdo_mysql.soForum: Fixing WordPress
In reply to: Contact Form 7 possibly blocking 1 domainTalk to your host and choose remote mail exchange instead of local mail exchange.
Hope that helps.
Has this been added?
/* Multisite */
define( ‘WP_ALLOW_MULTISITE’, true );Should be in your w-config.php
Forum: Fixing WordPress
In reply to: Website Redirection Gone WrongUse this form of URL to access admin.
servername/~username/development/wp-admin
IPaddress/~username/development/wp-adminForum: Fixing WordPress
In reply to: url address issue in wordpress general tabBest to use this method ” Changing the URL directly in the database ”
Forum: Fixing WordPress
In reply to: How to edit FooterThat should be anywhere in the footer.php. See this thread below.
Forum: Fixing WordPress
In reply to: Media Library Migration and problemsGo to Settings> Media
Check the upload path
Should only be wp-content/uploads
any other path link home/username/public_html/ should be deletedForum: Fixing WordPress
In reply to: Can't open webpage from wifi IP-addressIt could be your IP address has been blacklisted by your host for some reason. You can check it with them.
Forum: Fixing WordPress
In reply to: Install a WordPress site from files?Hi sejodesign,
Those files in the screenshot seems to be enough already. But the database is not included in it yet. You can download it via PhpmyAdmin> export. Do not download the Information_schema, that is not included. Usually, you can see the database information in the wp-config.php. From there you will know which DB is used by the site.
Database should be downloaded in an .sql file ext.
Hope that helps.
Go to this path
home/username/public_html/wp-includes/default-constants.php
modify the codes in it into
// set memory limits
if ( !defined(‘WP_MEMORY_LIMIT’) ) {
if ( is_multisite() ) {
define(‘WP_MEMORY_LIMIT’, ‘256M’);
} else {
define(‘WP_MEMORY_LIMIT’, ‘256M’);
}
}if ( ! defined( ‘WP_MAX_MEMORY_LIMIT’ ) ) {
define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ );WordPress created default from 40 40 60 M. That is why this is getting the error. Additionally you should check the server side by adding PHP.ini file with the values below.
memory_limit = 512M
Hope this helps.
Forum: Installing WordPress
In reply to: Installation issuesIf you have other domain name under the same hosting, installing WordPress in directory home/gnatyjou/public_html/ wont affect the other domain names.
Other domain names has directory like home/gnatyjou/public_html/yourseconddomain.com wouldnt be affected.
Forum: Installing WordPress
In reply to: problems with quickinstallbirkenwald.net is available!
This caused the problem. Or maybe you have typed the domain name incorrectly here.
Forum: Fixing WordPress
In reply to: Catchable fatal error… default-constants.phpCorrect. Or easy way go to phpmyadmin
>wp_option > siteURL
edit it from
“O:8:”WP_Error”:2:{s:6:”errors”;a:1:{s:30:”wpdb_get_table_charset_failure”;a:1:{i:0;s:0:””;}}s:10:”error_data”;a:0:{}}”
into