Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 31
Search took 0.08 seconds.
Search: Posts Made By: Nikey646
Forum: Post a PHP snippet 07-22-2012, 08:28 AM
Replies: 677
Views: 121,985
Posted By Nikey646
Is there anyway to download it still? Or is it a...

Is there anyway to download it still? Or is it a no go?
Forum: Post a PHP snippet 07-21-2012, 02:13 PM
Replies: 677
Views: 121,985
Posted By Nikey646
Yes, Windows 7, WAMP, None of them are, and...

Yes, Windows 7, WAMP,

None of them are, and but some will download.

I know the files are corrupt, because they are 0Kbs.

Link to video that failed to download earlier:...
Forum: Apache configuration 07-21-2012, 09:36 AM
Replies: 0
Views: 563
Posted By Nikey646
.htaccess Multiple Query Rewrite

First off, sorry for the noobiness of this, i've not really looked into .htaccess coding, but just know the basic re-writing.

my code: RewriteEngine on
RewriteRule ^([a-zA-Z]+)$...
Forum: Post a PHP snippet 07-21-2012, 08:50 AM
Replies: 677
Views: 121,985
Posted By Nikey646
the files are no longer downloading for me on the...

the files are no longer downloading for me on the free version posted here: http://www.codingforums.com/showpost.php?p=1192147&postcount=153 with the ffmpeg posted their

Logs:


FFmpeg version...
Forum: PHP 05-26-2012, 11:01 PM
Replies: 3
Views: 340
Posted By Nikey646
So you want to be able to upload an image and...

So you want to be able to upload an image and auto insert a img tag?

If you get your basic image processing tutorial and follow that, or just use a portion of it with My Upload Error Processing...
Forum: PHP 05-17-2012, 06:08 PM
Replies: 4
Views: 479
Posted By Nikey646
I just used view source on firefox in your page. ...

I just used view source on firefox in your page.

</head> <body> <div id="site">
Forum: Post a PHP snippet 05-16-2012, 01:55 AM
Replies: 0
Views: 874
Posted By Nikey646
Upload Error Processing

This is only the Error Processing portion of an uploading script.

It includes
"No File Selected"
"Unsupported File Type"
"File size is above limit"
Type errors.

It uses an Array for...
Forum: PHP 05-16-2012, 12:59 AM
Replies: 8
Views: 523
Posted By Nikey646
Hehe, i remember the youtube version of this you...

Hehe, i remember the youtube version of this you posted, dnt you get tired of posting the same thing over and over?
Forum: PHP 05-16-2012, 12:46 AM
Replies: 18
Views: 1,347
Posted By Nikey646
if(!$_FIILES['dem_uploader']['type'] ==...

if(!$_FIILES['dem_uploader']['type'] == "application/octet-stream"){
echo "Incorrect File Type, Please Upload A \".dem\" File";
} else {
*Your insert into database codey thingys*
}
That...
Forum: PHP 05-16-2012, 12:03 AM
Replies: 5
Views: 328
Posted By Nikey646
I like that last one. But in all honestly,...

I like that last one.

But in all honestly, just base64_encode/decode them when needed, unless they go through your scripts, there just going to get some random giberish, it's also a basic function...
Forum: PHP 05-15-2012, 11:56 PM
Replies: 4
Views: 445
Posted By Nikey646
Hehe, naw, the SQLite is just to proove to my...

Hehe, naw, the SQLite is just to proove to my friend i can use the PDO Extension :P

He thinks i cant convery any MySQL Project i do into a SQLite Adaption, but this one has be stumped.... I cant...
Forum: PHP 05-15-2012, 11:15 PM
Replies: 4
Views: 479
Posted By Nikey646
Firefox and Chrome Comparsions look perfectly...

Firefox and Chrome Comparsions look perfectly aligned with each other, even the scrolling is the same.

Are you sure it's not a client side issue?
Forum: PHP 05-15-2012, 11:12 PM
Replies: 4
Views: 445
Posted By Nikey646
I normally dont worry about SQL Security in my...

I normally dont worry about SQL Security in my SQLite re-writes, because they never get published ;) I've taken all the precautions i know in the MySQL Version which is live :D
Forum: PHP 05-15-2012, 05:20 PM
Replies: 4
Views: 445
Posted By Nikey646
Help - PDO, SQLite, Images.

