Reputation Activity
-
nahosting got a reaction from BrowserBugs in Phpv4 to latest versionHi Rob,
You can use any text editor with PHP, notepad++ will give you colour code options to make it easier to read.
I would suggest moving to PHP 7.3 as PHP 5 is no longer supported, so you are just going to be chasing your tail - https://www.php.net/supported-versions.php
All the best
Chris
-
nahosting got a reaction from JebaQpt in Doubt in select statementselect * from table where status = 1 and studentid in (select studentid from table where status = 0)
-
nahosting got a reaction from NOCK in web.config error - webm, ttf, ogvHi,
It may be because .mp4 is already defined so you need to remove that as well as duplicate entries are not allowed.
So adding the following line may help...
<remove fileExtension=".mp4"/> It may also be worth enabling errors so you can see the error, by adding the following section...
<system.web> <customErrors mode="Off" /> </system.web> So in this instance your entire web.config would look like this...
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.webServer> <staticContent> <remove fileExtension=".svg"/> <remove fileExtension=".ttf"/> <remove fileExtension=".eot"/> <remove fileExtension=".woff"/> <remove fileExtension=".woff2"/> <remove fileExtension=".mp4"/> <mimeMap fileExtension=".svg" mimeType="image/svg+xml" /> <mimeMap fileExtension=".mp4" mimeType="video/mp4" /> <mimeMap fileExtension=".m4v" mimeType="video/m4v" /> <mimeMap fileExtension=".ogv" mimeType="video/ogg" /> <mimeMap fileExtension=".webm" mimeType="video/webm" /> <mimeMap fileExtension=".ttf" mimeType="application/octet-stream" /> <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" /> <mimeMap fileExtension=".woff" mimeType="pplication/x-font-woff" /> <mimeMap fileExtension=".woff2" mimeType="font/woff2" /> </staticContent> </system.webServer> <system.web> <customErrors mode="Off" /> </system.web> </configuration> If you still have issue the company you host with should be able to help you out
Cheers
-
nahosting got a reaction from mccloud in moving a siteMoving a domain name is straight forward and would be your first option if you have a functioning website with a Google ranking.
If the domain belongs to you and you are fully paid up then there is no reason for the current hosting company to refuse your request to transfer it to another domain registrar.
Regarding Nameservers, you usually use the ones provided by your domain registrar. The DNS A records are then updated to point to your hosting IP address.
Even with the existing domain name you are likely to have to do redirects to the relevant pages on the new website.
Let us know if we can be of any assistance with your web hosting or domain names.
-
nahosting got a reaction from James Winfield in .Co.Uk or .Com?If you want one size fits all then go for .com
If the blog is purely for UK and won't be attracting internationally visitors then .co.uk will be fine.