jbusci
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Page Templatesok click that green icon in the tray again, and the bottom choice is
put online.make sure its online ??
Forum: Fixing WordPress
In reply to: FTP credentials required, not workingset directory permission in your host domain
Forum: Fixing WordPress
In reply to: WordPress URL Problemok do this
https://www.bobborst.com/tools/whatsmyip/
what is the internal and external ip addresses you end up with?
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin/login.php was not found on this server.glad i could help. I have actually been here waiting for help with a problem I have, so no biggie. In fact, I have fixed my own problem too. I will be updating that post shortly!
Forum: Fixing WordPress
In reply to: Custom Page Templatesis the wamp icon in your system tray by the clock green?
what happens when you open a browser and type in localhost?
Forum: Fixing WordPress
In reply to: WordPress URL Problembigbass, you need to make the url in wordpress be the real url and not the localhost url so that others can see your site and the links work properly from external.
you need to figure out why your computer is resolving your real url to your router login page.
sounds like bad host file or maybe bad port forwarding.
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin/login.php was not found on this server.see if you can get in to the database and change the theme to default.
again tho, what is odd is that your site is fine on the non-www version accept for admin.
here are some instructions for changing theme with phpmyadmin
https://wordpress.shadowlantern.com/change-wordpress-theme-in-phpmyadmin/
Forum: Fixing WordPress
In reply to: WordPress URL Problemlike I said, if your isp is going to complain about traffic on port 80, or block it, or threaten to cancel your service over port 80 traffic, then you route your traffic through a different port.
What are they going to do block every port? lol
btw,
`”You also may not exceed the bandwidth usage limitations that Verizon may establish from time to time for the Service, or use the Service to host any type of server.”‘
All those evil gamers out there violating TOS. lol
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin/login.php was not found on this server.well if you didn’t keep notes on what you did, then you’ll be going by memory.
So working backwards, what was the last change you made while in wp-admin?
Forum: Fixing WordPress
In reply to: Use blank page ?yes, I understand. You have a special post type that you want to use.
I could explain how to do this, but it might be easier to follow this instruction here
https://wpmu.org/wordpress-custom-post-template-plugin-style-individual-posts/
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin/login.php was not found on this server.if you have removed all you plugins, then I’ll need more info on everything you have done to get to this point. a dev log would be good.
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin/login.php was not found on this server.i’d create a back up of the plugins folder and then delete the contents.
im guessing this is still some sort of htaccess problem. your site is working fine on the non-www except the admin area.
Forum: Fixing WordPress
In reply to: Use blank page ?yeah, his theme has that template in it already.
What I showed you is how to make that template.
If your theme doesn’t have that template you have to make it.
Forum: Fixing WordPress
In reply to: The requested URL /wp-admin/login.php was not found on this server.yeah, see if you can login here
https://prestigernc.com/wp-login.php
no www. are you using a redirect plugin or some kind of SEO plugin?
Forum: Fixing WordPress
In reply to: Use blank page ?make a page template with nothing in it.
if you want to display content, you’ll need the loop in there.blankPage.php
<?php
/*
Template Name: Blank Page
*/
?>
<html>
<head><title>Blank Page</title><style type=”text/css”>
body background-color: “black”;
</style>
<body>
/**Your loop code**/
</body>
</html>If you want to reuse this template on a bunch of videos, you’ll be better off creating a custom post type which is a little more coding involved.
If you use this, you won’t have any navigation at all, so it’s really only useful IMO inside an Iframe.