11,530 Posted Topics

Member Avatar for blackcathacker
Member Avatar for Gypsy38

But I think what Rik is proposing is that it might be a problem with your computer. It's worth doing a test using ethernet cable for a half hour and see if you experience the problem. This way we can rule that out.

Member Avatar for Dani
0
227
Member Avatar for riahc3

Because, after a lot of deliberation among the moderation team over many years, it was determined that 'shit' was not offensive enough a word to be censored.

Member Avatar for Reverend Jim
0
515
Member Avatar for allifields

So you mean like what we do on this page?: http://www.daniweb.com/web-development/web-design-html-and-css/15 You need to use jQuery, yes. Here's our code. You will need to modify it for your own needs: <script type="text/javascript"> <!-- $(function() { var header = $('#static-header'); var body = $('#body'); var offset = header.offset().top; $(window).scroll(function() { var …

Member Avatar for Dani
0
982
Member Avatar for Mike Askew

Thanks so much! I'm glad that you like it. Without going into too much detail, it is definitely not in the cards at this time, I'm afraid to say, to disable it as a profile option. However, I will add that the option currently only exists on navigation pages and …

Member Avatar for diafol
0
377
Member Avatar for Xantipius
Member Avatar for mattster
-1
545
Member Avatar for oalee

My two cents: * I would get an Intel. I haven't heard great things about AMD in quite a number of years. * A touchscreen for Windows 8 is amazing for tablets, but unnecessary for a desktop gaming PC.

Member Avatar for aVar++
0
502
Member Avatar for Dani

The very early workings of an API ... http://www.daniweb.com/api/documentation Any ideas churning??

Member Avatar for Dani
6
3K
Member Avatar for Dalek Caan

I would choose side projects that both interest you but also strengthen your skills that will help advance your career.

Member Avatar for Xantipius
0
285
Member Avatar for kubyk

> I believe the site legally has to allow a option to delete all information (personal). Yes, we will not retain any personal information. Simply edit your profile and remove your personal details such as your full name, company, location, etc. Then, click the Permanently Delete Membership link that cereal …

Member Avatar for <M/>
0
390
Member Avatar for Octet

Thanks!! :) It's a live process once the payment has been validated. It looks as if the system never promoted your account to a sponsor, either. Hmm ... I'll have to take a look into it, thanks :) It's kinda late tonight so I'll get right on this in the …

Member Avatar for Dani
0
344
Member Avatar for Dani

I'm trying to debug my PayPal IPN code. Here is my PHP code: if ($this->input->post('payment_status') == 'Completed' AND in_array($this->input->post('txn_type'), array('web_accept', 'subscr_payment'))) { $query = 'cmd=_notify-validate&' . http_build_query($this->input->post()); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://www.paypal.com/cgi-bin/webscr'); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $query); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); if ($result == 'VERIFIED') …

1
98
Member Avatar for IIM

> @Dani:- you have not provided solution for my note2 probem.I am not able to login using chrome in note2.The lightbx is opening and then closing automatically.Please provide alternate way to login either if lightbox is not visible.I was able to login some time ago.i have also posted this but …

Member Avatar for Dani
0
274
Member Avatar for maxelcat

There's Microsoft Silverlight. But I would say it would be HTML5/CSS3 with a Flash fallback, yes.

Member Avatar for maxelcat
0
134
Member Avatar for fonzali

> I believe that DaniWeb take "ownership" of posts so that they can legally store and manipulate them, however, someone from DaniWeb would have to officially confirm/deny this. Yes, that's true. However, and please don't quote me on this, but in the future this might be modified to change from …

Member Avatar for fonzali
0
188
Member Avatar for keeleyb

If your database is small enough (not more than a few megs in size) then you can upload an .sql file. However, I would not recommend doing this through phpMyAdmin's web-based interface for anything larger or you'll end up with timeout errors.

Member Avatar for keeleyb
0
466
Member Avatar for Squidge

DaniWeb has a mobile app in the works although nothing has been launched as of yet. There haven't been changes to the way the login form is generated so unfortunately I'm not sure why it no longer works on Android Mobile. I only have access to an iPhone.

Member Avatar for <M/>
0
201
Member Avatar for MiketheBook

Do you have Adobe PDF Reader (or some other PDF reader) installed? IIRC, OS X uses Preview by default to display PDFs, but this is overruled if you have a real PDF reader. Maybe you have one but it's broken?

Member Avatar for MiketheBook
0
261
Member Avatar for pritaeas
Member Avatar for tadisaus2

DaniWeb was hit and recovered from Google Panda three times already. It's possible to recover. It just takes time. Changing the domain name is not the quick fix you think it is. If you don't fix what Panda doesn't like, then the new domains will be hit by Panda in …

Member Avatar for Dani
0
237
Member Avatar for Pobunjenik

No matter what we do, there are going to be people who think it should be different. They used to scroll / collapse, and we got people who didn't like the page movement or found it annoying the other way around, so we stopped. :)

Member Avatar for Pobunjenik
6
214
Member Avatar for diafol

It's for pagination :) For example, take the URL http://www.daniweb.com/api/members You will notice that the resulting JSON includes a `data` field that encapsulates an array of members, and a `pagination` field that says: "pagination":{ "total":"33836", "per_page":50, "page":1 } Now if I were to use the URL http://www.daniweb.com/api/members?page=5 you will notice …

Member Avatar for diafol
1
481
Member Avatar for Dani

I know I promised not to make anymore drastic changes to the API, but ... well ... I lied. The two API write operations (voting on posts and watching/unwatching articles) used to always respond with a JSON object in the format success: true or success: false Now, they return the …

