Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
access2007
- Page 1
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
14 Hours Ago
by usmanmalik57
Large language models are trained on a fixed corpus, and their knowledge is often limited by the documents they are trained on. Techniques like retrieval augmented generation, continuous pre-training, and fine-tuning enhance an LLM's default knowledge. However, these techniques can still not enable an LLM to answer queries that require web …
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
On April 14, 2025, OpenAI released [GPT-4.1](https://openai.com/index/gpt-4-1/) — a model touted as the new state-of-the-art, outperforming GPT-4o on all major benchmarks. As always, I like to evaluate new LLMs on simple tasks like text classification and summarization to see how they compare with current leading models. In this article, I will…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
> Are you sure IIS is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In IIS, under handler mappings for .asp files, under request restriction/access, script was chosen (not execute) for feature permissions, all 'read' 'script' 'execute' are chosen
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by john_111
Let me expand on what rproffitt said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would be hacked into tiny pieces and cease to exist. No one would ever use the web, it would be so totally insecure. So web pages are prohibited from running programs on your computer. They can …
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
In a [previous article](https://www.daniweb.com/programming/computer-science/tutorials/543028/text-classification-and-summarization-with-deepseek-r1-distill-llama-70b), I presented a comparison of [DeepSeek-R1-Distill-Llama-70b](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-70B) with the [DeepSeek-R1-Distill-Qwen-32B](https://…
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
2 Months Ago
by Dani
Never trust ChatGPT to write fully flushed out code for ya :) Pinterest uses OAuth to authorize your app on behalf of your app's end-user, if that makes sense. For example, your goal is for your end-user to load up your app, and have access to *their* Pinterest account. What OAuth does is give your end-user the ability to grant your app …
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Dani
You’re creating an array of 5 integers and then trying to access the 11th integer in the array (assuming the indexes start at 0). You’re getting an out of bounds error because you’re trying to access an array element that doesn’t exist. You can access arr[0] up through arr[4].
How to connect to the Pinterest API using PHP?
Programming
Web Development
2 Months Ago
by FarrisFahad
I want to post Pins using Pinterest API. I have tried to generate code using ChatGPT but it returns an error. Here is my code so far ... <?php $clientId = "xxx"; // Replace with your App ID $clientSecret = "xxx"; // Replace with your App Secret $redirectUri = "xxx"; // Must match …
Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by YashSmith
I’m getting a segmentation fault in my C++ program when trying to access an array element. Here’s my code: #include <iostream> using namespace std; int main() { int arr[5]; cout << arr[10]; // Accessing out-of-bounds index return 0; } How can I prevent this memory access issue?
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by Reverend Jim
Don't try to access past the end of the array.
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
In the [last article](https://www.daniweb.com/programming/computer-science/tutorials/542973/benchmarking-deepseek-r1-for-text-classification-and-summarization#post2300447), I explained how you can use the [DeepSeek-R1-Distill-Qwen-32B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B) model for text classification and summarization …
Database Connection Failing in MySQL – Need to Hire Developers in the USA
Programming
1 Month Ago
by YashSmith
I'm facing a database connection error in my MySQL-based application. The credentials are correct, but I keep getting: ERROR 1045 (28000): Access denied for user 'admin'@'localhost' Is it a privilege issue, host misconfiguration, or MySQL version mismatch? Seeking expert developers in the USA to resolve and optimize the database …
Null Pointer Exception in Java Application – Need Fixing
Programming
Software Development
1 Month Ago
by YashSmith
My Java application crashes with a NullPointerException when trying to access an object property. Here's the problematic code: public class Test { public static void main(String[] args) { String text = null; System.out.println(text.length()); // NullPointerException here }…
Re: How secure is Github?
Programming
Software Development
1 Month Ago
by Reverend Jim
I don't trust any online service to store my information, sensitive or otherwise, other than whatever password I use to access a particular site. And I assume (mistake, probably) that they keep only the encrypted copy of the password. I saw an ad a while back (I think it was on Ask Woody) for a service that offered to keep all your financial …
Re: Why my iPhone runs so slow recently?
Hardware and Software
macOS
2 Months Ago
by Dani
I think you're referring to physical memory (hard drive space) and not random access memory (RAM). Using up all your hdd space can make your phone go slower. RAM is transient and is just the memory the apps you currently have open at the time are using. The amount of RAM you use goes down when you close out of apps or restart your phone.
Re: What makes a technical E-commerce web standout?
Programming
Web Development
2 Months Ago
by simplixi
To ensure your E-commerce store for the roofing sheets factory stands out and leads in the market, especially in a region where this field is new, consider the following strategies: **1. Market Research:** - Conduct extensive research on local consumer behavior, preferences, and purchasing power. Understand what factors influence buying …
Re: WooCommerce Duplicate Categories
Programming
Web Development
2 Months Ago
by simplixi
**As a rule of thumb for anyone developing a WordPress/WooCommerce website, avoid buying a theme and importing the demo directly into a production site. Doing so can cause more harm than good. The demo content is intended for development or testing purposes only, not for a production website.** Now having duplicate categories in WooCommerce …
Re: how to lock control in vb6 by given code
Programming
2 Months Ago
by rproffitt
Controls by default are locked in place (position) so that's a done deal. Explain further what you need. Also, VB6 is very old so while I did code in it till about a decade ago we have moved on to other platforms and there is no further access to the dev systems to verify any code I may offer. I strongly suggest you move away from VB6 as soon…
Re: What is the best possible way to protect my website?
Hardware and Software
Information Security
2 Months Ago
by Heatman
Adding to what other people have said, it's also very important to back up your data from time to time in case anything happens. You will still have access to your data. Please back up manually if possible.
Re: What is the best possible way to protect my website?
Hardware and Software
Information Security
2 Months Ago
by cpvr
You can also setup two factor authentication for your cpanel account, so you’re the only one that’s able to access it.
Re: What are the AI writing tools?
Digital Media
Digital Marketing
2 Months Ago
by kearawill1122
Thanks for sharing! Using tools like ChatGPT and Gemini can really boost productivity, and running the content through Grammarly to match your voice is a great tip. For those looking for an alternative, RivalFlow from SpyFu sounds interesting. It’s good to know there’s a free trial or limited access, so people can explore it before committing. …
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Biiim
Emailing became more restrictive in the last year, so when you have a PHP server with no emailing setup the emails often fail completely now as there is so much wasted bandwidth on spam emails that these get turned down instantly. I solved it on my hosting with the [PHPmailer](https://github.com/PHPMailer/PHPMailer) package, it's maybe a bit of …
Re: Are SaaS & Cloud Computing Interchangeable Terms?
Community Center
1 Month Ago
by peol
Cloud computing and SaaS (Software as a Service) are not interchangeable terms. Cloud computing includes IaaS, PaaS, and SaaS services that provide computing resources over the Internet. Essentially, SaaS is a subset of cloud computing where users access software applications online without managing infrastructure.
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by Dani
> Is your example valid? Yes, if you stretch a fringe and long-shot possibility into an opinion. My post was based on my own use case, which is the only data that I have access to. > What percentage of websites/web apps use SXG? DaniWeb uses SXG. > Of those, what percentage of the indexed pages by Google are actually cached by…
Re: Looking for Apple Developer enterprise account
Programming
Software Development
1 Month Ago
by Dani
I highly doubt anyone here would be able to sell or license to you access to their Apple developer enterprise account (mostly because it would violate their own agreement with Apple), but out of curiosity, why do you need it? The program is designed for specific use cases in which large organizations need to distribute their proprietary app …
Re: How secure is Github?
Programming
Software Development
1 Month Ago
by rproffitt
Given the state of affairs in the USA, any security we thought we had is gone. DOGE is gaining access by force now. Do we really need this conversation?
Re: How secure is Github?
Programming
Software Development
1 Month Ago
by Salem
TBH, if it's "just me", then password protected tarballs of your `.git` directory, uploaded to one of the more trustworthy sites might be an option. I wouldn't touch google/onedrive with a barge-pole. Dropbox maybe at a pinch. Personally, I use https://mega.io/ If your DW hosting provider gives you access to filespace outside of the…
Re: Okta apps validation
Programming
Web Development
1 Month Ago
by maplestar
Thanks for the information! It’s really helpful to know how to fix the account activation issue with just a click. Simple solutions like this make troubleshooting much easier. For more helpful tips and insights
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
2 Months Ago
by Dani
Oh, it looks as if the tutorial was for the old DaniWeb API that no longer exists. The [DaniWeb Connect API](https://www.daniweb.com/connect/developers) is also OAuth-based and has some of its own documentation.
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
1 Month Ago
by rproffitt
Thanks for the MVE (minimum viable example). But it's just bad code. c, c++ and a lot of language won't stop you from going out of bounds.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC