Search results

  1. markeh

    Your favourite text editor for webdev?

    PHPStorm for projects, and atom for smaller bits and pieces.
  2. markeh

    Beginner Wordpress Help

    Hi, You'll need database access, do you have that?
  3. markeh

    PHP help please

    Couple of things, firstly strstr() is case sensitive. So if the text file contains 'Smith' and the user inputs 'smith', it won't find any matches. stristr() is case insensitive. Secondly, the way I'd do it is with a simple count. Then you can return number of results for that surname and also...
  4. markeh

    Help with seo

    Just to expand on this, you already have an @ record, this is pointing to: 188.65.113.193. You need to get this pointed to (what I can only assume judging by your DNS record) your shopify hosting IP address, which you've already kinda done with the www, but as that's a cname you'll need an IP...
  5. markeh

    Help with seo

    Well, I'll open with your homepage has no title tag.
  6. markeh

    OCUK's new website

    Same here, ordering the 850 evo....tried Chrome and Firefox just incase it was browser related. No joy with either.
  7. markeh

    Whats a block called in wordpress

    You can put a widget wherever you like.
  8. markeh

    Whats a block called in wordpress

    widgets normally I think
  9. markeh

    New website gets no visitors...?!

    Found this in the homepage code. Isn't this a bit strange? <meta name='robots' content='noindex,follow' /> Why wouldn't you want the homepage indexed? Hmmmmm, on further investigation, it appears to have that meta tag set on all pages (well those I've checked). I'd suggest the web devs put...
  10. markeh

    Magento display error on template

    It's probably because the 'add to cart' element is positioned absolutely off the bottom of the containing div element (which is why the product names which wrap over 3 lines lose more of the product price than the others). But it sounds like you want someone to fix it for you?
  11. markeh

    Different number required on same pictures, how to do ?

    That site is doing it by absolutely positioning a div with the numeric value over the image. <div class="num-inner"> <div class="inner-numb">5</div> <div class="inner-pics"> <a href="http://w1.dwar.ru/artifact_info.php?artikul_id=373" target="_blank"><img title="Омела" alt="Омела"...
  12. markeh

    PHP contact form help

    The hosting is probably php version 5.3 with short tags turned on, which explains why it worked on xampp, didn't work on the server but did when you removed the xml tag. PHP thinks the <?xml is actually trying to be PHP.
  13. markeh

    SQL import help

    It sounds like someone created the sql dump from phpMyAdmin or something and didn't click the create table field. Personally I'd go back to the original hosts and ask them for a proper database dump, rather than fixing it yourself.
  14. markeh

    Airbrush recommendations...

    I'm by far and away the world's worst model painter, however, I have the AS186 compressor/tank combo. You can usually purchase these with a gravity fed (you want gravity fed) airbrush, which'll do for starting out. Then look to Badger, Iwata etc when you feel competent. As for bits and pieces...
  15. markeh

    Online ordering system for website - take away fast food

    Do you have server side scripting knowledge at all (PHP, ASP.net, etc)?
  16. markeh

    Online ordering system for website - take away fast food

    Basically you just want to be able to take payments for your orders online? Is there anything in place on your website for this already? I.e. is the menu there? If so, are the prices stored anywhere?
  17. markeh

    IIS - stats for each site

    Hi, I use livebandwidth, but you could just take a look through the logfiles directory (c:\inetpub\logs\LogFiles usually) either manually or with some kind of file tree app (depending on the number of sites you have). I'd expect a logfile of an unvisited site to only be a few KB big. This is...
  18. markeh

    CSS/HTML annoyance.

    at least start the code with <html> and end it with </html> ;)
Back
Top Bottom