Search found 29 matches

by mirra1515
Wed Feb 11, 2009 11:19 pm
Forum: PHP - Code
Topic: How to Send Email Reminders at User Chosen Date/Time
Replies: 0
Views: 122

How to Send Email Reminders at User Chosen Date/Time

I created a site that has a bunch of users and I need to be able to send them email reminders when they specify. For example, if a user had a meeting coming up...the site would auto-send them an email 10 minutes before the meeting to remind them of it. I know how to send PHP emails; however, I haven...
by mirra1515
Mon Jun 23, 2008 7:51 pm
Forum: PHP - Code
Topic: How do I make/test a checkout for my shopping cart script?
Replies: 2
Views: 233

Re: How do I make/test a checkout for my shopping cart script?

Thanks for your reply!

Just so that I have somewhere to start...what are some of the most heavily used payment processors?
by mirra1515
Sun Jun 22, 2008 5:20 pm
Forum: PHP - Code
Topic: How do I make/test a checkout for my shopping cart script?
Replies: 2
Views: 233

How do I make/test a checkout for my shopping cart script?

Hello all, I have made a good shopping cart application that essentially does all of the good old functions: add to cart, view products, search and so on. My problem is, I need to setup a way to allow customers to check out. I know I would just take the product ID #s from the shopping cart and add t...
by mirra1515
Sun Jun 08, 2008 12:21 am
Forum: PHP - Code
Topic: AFTER I USE UPLOAD SCRIPT, CAN'T VIEW IMAGE "FORBIDDEN"
Replies: 8
Views: 403

Re: AFTER I USE UPLOAD SCRIPT, CAN'T VIEW IMAGE "FORBIDDEN"

Thanks for pointing that out...just a typo sadly, not the the route of the problem.

To clarify, the directory used in my code is "uploads".

Thanks though, good catch!
by mirra1515
Sat Jun 07, 2008 12:17 am
Forum: PHP - Code
Topic: AFTER I USE UPLOAD SCRIPT, CAN'T VIEW IMAGE "FORBIDDEN"
Replies: 8
Views: 403

Re: AFTER I USE UPLOAD SCRIPT, CAN'T VIEW IMAGE "FORBIDDEN"

Thanks for the replies, I just tried CHMOD and it didn't work...maybe I'm using it wrong though? Right above where I am trying to display the image ("<img src="...">) I have: <?php chmod("/uploads/AOE-15.jpg", 0644); ?> All I get is this error: Warning: chmod(): No such file...
by mirra1515
Fri Jun 06, 2008 8:39 pm
Forum: PHP - Code
Topic: AFTER I USE UPLOAD SCRIPT, CAN'T VIEW IMAGE "FORBIDDEN"
Replies: 8
Views: 403

AFTER I USE UPLOAD SCRIPT, CAN'T VIEW IMAGE "FORBIDDEN"

I created a file upload script for a web project that I am working on. It works wonderfully...you upload the file and it appears on the server. BUT...when you go to view it...say using "http://www.mysite.com/uploads/image.jpg"...it says "forbidden" access denied and so on. This m...
by mirra1515
Mon Jun 02, 2008 1:32 am
Forum: Javascript
Topic: Looking for 2d ajax RPG engine to use for game..
Replies: 2
Views: 511

Re: Looking for 2d ajax RPG engine to use for game..

I'm sure something like that is possible; however, I'm willing to bet it would be more worthwhile to invest the time in another developer environment such as Flash that is better suited to handle such a project. Best of luck though...sounds like it would be quite a sight to see if it worked.
by mirra1515
Mon Jun 02, 2008 1:24 am
Forum: Javascript
Topic: How do I detect scroll position? And how do I go to posit.?
Replies: 5
Views: 2345

Re: How do I detect scroll position? And how do I go to posit.?

Thanks for your post, sounds like it could do the trick. I've looked up that command and have had little luck getting it to work for this purpose.

Any ideas on how I could implement it in my insertion script?
by mirra1515
Sun Jun 01, 2008 8:12 pm
Forum: Javascript
Topic: How do I detect scroll position? And how do I go to posit.?
Replies: 5
Views: 2345

Re: How do I detect scroll position? And how do I go to posit.?

califdon, thank you...I think thats what I need.

One thing though, once I have the location of the cursor stored to a var, how do I make the cursor go to that stored location if it is somewhere else in the textarea?
by mirra1515
Sun Jun 01, 2008 6:10 pm
Forum: Javascript
Topic: How do I detect scroll position? And how do I go to posit.?
Replies: 5
Views: 2345

How do I detect scroll position? And how do I go to posit.?

I have a script that inserts html tags around highlighted text; however, it has a glitch where when you insert a tag it automatically scrolls to the top of the textarea. Therefore, I need to use scrollTop to get the location of the highlighted material, and then send the cursor back to that position...
by mirra1515
Sun Jun 01, 2008 5:57 pm
Forum: Javascript
Topic: Tag insertion script auto scrolls to top after tag is added
Replies: 2
Views: 488

Re: Tag insertion script auto scrolls to top after tag is added

Thanks for the response, I'm looking into that now and I can't find what I'm looking for sadly...hmmm...
by mirra1515
Sun Jun 01, 2008 3:02 pm
Forum: Javascript
Topic: Tag insertion script auto scrolls to top after tag is added
Replies: 2
Views: 488

Tag insertion script auto scrolls to top after tag is added

My tag insertion script is used to place tags into a text area around highlighted text when a button is pressed. For example...the bold button would place html-style bold tags around highlighted text. In Firefox my the script works; however, after it inserts the tags around the text it scrolls to th...
by mirra1515
Sat May 31, 2008 7:37 pm
Forum: PHP - Code
Topic: CAPTCHA Program doesn't work on web but works on PC
Replies: 6
Views: 534

Re: CAPTCHA Program doesn't work on web but works on PC

I don't think GD is installed on this server. That would explain why this script wouldn't work. I didn't know you needed something extra installed to run these commands, that is enlightening. How would I go about installing GD on the server? BTW: Thanks a bunch for your post, very interesting, and p...
by mirra1515
Sat May 31, 2008 12:06 am
Forum: PHP - Code
Topic: CAPTCHA Program doesn't work on web but works on PC
Replies: 6
Views: 534

CAPTCHA Program doesn't work on web but works on PC

I have developed a simple captcha program with the help of some online resources and it works great on my local computer using apache. The problem is that once I upload it to a server it stops working. I imagine this has something to do with headers...but I am not sure. In anycase, here's my code: D...