Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 26
Search took 0.04 seconds.
Search: Posts Made By: Chrystyan
Forum: Apache configuration 04-17-2013, 08:48 PM
Replies: 0
Views: 462
Posted By Chrystyan
Specific Rewrites?

So, I'm trying to setup my rewrites to be processed globally instead of having to create each individual section. Consider the following:


RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f...
Forum: JavaScript programming 03-18-2013, 01:58 PM
Replies: 10
Views: 407
Posted By Chrystyan
This is possible with PHP, consider the following...

This is possible with PHP, consider the following resources:

http://php.net/manual/en/function.file-get-contents.php
http://php.net/manual/en/ref.curl.php

Those scripts can be highly effective...
Forum: PHP 03-17-2013, 09:21 PM
Replies: 6
Views: 250
Posted By Chrystyan
Have you tried to print out the variable values...

Have you tried to print out the variable values to see what is being stored and why it's not true? Simply as a troubleshooting step?
Forum: Site reviews 03-16-2013, 08:26 PM
Replies: 1
Views: 1,139
Posted By Chrystyan
Sort of going to jump a bit off topic on this, as...

Sort of going to jump a bit off topic on this, as I do not have any recommendations for the humor you're attempting to reach...

You may want to include some sort of disclaimer or other something...
Forum: HTML & CSS 03-16-2013, 08:02 PM
Replies: 2
Views: 202
Posted By Chrystyan
Just add the following code to your CSS: ...

Just add the following code to your CSS:


.box a { text-decoration: none; }


Then specify within each specific section if you want to change the text-decoration. I tested this and it worked...
Forum: JavaScript programming 03-15-2013, 10:55 PM
Replies: 20
Views: 523
Posted By Chrystyan
A few changes to this code:...

A few changes to this code: http://jsfiddle.net/ynhCN/1/ and you could find what you need. Essentially you create the list as an array, randomly select an item, remove it from the array, and repeat.
Forum: HTML & CSS 03-15-2013, 10:23 PM
Replies: 1
Views: 191
Posted By Chrystyan
Perhaps you've fixed it, but I don't see it. It...

Perhaps you've fixed it, but I don't see it. It may be my perception, but it appears to be perfectly aligned with the slideshow... it looks decent and changes size as I resize my browser.

It is a...
Forum: HTML & CSS 03-15-2013, 10:18 PM
Replies: 2
Views: 153
Posted By Chrystyan
Based on the few differences I'm seeing here,...

Based on the few differences I'm seeing here, they look like changes you've made. Possibly you need to re-upload the script, or re-open the page source, clear cache from Chrome, or something like...
Forum: PHP 03-15-2013, 10:10 PM
Replies: 3
Views: 201
Posted By Chrystyan
Can you post the full class? I'm assuming there's...

Can you post the full class? I'm assuming there's something simple being passed over from what the error is.

Also, in your last two code boxes, your variables are $daraArray when it was previously...
Forum: General web building 03-15-2013, 09:46 PM
Replies: 6
Views: 9,057
Posted By Chrystyan
You can use your .htaccess files to allow...

You can use your .htaccess files to allow visitors to view your site with your old domain name instead of the new one. This maintains the original SEO you did with the old domain but it may have lost...
Forum: General web building 03-15-2013, 09:42 PM
Replies: 4
Views: 7,346
Posted By Chrystyan
A thought on this is Caches or Propagation. Given...

A thought on this is Caches or Propagation. Given that you just switched hosts and just uploaded new content, it's possible you're just seeing old data as well. Does the design you see slightly...
Forum: HTML & CSS 03-15-2013, 09:39 PM
Replies: 6
Views: 343
Posted By Chrystyan
You don't have to change the IDs for the popup,...

You don't have to change the IDs for the popup, you nearly need to handle what is being received by the popup better with Javascript. You can change the innerHTML to do that. You may want to do a bit...
Forum: HTML & CSS 03-15-2013, 09:15 PM
Replies: 2
Views: 190
Posted By Chrystyan
A likely problem is that your host isn't allowing...

A likely problem is that your host isn't allowing it, but it could also be the other website is not allowing it.

