-
Client using logo without payment/permission - Advice please
Perhaps you should make a little website with your original artwork vs. a photograph of the `stolen` materials, asking visitors if the companies actions were untoward or not? (don't say there were yourself, invite others opinion without giving one).... Or forget about it as £ 25 isn't worth the time.
-
Client using logo without payment/permission - Advice please
The European Commerce Directive is similar but implemented slightly differently, if you can demonstrate illegality then the host has a limited amount of time to remove or respond before losing its limited liability protection (and of course fatuous claims are themselves illegal). We generally use the familiar term DMCA.
-
Private info exposed on Whois, what to do?
It should be updated with your host in their control panel, the changes should take a matter of minutes to be applied to public whois so it sounds like you're either changing it in the wrong place or the host has an issue updating whois records.
-
Private info exposed on Whois, what to do?
http://www.icann.org/en/resources/compliance/complaints/whois/inaccuracy-form https://secure.nominet.org.uk/account/whois-complaint.html http://www.nominet.org.uk/uk-domain-names/about-domain-names/domain-lookup-whois/incorrect-whois-data --- There are different rules on whois data validitiy depending on the registrar, but its something they're all becoming a lot more hot on now. I would recommended not using fake details on whois, to-do so would be to break the contractual agreement between you and regisrar and effectively giving up any rights to the domain.
-
Private info exposed on Whois, what to do?
With .UK domains you can hide the whois information assuming you are not conducting business on the domain (Google adverts = conducting trade/business) and Nominet (the .uk registrar) does not charge its customers for this service (but they may charge you). All of the other (common) domain extensions you cannot hide the whois information, but you can pay someone to appear on the whois for you. Enom and other domain providers all supply their own 'privacy protection' version of this service at cost. There is a requirement to keep your whois information updated and accurate, if you deliberately obfuscate your address information in the whois your domain will be suspended, taken off you or lost.
-
Client using logo without payment/permission - Advice please
_If_ you can prove the content is yours and you feel all avenues or discussion/neegociation have been exhausted, then you could make a DMCA request to her web host which will (within 24 hours) cause the content to go offline. The host will then contact the other party and either the content will remain offline or they will counter claim your DMCA request as is invalid and it will appear back online. After this you could then consider seeking resolution via the courts or be satisfied your work isn't being used for free (with attribution or compensation).
-
Launch dates for new gTLD
There are more gTLD than people interested in purchasing gTLD. Hoarding gTLD for future use does not make sense. Your content what is going to work in Google, the domain itself means next to nothing. BTW, HostLove is another generic brand of ioMart Group PLC incase you wondered.
-
New gTLDs
If Nominet had NOT chosen to restructure .UK at the same time as the new gTLDs launches then I would of said *.uk had the stability and brand to persist in the competative marketplace. Unfortunately they are removing all the good work they did previously and screwing over the UK internet economy (only the largest registrars and nominet will benefit) and will find their previous monopoly erroding over time. I think .com is in a much stronger position, but will still become less relevant as people get used to the new URL (or indeed URL continues to become less relevant due to search-engines and gateways). /2p
-
htaccess needed for MVC urls?
Yes, you can use .htaccess and mod_rewrite to rewrite all requests to file.php and then within file.php and use the $_SERVER[] values to determine the path and views you want to load. You can also do a similar thing through 404 error handling (likewise in .htaccess but using Apache error pages) and force the header to the correct status. Try using a .htaccess and phpinfo.php with the following contents under a sub-domain and have a play around with different URL: .htaccess: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^phpinfo\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> phpinfo.php: <pre> <?php print_r(parse_url($_SERVER['REQUEST_URI'])); print_r($_SERVER); ?> </pre>
-
-
-
-
how to use @font-face
I'm not massively familiar, but http://stackoverflow.com/questions/18369036/bootstrap-3-glyphicons-not-working looks quite relevant.
-
-
email screenshot button
> piece of software for customers to design an acticle of clothing If this is where the image/composite is being created, then this is going to be the easiest and ideal way to export it. You'd otherwise be looking at something very hacky or dependant on the clientside.
-
Video before site load
Google: jquery modal on page load (will explain better than I can here) Within the modal html, embed your video player. I would definitely avoid auto-play and make sure it's easy for people to close/skip.
-
-
-
Google+ on the rise
Seeing as this has been re-raised. Wasn't/isn't a Google+ profile created for everyone using a Google service then/now? It would be interesting to see fresh statistics since Google+ became the enforced comment/authentication method for youtube.com
-
My DJ Website
I find the size of the header a little annoying, it also means your contact link isn't visible (on my resolution). It does the job, nothing seems to be particularly broken, the colours wouldn't be my personal choice but with your mixcloud photo covers they kinda make it a bit more sense/personality. My only concern due to the MixCloud iframes would be the ratio of text to html/non-local content on some pages, but if you keep the blog updated/content fresh it will generally help. I'd maybe also bold the most important words on your index for immediate impact: "Reading, Berkshire" and "underground house/minimal", "house", "disco", "techno".
-
Why is my MySQL being written to twice with only one code line?
So this information is populated automatically by visiting a page? Is that also configured with some sort of 404 handler (via mod_rewrite or otherwise). Based on the limited information supplied and the above being correct, it sounds likely that the page you are visiting has a link/reference to a bad bit of media (maybe css, maybe an image, maybe something else) and when visiting the page its actually making two requests. There's nothign syntaxically incorrect with your SQL statement. Beyond that, please provide more code, further information and/or a test URL so we can take a look for you.