phe.le
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can we move joomla user to wordpressHi,
If the directions from that link works, then you can try this extension: https://extensions.joomla.org/extensions/migration-a-conversion/users-import-a-export/21177
Forum: Fixing WordPress
In reply to: Top Header not loading in iOS safariI would asked that person to help you with this problem since he/she installed a cache plugin and edited your theme to increase the speed.
Forum: Fixing WordPress
In reply to: Show one post from child categoriesHi,
If I understand it right, you’re getting the child categories with the outer loop and one latest post with the inner loop.
The problem with the second loop is that you’re getting a post category 18 instead of using the child categories you got from the outer loop.
I haven’t test your code, but the inner loop should look something like this:
$args = array( 'post_type' => 'property', 'posts_per_page' => 1, 'orderby' => 'date', 'order'=> 'DESC', 'cat' => $post->term_id );
$post refers to foreach( $categories as $post ) from the outer loop.
More info: https://codex.www.ads-software.com/Function_Reference/get_categories
Forum: Fixing WordPress
In reply to: Site speed: anatomy of a page requestHi there,
I would say that the WordPress developers are very good at what they do, so I wouldn’t worry about what’s going on with their core files. Most sites are slow because the themes are not well coded or the sites are being hosted on a slow server. I’ve worked on many different sites hosting many different places, but I have been successfully making them faster by using the W3 Total Cache plugin and follow recommendations from Google PageSpeed Insights.
https://www.ads-software.com/plugins/w3-total-cache/
https://developers.google.com/speed/pagespeed/insights/Forum: Fixing WordPress
In reply to: 404 Sorry! Page Not Found! (Now What?)Yes, whatever plugin you’re using, it’s redirecting login.php page to https://www.designsandsigns.net/not_found
If you have FTP access, you can just backup the plugins folder, then delete the plugin that’s causing the problem.
I don’t think there is any other way to login.
Forum: Fixing WordPress
In reply to: 404 Sorry! Page Not Found! (Now What?)I would disable whatever the plugin you use by renaming its folder or remove it from the plugins folder. Then you can try to login again.
Hi,
I just noticed that the four sites above do not have <meta name=”generator” content=”WordPress X.X.X” /> and njcu.cc does have it. Maybe that site was looking for that piece of info to detect the CMS.
You can also try https://guess.scritch.org/
Forum: Fixing WordPress
In reply to: 404 Sorry! Page Not Found! (Now What?)Maybe there is a setting from one of your plugins (sign-in) that does not allow visitors to view without signing in first.
Forum: Fixing WordPress
In reply to: Updated and now it's ruined!What is the site url?
Hi Gary,
1. whatcms.org isn’t 100% accurate.
2. wpbns.com, adamsadamslaw.com, https://www.njcu.cc/nj350 use themes that have a builder/build from other frameworks. This possibly creates confusions for the the site in 1.
3. compassionforanimals.org is not a WordPress site.You’re doing correctly; however, the links and images still have old URLs. You can follow the instructions below. Then update your permalinks in wp-admin.
Forum: Fixing WordPress
In reply to: new domain and redirectingI hope your host can help you with this if you’re not experienced with moving WordPress sites. But here is how you do it:
1. Add FreeCarnation.com as an addon domain to your cPanel
2. Copy the WordPress all files in the root folder to your FreeCarnation.com folder.
3. Make a copy of the database and follow the instructions to change the url. Replace https://coralynxblog.com/ with https://freecarnation.com/UPDATE wp_options SET option_value = replace(option_value, 'https://66.147.244.55/~coralynx/', 'https://freecarnation.com/') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'https://66.147.244.55/~coralynx/','https://freecarnation.com/');
UPDATE wp_posts SET post_content = replace(post_content, 'https://66.147.244.55/~coralynx/', 'https://freecarnation.com/');
I can probably help you real quick, if you’re not able to do this.
Forum: Fixing WordPress
In reply to: quick question about subdomainsHi,
There is no reason to have a separate installation of WordPress, but you choose to do it that way and the universe will not collapse. Simply remove “something” page from original WP.
Forum: Fixing WordPress
In reply to: Help with uploading localhost site to web domain1. Free server? What’s the catch? You mean index of posts? You can set the Front Page to display a static page under “Settings” -> “Reading” in wp-admin.
2. You need to change the “home” and “siteurl” inside “wp-options” table in PHPMyAdmin.
Forum: Fixing WordPress
In reply to: new domain and redirectingHi caralynx,
Looks like the domain is working fine, but you have been using that IP address when working on the www.ads-software.com site. First, I would backup the database, then you will have to use PHPMyAdmin to change a few things in that database.
1. Click on the database, then run this SQL code to rename the home url and siteurl (This can also be done in wp-admin under Settings -> General):
UPDATE wp_options SET option_value = replace(option_value, 'https://66.147.244.55/~coralynx/', 'https://coralynxblog.com/') WHERE option_name = 'home' OR option_name = 'siteurl';
2. Replace the guid
UPDATE wp_posts SET guid = replace(guid, 'https://66.147.244.55/~coralynx/','https://coralynxblog.com/');
3. Replace posts or pages that use old url
UPDATE wp_posts SET post_content = replace(post_content, 'https://66.147.244.55/~coralynx/', 'https://coralynxblog.com/');
Add www. to your domain if you want the url to be https://www.coralynxblog.com/
I’ve done this many times. The instructions was from https://www.mydigitallife.info/how-to-move-wordpress-blog-to-new-domain-or-location/. Good luck!
EDIT:
Since the same domain name was used on wordpress.com, you will only need to install a redirection plugin (https://www.ads-software.com/plugins/redirection/) on the new site to redirect old url to new url.
You can see the old urls by searching this on google.com “site:coralynxblog.com”