If you're simply trying to copy the contents of the website, try this PHP code to...
Forum: HTML & CSS 03-15-2013, 08:51 PM
Replies: 2
Views: 254
Posted By Chrystyan
My suggestion is not to use a table. It's a bit...

My suggestion is not to use a table. It's a bit extensive and intensive for what you're trying to accomplish. Try this instead:


// You want to ensure that all of your styles are handled in...
Forum: PHP 03-15-2013, 08:37 PM
Replies: 1
Views: 50
Posted By Chrystyan
There's a few aspects to this type of website. ...

There's a few aspects to this type of website.

The first is that you can paste a URL from multiple sources and they're all accepted. Essentially what it does is take the user's input, check where...
Forum: Computer/PC discussions 03-15-2013, 08:28 PM
Replies: 16
Views: 1,759
Posted By Chrystyan
Intelligent use of your computer is the best...

Intelligent use of your computer is the best anti-virus >.>. CCleaner + adblocks + safe browsing practices = no risk. You don't just magically get viruses, they happen from not being aware or paying...
Forum: PHP 03-15-2013, 08:19 PM
Replies: 1
Views: 62
Posted By Chrystyan
The code appears directly in your main page...

The code appears directly in your main page source. This is most likely from your .htaccess file. I recommend contacting your Host and asking their support team to take a look at it. If you're...
Forum: PHP 03-15-2013, 08:15 PM
Replies: 2
Views: 171
Posted By Chrystyan
$string = 'foo'; if...

$string = 'foo';

if (preg_match('/[\'^£$%&*()}{@#~?><>,|=_+¬-]/', $string))
{
// one or more of the 'special characters' found in $string
}

Credit to chigley from...
Forum: Career, job, and business ideas or advice 03-15-2013, 08:11 PM
Replies: 3
Views: 1,081
Posted By Chrystyan
This may be of assistance to you:...

This may be of assistance to you: https://developer.apple.com/

Developing mobile applications for Apple is one of the best ways to get your game noticed as they dominate the mobile market.

In...
Forum: Graphics and Multimedia discussions 03-15-2013, 04:46 PM
Replies: 19
Views: 5,226
Posted By Chrystyan
If I may make a design suggestion, purely from my...

If I may make a design suggestion, purely from my perspective...

remove the light purple background behind your game categories. The reason I recommend this is because having it on the plain white...
Forum: PHP 03-15-2013, 02:47 PM
Replies: 5
Views: 248
Posted By Chrystyan
$sql = "SELECT * FROM `videos` WHERE...

$sql = "SELECT * FROM `videos` WHERE `category`='1' LIMIT 2";
$result = mysql_fetch_assoc($sql) or die('The error was: ' . mysql_error() . '<br />The query was: ' . $sql);

while ($row = $result)...
Forum: Computer/PC discussions 03-14-2013, 11:04 PM
Replies: 20
Views: 4,497
Posted By Chrystyan
Firefox would do themselves a huge favor if they...

Firefox would do themselves a huge favor if they were to solve their memory sink issue. If they were to adapt some of Chrome's technology to increase its speed while maintaining core fundamentals,...
Forum: PHP 03-14-2013, 10:27 PM
Replies: 5
Views: 248
Posted By Chrystyan
This would be a simple SQL statement. ...

This would be a simple SQL statement.


$sql = "SELECT * FROM `videos` WHERE `featured`='true' LIMIT 3";
$result = mysql_fetch_assoc($sql) or die('The error was: ' . mysql_error() . '<br />The...
Forum: Career, job, and business ideas or advice 03-14-2013, 10:14 PM
Replies: 8
Views: 3,963
Posted By Chrystyan
Pays the best? Hard to answer. Unfortunately,...

Pays the best? Hard to answer. Unfortunately, cost of living is different everywhere. Sr. PHP Developers in my area make around 90k a year and our cost of living is really low. I've seen job offers...
Forum: Career, job, and business ideas or advice 03-14-2013, 10:05 PM
Replies: 7
Views: 2,314
Posted By Chrystyan
The best paid people are experts in a particular...

The best paid people are experts in a particular field. While they generally appeal to a smaller crowd, they can then charge more for their expertise. While computer science itself may limit you,...
Showing results 1 to 25 of 26

 
Forum Jump

All times are GMT +1. The time now is 09:33 AM.