RossMitchell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to test as non-admin non-liveThinking on my feet here.
You could hack the code in the “Plugin: Coming soon page by seedprod” code so that it didn’t activate / redirect / block the session when the session is from your IP address. Come to think of it, this should be a feature someone has already invented.
Have you asked in “Plugin: Coming soon page by seedprod” plugin support page ?Forum: Localhost Installs
In reply to: Virtualhosts address after wordpress installationI agree that it is not specifically a WordPress problem. In particular the failure of:
– http://mysite.dev/wordpress/readme.html
and success of:
– http://localhost/mysite.dev/wordpress/readme.htmlWhen you fix this you will be a very long way towards fixing everything.
Disable the plugin “dokan-lite”, possibly using FTP or your website hosting management file manager and rename the dokan-lite directory.
Then get support from the dokan-lite plugin authors.Forum: Fixing WordPress
In reply to: need help removing borders.Please don’t past big slabs of code, it is not that useful, the link to the page is much more productive.
I see that you have a table creating a grid of images, but there is no border on that table.
Using my browser inspector I find that the double line lime green border is on a div element with a class of “page-holder”, the style is:
border: 6px double #33ff00;
To change it you can:
– login to your WordPress admin dashboard
– navigate to your “roster” page
– on the top edge select “customizer” then click on the additional css tab.
– add a phrase like this:.page-holder { border: 1px single #33ff00; }Or whatever border style you want.
Forum: Fixing WordPress
In reply to: Add Specific Post In PagesIn the editor used for posts, there is a list of your categories with tick boxes, you tick which categories the article in the post needs. After making changes you click UPDATE.
Forum: Fixing WordPress
In reply to: Can a software program be integrated into a WordPress website?Another option is to use javascript, the app loads in one of your pages and runs in the browser.
It really depends upon just what the app does and how it is written.Forum: Fixing WordPress
In reply to: Only is output. Content is missing FrontendClearly not a localhost problem.
Also the “page I need help with” has a typo. “www-” not www.Forum: Fixing WordPress
In reply to: Tried to create SSL and HTTPSI am pretty sure you should have obtained and installed your SSL certificate BEFORE changing your site address and wordpress address.
Yes your domain is registered and managed at godaddy, but no one gets hosted at wordpress.org. The nameserver settings probably show hosting is at BLUEHOST, does this ring a bell ?
Most of your problems will be fixed when you go back to using http, do this by adding these lines to your wp-config.php file:
define('WP_HOME','http://reintention.com'); define('WP_SITEURL','http://reintention.com');Add these lines just before it says “STOP EDITING”, you should now be able to get back into your site.
I attempted to go to your site:
http://www.reintention.com
and after permitting a security exception TWICE, found myself at:
https://www.rypatmul.com/
and then at WIX !Forum: Fixing WordPress
In reply to: Pop up pluginYou could just copy the entire HTML link assembly into the page / post in HTML mode. Or put the code into a custom HTML widget.
Forum: Fixing WordPress
In reply to: SEO Hack/now fixed but now can’t log in.At the very least you need to get back into your site, recover your login as administrator. Depending upon how good a job “sitelock” was able to do, you may find that some of the steps in the above guide have already been covered, do them anyway.
As a starting point here are several ways of recovering your login:
https://codex.wordpress.org/Resetting_Your_Password
All work, it just depends which tools you have access to and what you are comfortable with.Forum: Localhost Installs
In reply to: Virtualhosts address after wordpress installationI have read through these files and everything look correct.
The only change you need is to enable “mod_rewrite:
#LoadModule rewrite_module modules/mod_rewrite.soFrom “httpd-vhosts.conf” I see
# Please see the documentation at # <URL:http://httpd.apache.org/docs/2.4/vhosts/> # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration.The details around using “-S” are:
Windows example httpd.exe -S This command will dump out a description of how Apache parsed the configuration file. Careful examination of the IP addresses and server names may help uncover configuration mistakes. (See the docs for the httpd program for other command line options)In addition please check all of the error log files, the locations are listed in the files.
- This reply was modified 8 years, 2 months ago by RossMitchell.
- This reply was modified 8 years, 2 months ago by RossMitchell.
Forum: Fixing WordPress
In reply to: Plugin or online service for comparing pronunciationI very much doubt if PHP or Javascript can form part of this audio signal analysis system, hence I can’t see anything for you in WordPress. Just maybe iOS or android are a better match, good luck in scouting through the various appstores.
Forum: Fixing WordPress
In reply to: Swiss system tournament with WordPressCertainly feasible.
No particular theme requirements, I would suggest that you keep your options open by choosing one that is responsive, initially be specific as to which devices and screens you will support.Suggest that you spend some time browsing the plugins archive, searching on key words etc. Being able to browse and read everyone’s contributions is a big plus.
Forum: Fixing WordPress
In reply to: i am unable to login admin panelFrom Sydney:
– the admin login still has the redirect error
– the homepage is OKThe traditional way of defeating geoblock techniques is to setup a VPN. I am sure you will be able to setup a VPN if you have a legitimate reason for accessing the site.
Forum: Fixing WordPress
In reply to: how to develop wordpress theme without using plugins builderMuch as catacaustic has said. I have yet to actually develop a theme, but have extensively customised child themes and plugins, I would add:
– I develop in localhost, much easier to flip between locally edited files. Use the IP address of the server in site and wordpress address so that you can test from other computers on your LAN
– Of course you have text editors which color code css / php etc.
– Use code verifiers like: https://www.piliapp.com/php-syntax-check/
– enable debugging
– don’t get fixated upon a specific browser, regularly review with firefox / chrome / IE / iOS / android etc. This way capabilities such as responsive get built in rather than added on. Get to know some of the different browser inspectors.
– occasionally deploy to an unknown subdomain and verify your css + html etc http://validator.w3.org/
– when you think you are finished, deploy to the subdomain and use one of the render in every browser / every version services and review the screenshots, extract from your website logs all the different browsers your visitors have used and check that their needs are covered.