Goto Page: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
Actual Results
- Mars
- Forum: Website Hosting Forum
- Topic: Godaddy VDS problems
- Subject: Godaddy VDS problems
- Replies: 2
- Views: 264
- Subject: Godaddy VDS problems
Posted: July 13th, 2009, 3:13 pm
I know it's not a good idea. It was only temperary for debugging purposes. But when I upload a file on wordpress, it looks like it uploads, but the picture is not on the server and it shows a blank image on the site (i.e. no image). edit: apearently wordpress is uploading the pictures into wp-conten...
- Mars
- Forum: Website Hosting Forum
- Topic: Godaddy VDS problems
- Subject: Godaddy VDS problems
- Replies: 2
- Views: 264
- Subject: Godaddy VDS problems
Posted: July 13th, 2009, 2:22 pm
I got a godaddy vds and I'm having major problems that I didn't have with shared hosting. I'm really getting fed up with godaddys hosting service. One problem is file permissions. When I upload wordpress I can't do anything cause the permissions are too low, so I set everything to 777, but then I st...
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: Website replacing characters with question marks (?)
- Subject: Website replacing characters with question marks (?)
- Replies: 10
- Views: 275
Posted: June 11th, 2009, 7:18 am
It's only with foreign languages. And certain symbols. The weird thing is that it was working when I had it running on top of wordpress. So I'm thinking that it's not something with the database, but in the front end that's causing this.
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: Website replacing characters with question marks (?)
- Subject: Website replacing characters with question marks (?)
- Replies: 10
- Views: 275
Posted: June 10th, 2009, 11:49 am
all I'm doing is grabbing it from the database and using nl2br() and replacing urls with links. When inserting all I do is strip_slashes() I had the code on a wordpress installation and it was working fine, then we changed it to our own design (not really changing the backend code at all) and someho...
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: Website replacing characters with question marks (?)
- Subject: Website replacing characters with question marks (?)
- Replies: 10
- Views: 275
Posted: June 10th, 2009, 11:15 am
Yea, I am:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
here's an example of what I'm talking about:
http://www.calendartweet.com/105
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
here's an example of what I'm talking about:
http://www.calendartweet.com/105
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: Website replacing characters with question marks (?)
- Subject: Website replacing characters with question marks (?)
- Replies: 10
- Views: 275
Posted: June 10th, 2009, 9:21 am
It's all done on the fly, so I'm kind of looking for a way to parse the extra characters, cause I need them to show. For instance if someone posts something in spanish it needs to show the accent marks. etc.
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: Website replacing characters with question marks (?)
- Subject: Website replacing characters with question marks (?)
- Replies: 10
- Views: 275
Posted: June 10th, 2009, 8:50 am
Hi, I have a website that stores user-submitted text and then places it on a page and I'm getting lots of question marks:
"For this year�s Company Visit, we will learn about..."
any idea how to fix this? Thanks.
"For this year�s Company Visit, we will learn about..."
any idea how to fix this? Thanks.
- Mars
- Forum: Website Reviews
- Topic: SITE REVIEW: Calendar Tweet
- Subject: SITE REVIEW: Calendar Tweet
- Replies: 4
- Views: 227
- Subject: SITE REVIEW: Calendar Tweet
Posted: May 22nd, 2009, 10:45 am
Yea, we're actually about to do a major re-design, to make it look more like a twitter application. We're gonna make it more simple and stylish. I'll let you guys know when we update it.
In the meanwhile, tell me more about what you think of the functionality.
Thanks.
In the meanwhile, tell me more about what you think of the functionality.
Thanks.
- Mars
- Forum: Website Reviews
- Topic: SITE REVIEW: Calendar Tweet
- Subject: SITE REVIEW: Calendar Tweet
- Replies: 4
- Views: 227
- Subject: SITE REVIEW: Calendar Tweet
Posted: May 17th, 2009, 6:15 pm
This is fully launched and not really classified as beta, but we just officially launched monday so there may be a few minor bugs here and there, but for the most part, it's running smoothly. If you wanted to make the gaming community aware of this site, I would have no objections. In fact our marke...
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: Practicing PHP/mySQL
- Subject: Practicing PHP/mySQL
- Replies: 7
- Views: 340
- Subject: Practicing PHP/mySQL
Posted: May 17th, 2009, 2:28 pm
Make a basic one-user twitter clone page. Just have a text box that asks what you're doing and every time you submit it, it puts it in the database and then below that have your past updates. That should be a simple, fun assignment for you. It doesn't have to look fancy or anything it could just be ...
- Mars
- Forum: Website Reviews
- Topic: SITE REVIEW: Calendar Tweet
- Subject: SITE REVIEW: Calendar Tweet
- Replies: 4
- Views: 227
- Subject: SITE REVIEW: Calendar Tweet
Posted: May 17th, 2009, 2:23 pm
My site is a twitter web application. The concept is a lot like facebook events, but for twitter. You can create an event and it automatically posts it in your status. Twitter users can click on it and retweet your event or add it to their calendar. Then 12 hours before the event all of the attendin...
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: java Graph
- Subject: java Graph
- Replies: 1
- Views: 246
- Subject: java Graph
Posted: April 22nd, 2009, 6:45 pm
import java.util.*; import java.util.graph.Graph; BFSIterator.java:106: cannot find symbol symbol : class Graph location: class BFSIterator Graph g = new Graph(); ^ BFSIterator.java:106: cannot find symbol symbol : class Graph location: class BFSIterator Graph g = new Graph(); BFSIterator.java:2: pa...
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: What does an int initialize to by default in C?
- Subject: What does an int initialize to by default in C?
- Replies: 4
- Views: 247
Posted: April 20th, 2009, 9:03 pm
Ok, cool makes sense. Is there a particular implementation reason for that? Is the overhead for initializing it to null too expensive, or is it just that it was never put in the standardization for whatever reason?
- Mars
- Forum: Programming / Scripting / Coding Forum
- Topic: What does an int initialize to by default in C?
- Subject: What does an int initialize to by default in C?
- Replies: 4
- Views: 247
Posted: April 20th, 2009, 8:51 pm
1 #include <stdio.h> 2 main() { 3 int score; 4 printf("score=%d\n",score); 5 } //outputs 4096
- Mars
- Forum: Website Reviews
- Topic: SITE REVIEW: Rate my Kitten
- Subject: SITE REVIEW: Rate my Kitten
- Replies: 16
- Views: 594
- Subject: SITE REVIEW: Rate my Kitten
Posted: April 19th, 2009, 11:37 am
Thanks. Yea, I have some broken links cause I'm only about half way done with developing it. That's why I don't have the top sections either. There aren't many pictures right now so sometimes the same one pops up. I may change the background and loose the stripes. What do you think about a gradient ...

