1,125 Topics
| |
I have a PHPBB forum and just ran into a serious issue after my host switched me from a shared server to a VPS, and they can't figure out how to fix it for me. On all of my posts that contained inline attached pictures, the pictures no longer display, … | |
I have a project that must have centralization of databases that will have access to the web on a PHP script. I can merge MSSQL and MySQL databases if and only if they were both: 1.) On a same server or 2.) Of the same server type The problem is … | |
import web,re,traceback urls=( "/","displaythreads" "/viewthread","displaythreads", "/viewthread/(.*)","displaythread", "/viewthread/(.*)/Vote/(Up|Down)","vote", "/newthread/(.*)","newthread", "/newthread","newthread" ) entries={}###{entryname:{property:value}} entrylength=0 class displaythreads: pass class newthread: template=web.template.frender("newthread.html") default=template("DEFAULT",0) def initialize(): pass def GET(): return default def POST(): data = web.input() try: username,threadname = data.username,data.threadname except: return template(mode) if threadname in entries: return template("Exists") entries[threadname]={"creator":username,"points":0,"totvotes":0} class displaythread: template=web.template.frender('Thread Viewer Template.html') … | |
Hello, I wonder, is it safe to use and run a standard computer (let's say Pentium 4 CPU 2 GB RAM) for 24 hours a day and 7 days a week in an AC room? I am just supposing that if I own my own web hosting company. Also, do … | |
hi. well got my dipploma from http://wsi.tafensw.edu.au, and the site is at : http://marvinhunkin.bmtafeweb.com. now. need a accessible, screen reader, free version of a web host or free domain, with penty of. looking to develop my next project, a blindness site. with a podcast section, uploading documents, a blog, chat … | |
I'm making a messenger app and I need to know how to set up connections so that somebody could send messages to other via WI-FI.I googled a little and I find something at this page [Click Here](https://code.google.com/p/simple-android-instant-messaging-application/source/browse/trunk/src/com/mekya/communication/SocketOperator.java)but I don't understand it.Here is my main class/StartingPoint (all my code is just … | |
i've been working on a program and i want it to be accessed by multiple users. so i have an admin account and an other users account what i want to do is for the other users to be able to access the program and its database from another computer … | |
Warning: mysql_query() [function.mysql-query]: Access denied for user 'nobody'@'localhost' (using password: NO) in /home/kamsarph/public_html/index.php on line 3 | |
Expecting a spike in traffic on my website. Not sure what to do. I have a website thats currently on a shared server plan. It's been working fine. In about a week, I'm expecting a spike in traffic during a specific 4-day event. I could have as many as 1000 … | |
Guys, please suggest me, how can I set up an audit on SQL server 2008 if I need to track who, when, what and from where changed something on a database table? | |
Hello guys, i'm having this project where i must create a server that communicates with a browser.I must write something like this in the browser: http://localhost:11880/path and the message printed in the server will be: GET /path HTTP/1.1 Host: localhost:11880 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Ubuntu/10.04 … | |
while(1){ new=accept(socket, (struct sockaddr*)&peer_addr,&peer_addrlen); if (new<0){ break; } else{ recv(new,mesg,sizeof(mesg),0); if (strstr(mesg, "GET") != NULL){ printf("\n%s",mesg); FILE *write = fdopen(new, "w"); fprintf(write, "HTTP/1.1 200 OK\nContent-length: 47\nContent-Type: text/html\n\n<html><body>< H1>HTTP/1.1 200 OK</H1></body></html>"); fflush(write); } else if (strstr(mesg, "POST") != NULL){ strcpy(resp,"POST\nContent-length: 47\nContent-Type: text/html\n\n<html><body><H1>POST</H1></body></html>"); c=send(new,&resp,sizeof(resp),0); printf("%c",c); } else{ strcpy(resp,"HTTP/1.1 500 Server Interval Error\nContent-length: … | |
Being a team member of admin depart in my organization, I deal with various exchange server activities everyday. Thus, I always need to closely monitor the whole emailing system for enhancing the performance of my organization and convert them into business. My concern is : How can I track non-business … | |
i want to develop android app using html, css & jquery mobile in dreamweaver CS6 that integrated with phonegap. My app will send & receive data from database in remote server. But the problem is how to connect to the database in remote server? this is because phonegap just support … | |
Hi All I am trying to find out the best way to capture the var_dump($contents) on line 29. I am think array? but I don't know how many string elements the array is returning. This is the output via var_dump($contents); array (size=45) 0 => string '.' (length=1) 1 => string … | |
Hi All, I am trying to connect to a Network drive remotely using authentication data(\\drive_name)(T:). I will need to upload and download documents. If possible can you give me some pointers. If you require any additional information please let me know Thanks in advance David | |
hello every one,,,ihave no experience in c# and iam designing a c# app that insert,update,delete and select data from and into remote database using sql server 2008,so i want some tutorials about c# connection with sql server please help me and thank you..... | |
Similar to echoserver, but this one handles multiple clients by forking the process. | |
This is a simple echo server that I've written while learning sockets programming. Compile the server and run it. You can connect to it using telnet like this: telnet localhost 1337 Disconnect the client by typing "/quit" without quotes. | |
Hi All, Two questions really: 1. Is Windows 2003 still supported? (With all the fuss about XP support ending, I'm not sure if I missed it) 2. We have an old Windows 2003 Small Business Server as our domain controller, Exchange server and file server which is coming to the … | |
Having problem with looging in my server. Before it runs smoothly. While learning this system, I came accross the idea of exploring the contents of Microsoft SQL Server in Program Files. I found some exe files inside and tried to run them with the curiosity of what are those for, … | |
Okay...huge problem with one of my home built computers. I currently live in a small apartment with 2 PC's and one display, my TV. I plugged in one computer to the display and used Team Viewer to remote into the other when I needed to, its running Server 2008 R2 … | |
Hi all, I have spent a long time on this problem and trawled all the forums. Much of the discussion is old. I have two Windows 8 computers, set up for file sharing, but the process is not exactly even, perhaps becuase the desktop is a private computer and the … | |
i want to know how to develop and run my own smtp server | |
how do i make my windows phone app to wait for webclient to finish before continuing? # TextBlock.Text = originalFeed.Count.ToString(); # this part of the program should returned the total rss feed downloaded from the rss links but it is returning 0 instead eventho there are rss feeds. using Microsoft.Phone.Controls; … | |
What’s the difference between a Bastion Host and a Proxy Server, as part of a firewall strategy? | |
Hi all, I had two website in different servers. Both website had same headers. so if login one server website and going to another website i want same session in this website. how to pass the session values to this server. And also if logout server means both servers sessions … | |
How do i set up a email server to work with my localhost site usine wamp hmailserver and squirrelmail. | |
Hi all, I am trying to connect to a remote server, I am using the IP address server name and folder to connect, not sure if ths is working? I am aslo getting an error on the final foreach loop (`foreach ($files as $file) {//print array`) Warning: Invalid argument supplied … | |
Hi Everyone, I want to access the values from remote server. If I click search and advanced search I should retreive values from remote server. I have catergories like watches,perfumes,etc. Now based on the search I need to display the brands of x company y company for watches perfumes and … |
The End.