Rachel Baker
Forum Replies Created
-
Forum: Hacks
In reply to: Looking for help in developing a plugin.Any thread that offers any service for money can be closed at any time. We are not against paid services but these forums are not the right place for them. Please use WP Jobs instead.
Forum: Fixing WordPress
In reply to: Website repeatedly hackedHave you contacted your hosting provider? They would have access to log files that can help track down the vulnerability leading to the hacking.
Check for new users created.
Read all of the information here: https://codex.www.ads-software.com/FAQ_My_site_was_hacked
Another helpful resource is the Sucuri Site Scanner: https://sitecheck.sucuri.net/scanner/
Forum: Fixing WordPress
In reply to: Click on blog article link and nothing is showing up?It sounds as though you have a permission issue, which is why the TwentyTen theme couldn’t be removed.
the correct permissions scheme is simple to understand.
All files should be owned by the actual user’s account, not the user account used for the httpd process.
Group ownership is irrelevant, unless there’s specific group requirements for the web-server process permissions checking. This is not usually the case.
All directories should be 755 or 750.
All files should be 644 or 640. Exception: wp-config.php should be 600 to prevent other users on the server from reading it.
No directories should ever be given 777, even upload directories. Since the php process is running as the owner of the files, it gets the owners permissions and can write to even a 755 directory.More info here: https://codex.www.ads-software.com/Changing_File_Permissions#Using_an_FTP_Client
Forum: Plugins
In reply to: Plugin: Hello Bar – 500 Internal Server Error!!!What was the code you were told to add, and where did you add the code?
Forum: Fixing WordPress
In reply to: finding .htaccessIs your web hosting server running Linux & Apache or Microsoft Windows & IIS? If your server is running Windows & IIS there is no .htaccess file.
Forum: Fixing WordPress
In reply to: Click on blog article link and nothing is showing up?Have you changed anything recently? Perhaps installed a new plugin? Or changed your site url?
Forum: Fixing WordPress
In reply to: WP_Query in a Service ClassMy first thought is you need to declare the global $wpquery inside your class method.
Forum: Fixing WordPress
In reply to: How to do something if custom field has value xghp123,
You would just need to add a conditional like:
<?php $your_custom_field = get_post_meta($post->ID, 'your_custom_meta', true); if ( $your_custom_field == 'textstring' ) { echo $your_custom_field; } ?>
Forum: Fixing WordPress
In reply to: Theme says it's been activated but nothing changedAre you using a caching plugin?
Forum: Fixing WordPress
In reply to: One database, two different layouts.@bea,
Just a thought, but why not have all of the authors post to siteA and run some sort of migration script to move the content to siteB?
There hurdles with things like comments, etc but that would be the approach I would take.
Forum: Fixing WordPress
In reply to: Theme ErrorTracey,
Are you running a WordPress version below 3.4, such as 3.3 or lower?
Forum: Fixing WordPress
In reply to: Warning: mysql_fetch_array(): supplied argument is not a valid…HELP!Hello Dreate,
Can you disable the hwe_manage_business plugin?
Forum: Fixing WordPress
In reply to: WP Code is not writing to MySQLAre you using wp_update_meta to create/add content to the meta key?
https://codex.www.ads-software.com/Function_Reference/update_post_metaForum: Fixing WordPress
In reply to: Findin WordPress Pages in File DirectorySorry to hear about your sites getting hacked.
I know it can be very frustrating.Here is some info to get you started on how to clean up your sites;
https://codex.www.ads-software.com/FAQ_My_site_was_hacked/Here is a site scanner that can help locate the cause of the infection:
https://sitecheck.sucuri.net/scanner/Forum: Fixing WordPress
In reply to: Web App / Html PageDo you have a .htaccess file in your webapps subfolder?