8,966 Posted Topics
At 11:05 DW got sluggish, then went down. Thought it was up by 11:16, but went down once more. At 11:23 it appears working again. Times in GMT+2. It felt like one server was working, the other was not (like last time). Chat is still sluggish btw. | |
Re: Either the above, or change your query to return the items in the order you want. | |
Re: > the script stops dead on a certain line in the snippet Do you get an error message? | |
Re: > Also there is no option to delete OAuth Correct. Don't worry about multiple keys for now. | |
Re: > <img src="//example.com/res.jug?res=img.example"> This means you can't have both `example.png` and `example.jpg` ? | |
Re: Can you be a little more specific about what you are looking for? | |
Re: I found [this thread](http://ask.cakephp.org/questions/view/database_connection_mysql_is_missing). Do you have PDO enabled? I don't think WAMP has it enabled by default. | |
Re: Maybe this can help: http://bakery.cakephp.org/articles/webtechnick/2009/02/10/file-upload-component-w-automagic-model-optional | |
Re: You can if you use something like this: var q = "3"; var re = new RegExp("/^(\-)?\d+( (\-)?\d+){" + q + "}$"); if (re.test(str)) //... | |
Re: Doesn't your class support it? | |
| |
Re: The only fetch is on line 67, so I'm guessing it's that one. It's strange though that the error says "null given". | |
Re: You are running this on XAMPP and WAMP on the same machine? Do they share the same MYSQL? If not, check your config, specifically the port. | |
Re: class myClass { const CURRENTDIR = __DIR__; private $my_xml_file = CURRENTDIR . 'data/my.xml'; } `$currentDir` does not exist in that scope. `$this->currentDir` is not available either and `self::$currentDir` only works if it's defined as static (I think). So use a constant, or use minitauros' solution using the constructor. Note that … ![]() | |
Re: Started a thread at the same time ;) I was on earlier today, but can't get to it now. | |
Re: Create a separate CSS for media print only. | |
Re: > It may be worth noting that the PHP functions used are not supported in PHP 5. Did you even notice the OP is 9 years old? | |
Re: Check your error logs, turn on error reporting if needed. Check if all required modules are enabled. | |
Re: Check your PHP.INI file for `upload_max_filesize` and `post_max_size`. | |
Re: > But I found it is not overwriting the previous one. What exactly is not being overwritten? | |
Re: `SESSION['answer']` may not have a value set yet. I suggest you do something like this: session_start(); if (isset($_POST['answer'])) $_SESSION['answer'] = $_POST['answer']; if (!isset($_SESSION['answer'])) $_SESSION['answer'] = 'no'; | |
Re: `http://www.fleethabari.com/` is not a host, but an URL. If you think it's correct, try `www.fleethabari.com`, but are you sure you shouldn't be using `localhost` ? | |
Re: > What option for cURL needs to be changed in order to retrieve the XML content None, the code you had working in the previous thread should work fine for xml too. It should work without the HTTPHEADER. Just change line 19 to: echo $file_contents_curl; and enable line 18. | |
Re: Backticks, as JorgeM said, not single or double quotes. alter table GelderlandDist change inauguration `inauguration date` DATE You need to specify the type as well. From [the manual](http://dev.mysql.com/doc/refman/5.7/en/alter-table.html): *"You can rename a column using a CHANGE old_col_name new_col_name column_definition clause. To do so, specify the old and new column names … | |
Re: Why not include them both? I've never had issues with this on earlier IE versions? <link rel="stylesheet" href="normal.css" type="text/css" media="screen" /> <link rel="stylesheet" href="print.css" type="text/css" media="print" /> | |
Re: > gives me a fatal error but the try catch is not triggered. Where does it say that it triggers an exception? `createFromFormat` just returns `false` on error. Since you just call a method on it without checking, it's just an error. PHP exceptions aren't embedded in all language features, … | |
Re: $("#textbox").val(data); <input type="text" id="textbox" name="textbox" value="" /> ![]() | |
Re: > I need a login form what will use a preloaded database field for authentication. What do you mean by that? | |
Re: What do you have so far? | |
Re: @phorce. Probably because the original amazon links included ref query parameters. In addition "The Art of ..." is high-level stuff. Since you want to read these books, the real question is: what is your direct goal? Is it just knowledge, or do you want to apply this in your coding? … | |
Re: > The shop is trying to tell me that everything is gone on the computer, it is completely wiped out. I sincerely doubt that. My suggestion would be to let them install a new small HD, and take yours out, so you can plug it back in as a second … | |
Re: Technically possible: yes. Practical: no. | |
Re: Did you change the default user (root) or the password when installing MySQL? | |
Re: > Push notifications... care to elaborate? :) Or long-polling. Basically returns with changes, or have the AJAX call timeout, following by the next call. | |
Re: > My phpMyAdmin version is 3.5 something, how do I remove it phpMyAdmin is just a folder in your web-root. You can just delete that folder and install a new one. You must have Apache (or IIS) otherwise phpMyAdmin couldn't have worked. | |
Re: Try CSS media queries. | |
Re: For step 2 an example of repeating data is "Tokyo" or "System Design". Highlight ALL you think apply. ![]() | |
Re: Closed. Duplicate [here](http://www.daniweb.com/community-center/daniweb-community-feedback/threads/463445/downtime). | |
Re: My freepascal isn't that good. The error message is described [here](http://www.freepascal.org/docs-html/user/userse62.html) and basically states that the method definition should include `class`. I'll try later to reproduce this. On what line does it show this message (line number above)? | |
Re: What is in your Devices table? Show structure. | |
Re: There's an error in your query. Post your code, the offending query is not visible in the image. | |
Re: if ($calcDays = "1") Is an assignment..... | |
Re: You didn't `new` a command for `cmd`. |
The End.