2
187
Member Avatar for himerus

I'm looking forward to your tutorial! Is GD built-into PHP or is it more of an extension?

Member Avatar for gpcodelibrary
0
1K
Member Avatar for Dani

We regularly expire pages at which time we start sending back a 410 status code. Is there a way that we can inform Google as soon as possible which pages to remove from its index? I know that Google Webmaster Tools has a URL removal tool, but is there a …

Member Avatar for Dani
1
108
Member Avatar for dukee00

Been paying a close eye since I've been trying to recover from Panda, and haven't noticed a change today.

Member Avatar for nisharock1
0
137
Member Avatar for Dani

We use CodeIgniter custom session data to handle our login (among many other things). Our settings are as follows: $config['sess_cookie_name'] = 'danisession'; $config['sess_expiration'] = 0; $config['sess_expire_on_close'] = FALSE; $config['sess_encrypt_cookie'] = TRUE; $config['sess_use_database'] = FALSE; $config['sess_table_name'] = 'ci_sessions'; $config['sess_match_ip'] = FALSE; $config['sess_match_useragent'] = FALSE; $config['sess_time_to_update'] = 300; ... $config['csrf_protection'] = true; …

Member Avatar for Mark_k
0
2K
Member Avatar for Mike Askew
Member Avatar for NardCake

I always put opening curly braces on their own line. Otherwise, I just have a really hard time wrapping my mind around where code blocks start and end. It's easy to match them up that way. All the tab stops at the top might be used to help align intentations …

Member Avatar for deceptikon
0
564
Member Avatar for pritaeas

Personally, I live in a world where file_get_contents() is rather mainstream, but I also live in a world revolving around applications meant to be run on dedicated servers as opposed to shared hosting environments.

Member Avatar for pritaeas
1
565
Member Avatar for pritaeas

I'll take a look as to why some of the RSS feeds are giving parse errors. However, it should be noted that you can accomplish the same thing, but *significantly* faster, by following the following algorithm: Fetch list of all forums in JSON format Create an empty array for each …

Member Avatar for diafol
0
551
Member Avatar for riinfotech

Having unique content is important because, if the same content can be found in multiple places around the web, odds are that it's plagiarized. That, and Google only wants to show the same content ONCE in the search results, so it will try its best to figure out who the …

Member Avatar for Dani
0
41
Member Avatar for Dani
Member Avatar for razib8bd

DaniWeb is my hobby :) Well, it's my job, but more specifically, I like to surf the web reading up about the latest SEO tactics. So SEO is my hobby :-P I also like to play simulation games like The Sims and SimCity. What's yours? You never told us.

Member Avatar for <M/>
0
130
Member Avatar for delphiman
Member Avatar for pjdc

Perhaps a mailing list? If you could encourage new visitors to sign up, then you can pull them back at a later date. Also check out Google AdWords remarketing campaigns. Grow your audience of repeat visitors by drawing back in people who have recently visited.

Member Avatar for Dani
0
234
Member Avatar for LastMitch

While you can't rate entire threads, you *can* rate individual posts of a thread. The rating of the first post of a thread is synonymous with whether or not you think it's a good question.

Member Avatar for LastMitch
0
243
Member Avatar for asifalizaman

This is against the law and so we don't discuss illegal things like that on DaniWeb.

Member Avatar for jithinjohny
2
117
Member Avatar for Dani

We currently expire our marketplace listings after a certain timespan elapses. Currently, we send back a 410 status code for our expired pages (404 = we've never heard of this page compared to 410 = we know what you're talking about but it doesn't exist anymore and never will again …

Member Avatar for Dani
0
96
Member Avatar for Dani

What do you think of the list of related articles that appear beneath the first post of each thread?

Member Avatar for LastMitch
5
223
Member Avatar for eli_mjomba
Member Avatar for eli_mjomba
0
131
Member Avatar for callen91

Hi there! Welcome to DaniWeb. IT is such a huge field that it's impossible to learn enough of any small discipline in order to be proficient at it. I think the job of school is to give you an overview of everything there is out there, so you can decide …

Member Avatar for rubberman
0
78
Member Avatar for Dani

Is it possible to generate a DFP Small Business ad tag that forces a particular creative or line item, that I can use as a backfill ad tag for an ad network?

0
119
Member Avatar for petrarobert002
Member Avatar for pritaeas

Hi, You can visit http://www.daniweb.com/members/edit_membership Not sure if that's what you mean though.

Member Avatar for Dani
0
148
Member Avatar for TonyG_cyprus

I'm confused by your question. We do allow threads to be responded to at any time in the future, because even if they don't necessarily help the original poster, they might help someone else down the line. However, do you mean that people are resurrecting old threads with their own …

Member Avatar for TonyG_cyprus
0
360
Member Avatar for oalee

The site was founded in February 2002 when I was in college, but I didn't really start actively working on it until a year or so later.

Member Avatar for jwenting
0
286
Member Avatar for Dani

I have an Office 365 account (Hosted MS Exchange). I deleted a few accidentally created calendars in my MS Exchange account. Everything is synced just fine (with the one remaining calendar) in Outlook 2013, my iPhone, and on the Office 365 website. However, the Windows 8 calendar app refuses to …

1
103
Member Avatar for PudingEatsPanda

Can you please explain what errors you're experiencing? Also, I detagged this thread from daniweb-api. I had thought you were using DaniWeb's API, but you are using PC World's.

Member Avatar for Dani
0
372
Member Avatar for Dani
Member Avatar for JorgeM
1
1K

The End.