sailboatvn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-comments-post.php Error 500Okay, I finally got to bottom of this issue. After a day of googling, tried many suggestions from various of blogs, forums without any luck. I have decided to debug it myself. Surprisingly, the problem came from wp-includes/class-phpmailer.php. Somehow, our server could not handle the php function send() properly. Besides, make sure always check if a class exists before including it.
E.g.
include_once($this->PluginDir . 'class-smtp.php');
Need to change it to:
if (!class_exists("SMTP")) include_once($this->PluginDir . 'class-smtp.php');
Forum: Fixing WordPress
In reply to: wp-comments-post.php 500 Internal server errorFluotonic, thanks for a reference.
I have tried to follow the instruction, but the problem still persists. It’s really weird.
We are having the same issue with admin-ajax.php file as well and for this reason, we could not approve any people’s comment.
Any other ideas would be grateful.
thanks.
Forum: Fixing WordPress
In reply to: wp-comments-post.php Error 500We’re having the same issue.. sometime the admin-ajax.php also having 500 internal server error. Suspected that server’s configuration. I will do some more research/google and see if there is any solution for this.
Forum: Plugins
In reply to: Passing $post_ID to wp_mail(), please help!andrewkhunn, you should use
function email_notification($post)
and post id would be
$post->ID
It works for me.
Forum: Everything else WordPress
In reply to: How do I change my forum email addressAt this moment, it still not working at all ??
Forum: Plugins
In reply to: One of my plugin hacks my site?It looks like i’m not alone here. I searched for keyword “ajfcvpqm” in google and it came back with few sites having the same problem.
Forum: Plugins
In reply to: One of my plugin hacks my site?Hi Rich,
Thanks for your reply. I will get in touch with my hosting tomorrow for sure.. Its hard to believe that I’ve done something stupidly like this ??
@wladimir I will do when I see him ??
All the bests
Forum: Fixing WordPress
In reply to: WordPress 2.6 incredibly slowSimon, it took only 2.42s to load your page which is absolutely fine and far better than my blog.
Check out mine: https://www.sailboatvn.co.uk it normally take about 10s.. My WP version is 2.6.1 (latest one) and its been upgraded twice.
Forum: Fixing WordPress
In reply to: html tag stripped off in Archive CatergoryHi moshu,
Thanks for your helps. I really appreciate it.
Cheers,
Dave
Forum: Fixing WordPress
In reply to: wp-statsHi GamerZ,
I do apology for not reading instruction carefully. I managed to sort it out now.. just follow this instruction
Cheers
Forum: Fixing WordPress
In reply to: wp-statsHi Gamer, just wondering if you find the reason why the plugin does not work for wp2.6. I actually got the “NOT FOUND PAGE” when trying to view the statistics links domain.com/stats
Forum: Fixing WordPress
In reply to: WordPress.com Stats Plugin not workingyou may want to try this https://lesterchan.net/portfolio/programming/php/
Forum: Fixing WordPress
In reply to: htaccess in wrong placeYou need to put your .htaccess file under wordpress folder and change its content as below:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . wordpress/index.php [L]
</IfModule>or might be
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Cheers,
[sig moderated]
Forum: Fixing WordPress
In reply to: Switching HostsI think you’d better move all the files, database from GoDaddy server to the new one and try to run your blog via the preview mode. Once everything is okay, you then need to change the DNS to the new server. Please bear in mind that pointing DNS to new server would normally take 24h to propagate..
All the best
[sig moderated]
Forum: Fixing WordPress
In reply to: wp-statsHi There,
Its worth checking this out from Plugin’s author’s forum https://forums.lesterchan.net/index.php/topic,2300.0.html
Its a compatible issue with wp-2.6