- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
59 Posted Topics
Re: I would argue none of this is really a matter of the programming language used. The topics with link tracking and so on are * HTTP protocol issues * HTTP redirect issues Any programming language has the same issues with that. Some of what you are looking for also requires … | |
Re: My guess would be "Line 17" of the above Javascript. If no "data" is passed to the function (which is in Line 16), then data will be a NULL Object, which does not have a "length" method. Exception thrown: most likely in line 17 of the Javascript. Root cause: most … | |
Re: Domain Names are "symbolic names" for IP-addresses (IPv4 or IPv6). When machines are addressed over the internet, the connection is established by using the IP address. As those numbers are hard to memorize, the domain names were invented quite some time ago. When you own a domain, you get basically … | |
Re: I would assume that the SQL-Server extension is not loaded in PHP. From the screenshots, the reason could be that you have all the "extension=..." lines which are needed for SQL Server are in a subsection. The subsection starts according to your screenshot with [PHP_SQLSRV]. I would think that no … | |
Re: The machine should be young enough to support USB Boot. So I would propose to get yourself a bootable USB-Device (can be USB CD-ROM, USB-drive, USB-stick, ...). Make sure it is bootable by trying on a different machine. What it boots to is not relevant in the beginning. You just … | |
Re: Obviously this is not an easy task. When you invoke the restart on Apache, it will automatically kill the PHP script that was used to invoke it. Reason: Apache --> executed PHP --> executed PHP script. Processes can only die, if all their children die as well. So this means … | |
Re: Does the Oracle Report Builder expose a COM, DCOM or .NET interface? If so, just use VB6 built-in object browser and check the functions / methods that come with Oracle Reports. VB6 and the other VB dialects all come with an Object Browser. The hard part is to find what … | |
Re: Your code is a little bit unclear to me. Essential HTML DOM elements are missing but they might well be in a different file. What about * <html ..> * <head> * <body> | |
Re: Why not just code it inside the "Main" function. In the project properties in the VB IDE there is an option to not use a form as the startup object but start with a "main" function. | |
Re: Depending on the platform "localhost" might connect via a Unix domain socket. If this is the case, then it might be that there is a mismatch between where the socket is really located in the filesystem (as specified in my.ini) and where the MySQL client (whatever you are using as … | |
Re: To really answer that one, you should tell us which boot loader you are using. In your setup two alternatives could be possible: grub or WinXP boot loader. Just let us know which one. | |
Re: Thats a tough one. Part of your hard disk data is overwritten by Ubuntu. The file system has been changed from NTFS to most likely ext3. So I would say there is no real easy method for recovering. Nothing that would be doable with any kind of simple recovery tool. … | |
Re: You are forking during every loop iteration, so why are you surprised? | |
![]() | Re: This depends on who has control over which part of your connectivity. If you control the squid proxy yourself, you can turn authentication off. If you cannot control that squid proxy, you have to live with the fact. But in that case you can still store username and password inside … |
Re: Hello walishoeb, what kind of sub page do you mean? Something like the little Chat window? This is typically done by using a Javascript function that "unhides" a DIV element that was already present on the page and filling it using AJAX calls. Of course it is also possible to … | |
Re: Hello svilla, at least there is nothing obvious. First of all, I would try to omit the second argument. Unfortunatly a "Null pointer exception" in the Java stack dump is not giving a real hint. In a second step you might want to consider adding some options to the SOAPClient … | |
Re: Hello chandbasha, this is probably the wrong place to post a basic Linux package management question. The PECL package you are trying to install fails on the yum / rpm dependency checks. So my first wild guess is that you are using some sort of Fedora. To solve this, you … | |
Re: I would say there is too little description of your problem. The loop you are posting here does not relate to any fetching of a URL. To debug, I would do something like ` $google = file_get_contents('http://www.google.com'); echo $google; ` If it displays some sort of a Google start page, … | |
Re: Hello, you again. * HTML 3.2 * HTML 4 * HTML 5 These are the 3 most recent versions. But 3.2 is already outdated since ages. All modern browsers understand HTML 4 or 5. | |
Re: A socket has a number of concepts and depending on how you create it, it will behave differently. If you mean a socket in the sense of the PHP socket functions, then one TCP socket will handle exactly one data stream to another host. I am pretty sure though that … | |
Re: Just a wild guess. IIS is the web server? I am not too familiar with it, but it executes all the asp scripts (and their compiled version as well) under the user context IUSR_xxx *(xxx ist the server name). So if you perform a transaction inside your code that requires … | |
Re: And you again. Maybe you could group all your questions into some more meaningful overall context. Setting up emails depends on your provider again. They typically offer a web interface. | |
Re: Hello, very limited detail to give a good answer. There are a number of ways and it depends on what your hosting setup looks like. Probably the most common method: FTP Get a decent FTP client (I like FileZilla), configure the connection to your web host and then upload your … | |
Re: [QUOTE=bflack;1734040]Hello guyz, I have this code bellow which is to download stored files on directory. I was using $reload=$_SERVER['PHP_SELF']; for page reload and I was curious if would it be possible to use $_SERVER['PHP_SELF'] and reload php page two or more times?.. cause when I clicked on a link 'song … | |
Re: [QUOTE] third, I want to save in xml. but, I don't now the syntax. when I click save, it save in xml. Can everybody help me? thank you.. :)[/QUOTE] You would preferably use the DOMdocument class. This is described in the PHP Manual. First you create the DOMdocument object. Then … | |
Re: [QUOTE=dinhunzvi;1734081]i'm trying to upload file using php. i want to restrict the file extensions to .jpg and jpeg. this is the code i have ... how do i make use of an array that has the specifics extensions to be used?[/QUOTE] There are some options. You are mentioning an array … | |
Re: Hello, this is more a question regarding the browser capabilities. PHP creates "something for the browser" to interpret, but it does this on the server side. I am not aware of any kind of technology that would allow to mix PDF / Word / Excel simultaneously inside HTML. As everything … | |
Re: [QUOTE=chris19750;1534636]Hello, I'm beginner... I can't solve this. id name address 1 cristine New York 2 murray Redmond 3 kumar Sunnyvale This is 'samples.xlsx' file-Excel type. 'id' string in A1, 'name' in B1, 'address' in C1 column in excel file. Create a Perl script to store the information about student using … | |
Re: Hello, the typical ones that come to mind: [CODE] who last [/CODE] If you need only parts of the output, pipe them through an awk. | |
Re: [QUOTE=aplh_ucsc;1417392]Can we use "grep" command to recover files in linux without being super user..:confused: Is any other commands to recover files except "isof" comand in linux except grep?:-/[/QUOTE] Grep has nothing to do with the file system. Grep is a filtering command (it searches for occurrences of strings in other … | |
Re: you would use iptables as usual. It has a rule modifier that specifies which interface the rule applies to. So there is nothing special to the multi-NIC config as compared to the single NIC config. | |
Re: [QUOTE=Hayzam_#include;1393314]How to compile linux i put the kernel in a sony memory stick pro duo i need real help i know C++ but not linux Thanks In advance[/QUOTE] A very comprehensive documentation on how to build a Linux system from sources is Linux from scratch. [URL="http://www.linuxfromscratch.org/"]http://www.linuxfromscratch.org/[/URL] This explains all the … | |
Re: [QUOTE=PKW;1450544]I'm looking for a tool that can read text on a web page, or within a web-based document viewer, and insert a polling plugin of sorts at the end of each paragraph. More specifically, I would like my website to display documents inside some kind of reader. Then, I'd like … | |
Re: [QUOTE=prem2;1443507]Dear pirataes, I have understood your explanation.But when i implement the same program with little modification given by your explanation .I am still receiving the fatal error. That is when i first create the object of the class .Then i use the scope resolution operator to call the function .Still … | |
Re: [QUOTE=reagansmall;1443663]Hello - Okay...I have another confusing question (warning...newbie here!). I added some javascript to my main template page that makes my side navigation bar expandable. I had a folder of preexisting pages created from this template that the Dreamwever updated when I saved the main template. I want to make … | |
Re: [QUOTE=avinash_545;1429015] I would like to make these servers accessible to workers outside the company but I dont really know how to do it. Should I buy a domain name from the isp?? The network topology goes like.... isp>>> router>>> switch >>>linking 3 servers. In this case, how would communication occur … | |
Re: [QUOTE=sivakumar.k;1430144]I am getting this error RC2104 : undefined keyword or key name: DS_3DLOOK while build the taskman using visual studio 2005, the code is as follows: [CODE] // Microsoft Visual C++ generated resource script. // //#include "Winuser.h" #include "resource.h" //#include "windows.h" //#include "winres.h" #define APSTUDIO_READONLY_SYMBOLS #define DS_MODALFRAME 0x80L ///////////////////////////////////////////////////////////////////////////// // … | |
Re: Hello, I see that you have quite some code already developed that looks nice and clean. Where are you stuck? From an algorithm point of view, I would create one numerically indexed hash from maturity. In your loop to fill the "mature hash" you could do something like [CODE] # … | |
Re: [QUOTE=mrwest321;1381769]... visual basic 2008 express edition ...[/QUOTE] This forum is actually for legacy Visual Basic (so to speak version 4, 5, 6). But for your specific part I don't think that things have changed in the last 10 years. You would define the login form as the startup form. This … | |
Re: In case you are looping, you could just do the following: [CODE] $starttime = time(); ... foreach (....) { // your loop // your active code here .... if (time() - $starttime) > 120) break; } [/CODE] Would be the simplistic approach. | |
Re: [QUOTE=mohammedowais;1358362]Hello i am new to PHP scripting and can i know how to use the script? please. I think that i should add the location of the script to an " <img src= #script location.php> " . am i correct ??:?:[/QUOTE] No. You might want to start a new topic … | |
Re: My initial try would be to use [CODE] e.style.backgroundImage[/CODE] as the style element. However this is not tested. Its just based on the DOM analysis in FireBug. | |
Re: [QUOTE=killbill07;1356687]I can easily hide my form with the event KeyDown, but only by pressing ONE key, and I wanna hide it by pressing CTRL+SHIFT+O, for example. And the biggest problem is when I wanna restore it, because I have to go to the Task Manager, make the aplication has the … | |
Re: [QUOTE=freddyvorhees;1358338]Hello! I want to continue a session even after the browser was closed. What I want to do is to remember the host, username, password, of mysql. Whats the trick?[/QUOTE] You could store a cookie. It basically means constructing a small part of the session like logic yourself. Create an … | |
Re: a) not exactly the right forum. b) don't capitalize. It hurts the eye and is obsolete since 1874 or so when Remington brought the Remington No 2 to the market which implemented a "shift" key. c) you don't really need it, you might want it because it looks more beautiful … | |
Re: [CODE] Sleep 200 Do DoEvents Loop Until Not CRViewer_Report.IsBusy Sleep 200 CRViewer_Report.PrintReport [/CODE] CRViewer_Report would be the Crystal Report viewer object that is located on your form. | |
Re: [QUOTE=ya.basha;1148242]Hello All, Is there a way to print the http header? I want to print realm parameter from the header. Regards,[/QUOTE] Hello, as large parts of the HTTP-Header are generated by the Web-Server after PHP has finished its job, there is no real easy way to do this on the … | |
Re: [QUOTE=ahmksssv;1155272]hi, how can i access the .htaccess file. i have been created a .htaccess file and write the code wat i want. this is working fine when i should type url with correct formate which i mention in the .htaccess file. i want to redirect page automatically.. plz give me … | |
Re: [QUOTE=vishalonne;1154574]Hi ... Can I use this java script in my php code mentioned above. Please help me... Thank you all in advance[/QUOTE] Not as shown in your code. In Javascript you would have to reference existing ID tags in the HTML code. So you would need something like [CODE] <p … |
The End.