tsagita
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cant login to admijHi, this is cause your browser not accept cookies
Try to:
– change your browser
– Enable cookie at your current browser
– Use incognito (chrome) or Private mode (Firefox)When I upgrade WP, i’m prefer to use wget then extract at current directory ^_^.
Forum: Fixing WordPress
In reply to: Pages Throwing Code at Top After UpdateI think the error isn’t fatal, to hide the error, try to open wp-config.php then put this code
define( 'WP_DEBUG', false );
Forum: Localhost Installs
In reply to: Error Establishing a Database ConnectionHi bro, your problem site is “Error establishing a database connection”.. this is cause your site cant connect to mysql server.
Please check:
1. Open wp-config.php, check line DB_USER, DB_PASSWORD, DB_HOST, DB_NAME. Make sure the values is same with mysql access2. If you use Dedicated server or VPS hosting, try to restart your mysql server by typing :
-service mysql restart
or
-service mysql startif you use shared hosting, ignore this step
I think, upgrade WP through FTP not solve this problem but you can try it
Forum: Hacks
In reply to: wpdb->insert escapinghave you try addslashes() ?
read more here https://php.net/addslashes
Forum: Fixing WordPress
In reply to: Notice: Undefined property: stdClass::$post_content in query.phpjust notice bro, add this code in wp-config.php
define(‘WP_DEBUG’,false);
hope its work ^_^
Forum: Fixing WordPress
In reply to: I want to add page names with .phptry:
Setting->Permalink, use custom structure like this /%postname%.phphope its working ^_^
can you send script on line 90 – 110?
Forum: Fixing WordPress
In reply to: Website is not loading Problemyou can do it via cpanel if you have it on your server/host
Forum: Fixing WordPress
In reply to: Website is not loading ProblemHi Sammex
first, download filezilla here https://filezilla-project.org/download.php?type=client..this will help you to manage your files on the server
enter your host, username, password for ftp or ssh in filezilla
after connected, you can see your files, then right click and change file permission..here the screenshot https://goo.gl/photos/cWidKmkGHPXwWf4i7
sorry if my english bad
Forum: Fixing WordPress
In reply to: Website is not loading Problemhi Sammex, this is cause your system permission..try to change to 755 or 775.. you can read more here https://linuxcommand.org/lts0070.php
hope this work ^_^
Forum: Fixing WordPress
In reply to: Woocommerce as homepage?1. create page that contain woocommerce shortcode, see https://docs.woothemes.com/document/woocommerce-shortcodes/
2. go to wp-admin => setting => reading setting => set front page display to your woocommerce shortcode page (no. 1)
hope it help you ^_^
Forum: Fixing WordPress
In reply to: Fresh Install or repair Hacked WP ?I think that is malware, and malware created by machine/not human.. Try to scan your website using malware scanner
Forum: Fixing WordPress
In reply to: Remove Featured Image From Single Postfeatured image code is saved in content.php
try to delete this line
echo get_the_post_thumbnail(blablablabla);
hope this work ^_^
Forum: Fixing WordPress
In reply to: Too much errors in Error Log (cPanel)add this code in wp-config.php
define(‘WP_DEBUG_LOG’, true);or read this https://codex.www.ads-software.com/Debugging_in_WordPress
hope it work ^_^