Justin
Forum Replies Created
-
Forum: Plugins
In reply to: [User Wallet Credit System] Payment failed error!Hi,
The check is redundant but ensures that the previous update to the wallet has been processed.
I am all open to hearing your opinion why the check should be removed. I never know what scenarios the plugin is being used and love to get as much feedback as possible.
Forum: Fixing WordPress
In reply to: 404 error in front page and hosting co is charging 500$ to solve itGood call..
Forum: Fixing WordPress
In reply to: 404 error in front page and hosting co is charging 500$ to solve itNM I will eat what I just said….. but worth a shot anyways
Forum: Fixing WordPress
In reply to: 404 error in front page and hosting co is charging 500$ to solve itBy the way, you owe me $450 ; )
Forum: Fixing WordPress
In reply to: 404 error in front page and hosting co is charging 500$ to solve itFirst remove all hardcoded reference links. I can see that the 404 is coming from scripts and style sheets trying to look for resources using “Localhost”
Never hardcode a link like that.. Use something like
<?php get_bloginfo('stylesheet_directory');?>/path/styles.cssForum: Fixing WordPress
In reply to: Can't login – just redirects to login screenI would elsewhere other than your site. I would start with the little things first. Check to make sure your cookies are enabled. I can recreated a login page redirect simply by disabling my browser cookies.
If you have a top notch antivirus I would also make sure that it is not hijacking your browser and blocking cookies as well.
Forum: Fixing WordPress
In reply to: Strange www redirectPut this code at the very top of your .htaccess file.
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]If you can go to your domain using www. and you are not forwarded to the non-www version, then more than likely your DNS is the one redirecting and you will have to setup your DNS correctly.
I just recently had this issue with a client. Lets say someone visited http://www.domain.com/blog/this-is-a-page-title, they would be redirect to http://domain.com instead.
if you do not know how to edit your DNS settings then I would contact your hosting provider and ask them to do it or you
Forum: Fixing WordPress
In reply to: Strange www redirectWhat are you using for the redirect (.htaccess, DNS) ?
Using .htaccess (if DNS is not trumping the redirect) can be written something like
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]The above will redirect to a non-www version and keep the request URI