Basically, recently i've been making some avatars for my friends, and sometimes the service i prefer decides to bug out and not let you save the images.... So i decided to create my own image hoster....
Forum: PHP 05-15-2012, 05:04 PM
Replies: 2
Views: 286
Posted By Nikey646
do you want to set $bHeader = true; to false?

do you want to set $bHeader = true; to false?
Forum: PHP 05-15-2012, 04:59 PM
Replies: 4
Views: 248
Posted By Nikey646
also, why is the target including the filename...

also, why is the target including the filename and target directory??

$target = $target . basename( $_FILES['photo']['name']);if(move_uploaded_file($_FILES['photo']['tmp_name'], $target))
Forum: PHP 05-14-2012, 07:20 PM
Replies: 10
Views: 529
Posted By Nikey646
Haha reading your reply made me feel like i was...

Haha reading your reply made me feel like i was being lectured.

But then again, one of the reasons that i avoid google is becuase it keeps bugging me to send me a text message, now thats fine for...
Forum: PHP 05-14-2012, 07:12 PM
Replies: 5
Views: 357
Posted By Nikey646
Hehe, i havnt worked with HTML Standards for a...

Hehe, i havnt worked with HTML Standards for a long time (: Didnt know they changed it to selected="selected", as because when i went to use it, "Selected" worked for me (:

dan-dan, now that i...
Forum: PHP 05-14-2012, 12:41 AM
Replies: 3
Views: 365
Posted By Nikey646
so do u want to DESC/ASEC your mysql query?

so do u want to DESC/ASEC your mysql query?
Forum: PHP 05-14-2012, 12:38 AM
Replies: 5
Views: 357
Posted By Nikey646
Simplfied version: if(isset($tempo[$i])){...

Simplfied version:


if(isset($tempo[$i])){ echo "selected"; }
Forum: PHP 05-13-2012, 06:44 PM
Replies: 10
Views: 529
Posted By Nikey646
Wouldnt a Math question with a 3 question array...

Wouldnt a Math question with a 3 question array designed similar to

*First digit* *Minus/Plus* *Second Digit* *Times/Devide* *Third Digit*

Also be ample, eg:
1+2*3
3-2-1

Using the...
Forum: PHP 05-13-2012, 06:11 AM
Replies: 4
Views: 436
Posted By Nikey646
So is your original problem fixed, or shall i...

So is your original problem fixed, or shall i continue looking for a solution?
Forum: PHP 05-13-2012, 05:51 AM
Replies: 8
Views: 850
Posted By Nikey646
As far as i can tell, this is a internal firefox...

As far as i can tell, this is a internal firefox caching problem, because i cannot get my cache to clear at all (No matter how much i try, firefox wont delete that video cache)

I'll do some...
Forum: PHP 05-12-2012, 05:17 AM
Replies: 10
Views: 529
Posted By Nikey646
Dont forget to make it so 1 email = 1 person, its...

Dont forget to make it so 1 email = 1 person, its not the best but it does slow them down along side of Captcha.

And also limiting account creation to about 5 per ip would be smart, but be careful...
Forum: PHP 05-12-2012, 04:23 AM
Replies: 8
Views: 850
Posted By Nikey646
Im not sure if this is at all revelant, but is...

Im not sure if this is at all revelant, but is there a reason that the script tags are completely outside the html tags? last time i checked it was standard for scripts to go into the head tags....
...
Showing results 1 to 25 of 31

 
Forum Jump

All times are GMT +1. The time now is 06:36 AM.