Kiril Ivanov
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t update wordpressThis is usually caused by incorrect permissions in the wp-content/ folder, as WordPress needs to create a temporary folder to put the files when downloaded, before install.
Fix this by changing the “wp-content” folder’s permissions to 755.
If this doesn’t work check the wp-config.php file and if it’s not already defined, add:
define(‘WP_TEMP_DIR’, ABSPATH . ‘/../temp/’);
Forum: Plugins
In reply to: [WooCommerce Better Usability] Exclude home page from the rulesI’ve tried this, but the buttons still show up on the home page. Do you plan to add such an option in the admin options in the future updates?
Forum: Plugins
In reply to: [WooCommerce Better Usability] Exclude home page from the rules* “card” to be read as “cart“
Forum: Themes and Templates
In reply to: [Point] Customizer not workingMaybe I should add that my website’s posts and content are in Cyrillic.
Okay, thank you for the details π
Forum: Plugins
In reply to: [wp-greet] [Plugin: WP-Greet] wp-greet Form-Post/PageSolved this one by adding a [wp-greet] into a post/page in the blog. Probably this should be added to the readme file.
Forum: Plugins
In reply to: [Plugins: Formbuilder] Crashed wp-admin panel HELP!!!The error in question can be caused by a lot of reasons. What you can do is to try removing the plugin which you have uploaded.
Simply remove its files from the wp-content/plugins/ folder and it should be automatically disabled. You may also try removing the plugin which is mentioned into the error message:
add-to-any-subscribe
Please make sure to create backups of the plugins files. In case this does not fix the issue you can re-upload them.
Forum: Plugins
In reply to: Question about integrating Re-captcha plugin to WordPress 3.0Thank you very much Mike, it’s working flawlessly π
Forum: Plugins
In reply to: Question about integrating Re-captcha plugin to WordPress 3.0Maybe I should try implementing the re-captcha code manually into the registration page?
Forum: Networking WordPress
In reply to: how to remove category base /blogWhen you’ve set up your network, you have pasted a code within your .htaccess file.
There within the rewrite rules the ones provided by the application should have been:
RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . /blog/index.php [L]You should note the /blog/ on the second and last lines of the code. Now depending on what you’ve updated your links to, you should either remove the blog completely and leave the code as:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L]or replace the ‘blog’ text with the new “category” name that you’ve applied within the settings.
Forum: Plugins
In reply to: uploaded plugin and now dashboard won’t loadYou can also try moving the plugin folder out of your wp-content/plugins/ folder. This way the back end should start working properly.