Borge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media Files wont upload, breakingHi raelasite
Have you check the settings> media>upload path
Should be wp-contents/uploads only
any other path such as home/user/public_html should be removedAlso check the memory limit for uploads via php.ini
Forum: Fixing WordPress
In reply to: Problem of connection from Philippinesrename your old .htaccess file and create a new one then add the following codes
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>Else, Mod_Security is a host plug in. You need to contact hostgator to check this issue.
UPDATE: seems you can reach Jonathan of Hostgator for help on the thread with same issue
https://wordpress.org/support/topic/admin-panel-not-acceptable-after-reload-404-not-found?replies=13
Forum: Fixing WordPress
In reply to: Windows 10 – logging in problemWhats the exact error message you get?
Forum: Fixing WordPress
In reply to: WP from production server to localhostTry checking these steps in the link below. Something you might have missed.
http://wpdreamer.com/2013/08/how-to-setup-a-localhost-wordpress-sub-domain-multisite-environment/
Forum: Fixing WordPress
In reply to: Cannot Connect to Database!Seems an issue on your permission.
755 is for the folder and 644 for files.However, you should define your your site URL in wp-config.php
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);Or change it in DB wp_options table >site URL
Forum: Fixing WordPress
In reply to: Allowed memory size exhausted, functions.phpbasically it depends on the error message. If it says
“Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 1853353 bytes) in “path”/
it means it used the 33.554432 MB allowable Mem limit. Firstly, James Huff’s instructions is correct as the trouble shooting. However, sometimes, “as mentioned before” sometimes, it does not work even you set the php.ini to 512M as it fails to synchronize especially that default-constants.php set the limit only up to 256M.
Sometimes changing the code limit in default-constants.php is the only way to fix…but they said its not advisable.
Try ask your host about it.
Forum: Fixing WordPress
In reply to: Allowed memory size exhausted, functions.phpSometimes, even if you add those in php.ini and htaccess it will still not work .if that doesnt work you can add this in wp-config.php.
//increase WP Memory Limit
define(‘WP_MAX_MEMORY_LIMIT’, ‘256M’);Forum: Fixing WordPress
In reply to: Password reset email not workingHi fwibbler,
Have you tried changing the password by going to the database? If not, please try communicate with your host and ask for assistance how to edit it should you have hard time changing it there.
Forum: Fixing WordPress
In reply to: Trouble accessing wp-adminFirstly, you need to check the error_logs and see the errors (You may post the errors here)
Secondly, check the PHP version if Theme compatible with the PHP version.
If you still are unable to log in as it does not recognise the log in detials, the follow these
1. Go to PHPmyadmin.
2. Choose the DB (database) used for the site.
3. Go to wp_users (depending on table prefix if wp_ or whatever is used)
4. Edit the user. In the password box, place the new password and make sure that Function is MD5.You can also visit this link for screenshots on how to do it.
Forum: Fixing WordPress
In reply to: Wix Causing Redirect Issues for WP-AdminYes you can. But you need to contact your host about it for them to give you a temporary URL. But it’ll be complicated if you build it using that coz you will have to change all link back to the original domain name.
Sample of temp. URL using Linux Server.
http://servername/~username/wp-admin or Windows/Linux
http://IPaddress/~username/wp-adminSo you will be building the site using the temp. link IPaddress/~username. Then once you’re finish with the project and ready to publish it, you need to change all the links back to your original domain i.e http://yourdomain.com
Forum: Fixing WordPress
In reply to: Image uploading not possibleFirstly, You can check the Path of the uploads under settings>Media
If you can see there home/user/pulic_html/wp-contents/uploads, then remove everything except wp-contents/uploads.
Secondly you check the upload_max_filesize under you php.ini
Moreover, if issue still persistTry downloading this
Forum: Fixing WordPress
In reply to: Upload ok but not present in MediaCheck the Settings> Media
upload path should only be wp-contents/uploadsIn my hosting company we allow max 512M RAM. Thats why I suggested it. I also monitored customers calling me bout this issue. Right after editing the file, they never get issue at all.
However, changing this file allows u to use lots of plug ins though but the disadvantage is if you will use lots of them it may affect server child processes and might disable the CageFs mounted in the server.
So just be careful using lots of plug ins.
but as they said, its not recommended.. so i will not recommend it to you as well no more. You may talk to ur host bout it.
additionally you may add this in the wp-config.php as an option
//increase WP Memory Limit
define(‘WP_MAX_MEMORY_LIMIT’, ‘256M’);Forum: Fixing WordPress
In reply to: The king of all "error occurred in the upload" glitches…Try using 5.4 or higher PHP and check as well Settings> media
upload path is wp-content/uploads. please omit any path prior to that if any like “home/user/pulic_html”Forum: Fixing WordPress
In reply to: What is this warning?Try checking this blog below. This might help.
http://oneoveractivemind.blogspot.com/2011/06/php-class-x-has-no-unserializer.html