Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 101
Search took 0.35 seconds.
Search: Posts Made By: iLochie
Forum: JavaScript programming 07-04-2012, 04:27 PM
Replies: 4
Views: 331
Posted By iLochie
Thanks for the insight Philip, your comments are...

Thanks for the insight Philip, your comments are always welcomed. I'll try what you've recommended. Now I just have to figure out how to obtain any quotients in the expression..
Forum: JavaScript programming 07-04-2012, 06:53 AM
Replies: 4
Views: 331
Posted By iLochie
Parsing an equation to determine if it will be a division by zero

I've got a problem on my hands. I've got control of the input to my function, but I don't know what the equation will be. As the numbers that the equation is calculating against are also unknown,...
Forum: PHP 05-21-2012, 01:03 AM
Replies: 1
Views: 763
Posted By iLochie
Using cURL to get a Live auth cookie

First off, if you have a script that will login hotmail users, that's fantastic! I would sincerely appreciate anyone PMing me a link/code. However, if you do not, and are still intrigued:

Hey...
Forum: PHP 02-06-2012, 02:23 AM
Replies: 4
Views: 376
Posted By iLochie
Awkward. Though you could define it as a...

Awkward.


Though you could define it as a constant..
Forum: PHP 01-29-2012, 06:01 PM
Replies: 15
Views: 1,515
Posted By iLochie
Hahah, what are you trying to prove? I understand...

Hahah, what are you trying to prove? I understand you know what you're doing, you seem to have some sort of self confidence problems though? At any rate, I figured the part about the unique IDs was...
Forum: PHP 01-29-2012, 05:19 PM
Replies: 15
Views: 1,515
Posted By iLochie
Your lack of politeness is offensive. However, I...

Your lack of politeness is offensive. However, I had skipped past your mention of the register_shutdown_function method because you completely missed his intentions in the first half of your post....
Forum: PHP 01-29-2012, 04:41 PM
Replies: 7
Views: 712
Posted By iLochie
Most secure solution: Rename the image to a...

Most secure solution: Rename the image to a random string and salt it with the user's username (or use a more complex hashing algorithm) then save the hash in the database with their user id. Now you...
Forum: PHP 01-29-2012, 04:28 PM
Replies: 15
Views: 1,515
Posted By iLochie
I don't think this is possible in PHP. You'd have...

I don't think this is possible in PHP. You'd have to keep track of IP addresses, and check if it is already downloading a file. As far as I know there's no way of determining what has happened to the...
Forum: PHP 01-16-2012, 05:26 AM
Replies: 4
Views: 625
Posted By iLochie
1. Hence "Cron" 2. Ok, thanks. 3. I have to...

1. Hence "Cron"
2. Ok, thanks.
3. I have to back up files on the site as well, not just MySQL, so I want 1 script doing it all.
Forum: PHP 01-16-2012, 02:57 AM
Replies: 8
Views: 500
Posted By iLochie
I think everything that can be said has been...

I think everything that can be said has been said, but just to reiterate in simple terms:

When you create a variable (say $newsArticles = $article1.$article2.$article3) the $newsArticles variable...
Forum: PHP 01-16-2012, 02:46 AM
Replies: 4
Views: 625
Posted By iLochie
MySQL Backup using PHP Cron

I'm looking to do a backup (probably nightly) of my database, the size is expected to grow to a substantial size. What I'd like to know, because I'm not an expert with database management by any...
Forum: JavaScript programming 12-28-2011, 04:51 PM
Replies: 0
Views: 373
Posted By iLochie
HTML5 Web Sockets trouble

So I’m developing an application that will be based on the web sockets protocol, so far so good. The problem arises when I started to think about only sending data to one user. Currently the only...
Forum: PHP 11-19-2011, 06:45 PM
Replies: 2
Views: 373
Posted By iLochie
It's not a big issue, however I wanted to make...

It's not a big issue, however I wanted to make sure I understood the functional use of session_id and who has access to modifying it.

Hah, I actually forgot I have a whole sanitation/validation...
Forum: PHP 11-19-2011, 10:01 AM
Replies: 2
Views: 373
Posted By iLochie
Is session_id() secure?

I'm using the session_id() method to directly (that is, without sanitation) input the resulting id into a MySQL database. Assuming I've done everything right (the user is not able to change the...
Forum: JavaScript programming 10-27-2011, 02:30 AM
Replies: 0
Views: 222
Posted By iLochie
Javascript limiting output

I'm programming a function that breaks a massive string (2 million + characters) into "manageable" chunks of 500,000 characters. The function goes as follows:
var json_string =...
Forum: PHP 10-26-2011, 10:50 PM
Replies: 5
Views: 320
Posted By iLochie
I've discovered through my PHP ini file that...

I've discovered through my PHP ini file that suhosin.post.max_value_length is set to 1 million characters max, which is likely my problem. How can I change this?
Forum: PHP 10-26-2011, 10:36 PM
Replies: 5
Views: 320
Posted By iLochie
That's the thing that was 128M, just checked.

That's the thing that was 128M, just checked.
Forum: PHP 10-26-2011, 10:26 PM
Replies: 5
Views: 320
Posted By iLochie
PHP won't accept/jQuery won't send massive variable

Ok, so I'm having a bit of trouble finding the root of my problem. When I post data to my server through the jQuery POST method, the browser is capable of sending the data to the server. The server...
Forum: Apache configuration 10-02-2011, 08:45 AM
Replies: 3
Views: 834
Posted By iLochie
Ahh great! Thank you, looks like I'll have to...

Ahh great! Thank you, looks like I'll have to disallow certain usernames... Shouldn't be a big problem!
Forum: Apache configuration 10-02-2011, 07:26 AM
Replies: 3
Views: 834
Posted By iLochie
Short URLs with similar directories

Here's what I need, I'm trying to make short urls available for users on my domain. For example: domain.com/user. Yes, this is a necessary function of my site, not just for convenience. The problem...
Forum: PHP 08-09-2011, 07:42 AM
Replies: 1
Views: 727
Posted By iLochie
How to show current user's time

Alright, so I have a script that submits time stamps to the database according to the server's local timezone. Therefor, any time stamps in the database are in say "America/New_York" time since Unix...
Forum: MySQL 08-06-2011, 02:05 AM
Replies: 0
Views: 459
Posted By iLochie
JOINing 3 tables within a UNION

Hey there, I'm working on a search bar for my website, the basic idea is to gather user information contained in different tables based on the id that matches the username that a person searches for....
Forum: JavaScript programming 07-18-2011, 08:49 PM
Replies: 2
Resolved RegExp URI Hash
Views: 289
Posted By iLochie
ERM, edit: I'm still having the same problem as...

ERM, edit: I'm still having the same problem as before, the first returned value is the entire string. Edit again: Nevermind, I see you have to start at key #1 to return the first value, as opposed...
Forum: JavaScript programming 07-18-2011, 08:32 PM
Replies: 2
Resolved RegExp URI Hash
Views: 289
Posted By iLochie
RegExp URI Hash

Hey there, I'm looking to have some functionality similar to Twitter in that pages are loaded through ajax depending on the path that is shown in the URI hash.

For example:...
Forum: MySQL 07-07-2011, 08:03 PM
Replies: 7
Views: 741
Posted By iLochie
Thanks, your posts have been very useful in...

Thanks, your posts have been very useful in helping me come to a resolution! I've worked out a query that is based on your second last post and everything is working perfectly! Thank you very much...
Showing results 1 to 25 of 101

 
Forum Jump

All times are GMT +1. The time now is 04:07 AM.