aveter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't upgrade plugins: correct(!) ftp details not recognisedProblem is solved: folder user didn’t correspond to the ftp user.
Confusion was that there was folder user (myname) with EXACTLY THE SAME name as the ftp user (myname), but folders must have had a different user (apache)!
SUMMARY:
——–
WORNG SETTINGS WERE:
folder user: myname
user group: apache
ftp user: mynameRIGHT SETTINGS ARE:
folder user: apache
user group: apache
ftp user: mynameForum: Fixing WordPress
In reply to: Just Installed WP – all themes, styles & formatting disappeared!The problem is solved. As this was new site, it has to be added to apache and nginx config files. To do that, simply type in ssh:
/etc/nginx/conf.d/sites.conf ?
/etc/httpd/conf.d/sites.conf ?
Forum: Fixing WordPress
In reply to: Just Installed WP – all themes, styles & formatting disappeared!you were right – I went through my other WP blogs, all they had 775 for w-content/themes/THEMENAME, whereas on this problematic site permission was 755.
So I changed permissions on all folders beginning from wp-content down to the theme folder and including style.css file to 775, yet I still have this issue:
Forbidden
You don’t have permission to access /wp-content/themes/flexsqueeze140/style.css on this server.
What else could be the problem?
thank youForum: Fixing WordPress
In reply to: Just Installed WP – all themes, styles & formatting disappeared!What kind of ‘host issue’ this could be and what could be wrong with wp-content? Can you give some ideas of what to look for?
thanks
Forum: Fixing WordPress
In reply to: Just Installed WP – all themes, styles & formatting disappeared!I can’t see style.css in my browser either, however this same problem apears with THREE different themes included the default theme that comes with wordpress installation (v. 3.0.4)
Permissions are as follows:
style.php – rw-r–r– (644)
style.css – rwxrwxrwx (777) – I don’t think ‘too much permission’ can cause troubles, or can it?Forum: Fixing WordPress
In reply to: Just Installed WP – all themes, styles & formatting disappeared!The website with the problem is https://www.cityvillestrategytips.com
thanks
Forum: Fixing WordPress
In reply to: Fatal error: After Activating A Plugin – No Access To Site NowProblem solved.
Go to back to the previous version 1.6.11 and never ever Upgrade to 1.6.12, it’s either dodgy or there is a compatibility issue with older versions of WP.
To go back –
1. delete the new version of the plugin via FTP
2. Then copy old version of plugin (if you have it) to wp-content/plugins/
3. Activate 1.6.11Good luck
Forum: Fixing WordPress
In reply to: Fatal error: After Activating A Plugin – No Access To Site Nowand if I change “all-in-one-seo-pack-old” back to “all-in-one-seo-pack” I just get the same error as in the first post of this thread, i.e.:
Fatal error: Call to undefined function get_post_types() in /home/Myhomefolder/www/mysite.com/wp-content/plugins/all-in-one-seo-pack-old/all_in_one_seo_pack.php on line 727
Summary: manual installation does help.
Wp version: 2.7Forum: Fixing WordPress
In reply to: Fatal error: After Activating A Plugin – No Access To Site NowI have excatly the same error. Diasbling the old version and manually installing the new one didn’t solve the problem.
When I try to activate the new version maually, I get this error:
Plugin could not be activated because it triggered a fatal error.
Warning: require_once(/home/Myhomefolder/www/mysite.com/wp-content/plugins/all-in-one-seo-pack/aioseop.class.php) [function.require-once]: failed to open stream: No such file or directory in /home/Myhomefolder/www/mysite.com/wp-content/plugins/all-in-one-seo-pack-old/all_in_one_seo_pack.php on line 488
Any ideas how fix that?
thank you
Forum: Fixing WordPress
In reply to: Permalinks not working, please helpChris_K,
The problem solved.
the mod_rewrite was not enabled.Thanks for your help! :-)))
Forum: Fixing WordPress
In reply to: Permalinks not working, please helpThe problem is still not solved. ??
Forum: Fixing WordPress
In reply to: Permalinks not working, please helpYes, .htaccess does exist and it’s updated from empty one:
# BEGIN WordPress
# END WordPress
to this one:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPresswhen I switch from default permalink setting to “Time and date” option.
Is that the way you expect it to change?
Thanks