Killer
Members
-
Joined
-
Last visited
Reputation Activity
-
Killer reacted to andy9l in Looking for help with 301 redirectsTry this in .htaccess:
RewriteEngine On
RewriteRule ^\/liveguide\/(\?id\=)?([0-9]{4}).*$ /liveguide/year.php?year=$2 [R=301,L] -
$bullets = preg_split("/\\r?\\n/", $string); // $string = $_POST['your_input']
echo "<ol>";
foreach ($bullets as $bullet) {
echo "<li>" . htmlentities($bullet) . "</li>";
}
echo "</ol>"; -
Killer reacted to DigitalSquid in Having trouble with blog post layoutThe easiest way would be to change the order of items in the HTML to:
<div class="post"> <div class="date"></div> <div class="heading"></div> <p class="grey"></p> </div>
And then change the CSS for .post .date from postion:relative to float:right
-
Killer got a reaction from Renaissance-Design in need advise on new desktop.A build. This was assuming the £500 didn't include an O/S or monitor. If it does that would change things of course.
CPU - http://www.ebuyer.com/product/251595
MOBO - http://www.ebuyer.com/product/252615
GPU - http://www.ebuyer.com/product/198817
RAM - http://www.ebuyer.com/product/173122
CASE - http://www.ebuyer.com/product/143854
HDD - http://www.ebuyer.com/product/193712
PSU - http://www.ebuyer.com/product/190751
DVD - http://www.ebuyer.com/product/250228
Total (with 5 day free shipping) - £491.36
This is a powerful quad core Sandy Bridge setup, featuring a USB 3.0 and SATA3 motherboard, with a fast 1TB HDD and a low profile silent GPU, just enough to give you the extra outputs and help out with graphical output, but it's no money wasting gaming GPU.
Be aware of the Sandy Bridge mobo issue though, as mentioned on the mobo description. It's not a massive problem as long as you don't use those SATA ports and you will be able to get a replacement mobo without the problem when they're available at no extra charge.
-
Killer reacted to zed in Database work - live music sitehave a look at appgini. it does all the backend work, you just define the database in a Windows application. Once you have that you just need a bit of PHP/MySQL on your page to go get the info.
http://www.bigprof.com/appgini/
-
Killer reacted to Renaissance-Design in Copyright warning noticeTo add to what notbanksy said, I wrote a guide on stopping hotlinking and other nifty .htaccess tricks (hotlinking stuff at the end of the post).
-
Killer reacted to notbanksy in Copyright warning noticeTo be honest I really think it's a waste of time. Anyone who's prepared to steal text or images isn't going to be put off by a copyright notice, whether it appears as a pop up warning, or at the bottom of your page. Within less than a minute I saved an image from that site to my desktop. Once from looking at the source code and copying the URL and once by disabling js before right click.
Your time would be better spent making sure nobody can hot-link your images and checking for stolen content periodically using a service such as http://www.copyscape.com/
Good luck
-
Killer reacted to ayoungh in Invoice CMS for freelancersHey Guys and Girls,
Thought I would share this awesome CMS for creating invoices for your clients.
http://www.myclientbase.com/
-
Killer got a reaction from Boyles Web Design in JakeBoyles.com Re-DesignTo me I'm seeing two sites almost in a sense. You've got the nicely designed, modern looking top part with nice smooth fonts, the wood effect etc, it all looks pretty nice. Then you get to the main area and things go a bit low-fi. You've got basic big white Arial titles and big arial text on a plain background. It just seems a bit dull compared to the top design to me, but again, that is just an opinion. If it was me I'd be looking at some fancier fonts for the headings, making the main bodies of text smaller and maybe doing something with the background.
Also I'm seeing some errors on the right hand side:
Warning: simplexml_load_file(http://jakeboyles.tumblr.com/api/read?type=photo&start=1&num=3) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.1 503 Service Temporarily Unavailable in /homepages/12/d178860016/htdocs/NewJake/index.php5 on line 118 Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "http://jakeboyles.tumblr.com/api/read?type=photo&start=1&num=3" in /homepages/12/d178860016/htdocs
Might want to look into that. On another note, why have you got "© 2010-2012", does the copyright end in 2012 because the world is going to end?
-
Killer reacted to zed in 10 free e-bookshttp://webdesignledger.com/freebies/10-free-ebooks-for-web-designers -
Killer reacted to j05hr in Something simple confusing meI thought I was going mad, i literally took everything out of your code except the image and the greybox CSS to see why it wasn't working. Then I loaded it into my working version and it worked so thought it was really odd.
It turned out it was your doctype.
Take out your first two lines
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
and add this instead and it should work
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
-
Killer reacted to Lev in Whats this?Look here, Tamizhan:
http://tutorialblog....shop-tutorials/
Advantages are obvious:
You can use any typeface you want. Your typeface composition will not have identically looking letters (try to write 'Mologogo' or 'Kaaba' with Karabine). Your typeface composition will not resemble any other one created with Karabine. Finally, you will learned new tricks in Photoshop for your own good (because 'It's never too much time spent on Photoshop'. And +1 to Empek)
-
Killer reacted to mteam in Problem with JS image rotatorTry this
add to the top of your css
*{margin:0;padding:0;}
-
Killer got a reaction from mrsminkie in Little issue with wordpress...Did you remember to change the database information in the wp_config.php file? That is the only thing I can think of, you've left the DB details from the first domain on there.