rmathus
Forum Replies Created
-
Fixed by adding the following to the site’s conf:
large_client_header_buffers 4 16k;
Forum: Plugins
In reply to: [MapPress Maps for WordPress] MapPress Google API Error!Same here. When I am in Edit mode, it works. When I am out of Edit mode and logged out of WordPress admin, the error appears in the latest version of Chrome and in IE too, so it’s not a browser issue.
Edit: Figured it out. In WP Better Security Plugin, turn OFF “Display random version number to all non-administrative users” and then try it. Works now.
Forum: Installing WordPress
In reply to: Error after succesfully going through wp-admin.phpHello,
Make sure your MySQL username, database, and password are correct in the wp-config.php file within the root directory of the wordpress install. It should look as follows:
<?php // ** MySQL settings ** // define('DB_NAME', 'yourdatabase'); // The name of the database define('DB_USER', 'yourusername'); // Your MySQL username define('DB_PASSWORD', 'yourpassword'); // ...and password define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value // Change the prefix if you want to have multiple blogs in a single database. $table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_' // Use UTF8 for some plugins define('DB_CHARSET', 'utf8'); // Change this to localize WordPress. A corresponding MO file for the // chosen language must be installed to wp-includes/languages. // For example, install de.mo to wp-includes/languages and set WPLANG to 'de' // to enable German language support. define ('WPLANG', ''); /* Stop editing */ define('ABSPATH', dirname(__FILE__).'/'); require_once(ABSPATH.'wp-settings.php'); ?>
Hope this helps,
[signature moderated Please read the Forum Rules]Forum: Installing WordPress
In reply to: HTML and login not workingHello,
Your CSS file in the code is referencing https://ambreenshussain.com/gesamkunstnewyork/wp-content/themes/modicus-remix/modicus-remix/style.css
Make sure that file exists. As of currently, it does not exist, which is why you’re seeing the weird formatting on the page. This is typically accomplished by changing the wordpress URL in WordPress admin.
[signature moderated Please read the Forum Rules]
Forum: Fixing WordPress
In reply to: link in post without https:// ?Typically the format for this is skype://mynickname?call
Basically replace the https:// with the service/application you’re making the call to.
[signature moderated Please read the Forum Rules]
Forum: Fixing WordPress
In reply to: Blank blog?Hello,
The blank/whitescreening blog could be a number of things. First, check that safe mode is OFF in php.ini on your server. Make sure to change it to OFF and restart Apache (assuming you’re using Linux) after doing so. Otherwise, you will want to check the error logs for the site as those can often give an indication of the problem.
[signature moderated Please read the Forum Rules]
Forum: Installing WordPress
In reply to: error 500Hello,
This is likely due to the .htaccess file within your site. You will want to also check your error logs for any errors reported as those will typically narrow down the cause (it could be a bad .htaccess file, mod_rewrite not being turned on, etc).
[signature moderated Please read the Forum Rules]
Forum: Fixing WordPress
In reply to: localhost mail functionHello,
First, make sure sendmail is active on your server. You can do this by creating a phpinfo.php page with the following contents:
<?php // Show all information, defaults to INFO_ALL phpinfo(); // Show just the module information. // phpinfo(8) yields identical results. phpinfo(INFO_MODULES); ?>
After you have done that, browse to the page in a browser. Search for ‘sendmail’ and you should see something like
sendmail_path /usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i
If not, you’ll want to contact your host and get them to set up sendmail for your server. Otherwise, the lost password email won’t send out.
[signature moderated Please read the Forum Rules]
Forum: Installing WordPress
In reply to: No config FileHello,
Rather than changing the permissions on the parent folder and potentially opening up a security hole, you’ll want to upload a wp-config.php file as follows:
<?php // ** MySQL settings ** // define('DB_NAME', 'YOURDBNAME'); // The name of the database define('DB_USER', 'YOURUSERNAME'); // Your MySQL username define('DB_PASSWORD', 'YOURPASSWORD'); // ...and password define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value // Change the prefix if you want to have multiple blogs in a single database. $table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_' // Use UTF8 for some plugins define('DB_CHARSET', 'utf8'); // Change this to localize WordPress. A corresponding MO file for the // chosen language must be installed to wp-includes/languages. // For example, install de.mo to wp-includes/languages and set WPLANG to 'de' // to enable German language support. define ('WPLANG', ''); /* Stop editing */ define('ABSPATH', dirname(__FILE__).'/'); require_once(ABSPATH.'wp-settings.php'); ?>
After doing that, you should be able to finish the install.
[signature moderated Please read the Forum Rules]