Current Page: 1 of 1
Results 1 - 17 of 17
13 years ago
skoobiedu
The same logic error is on line 290: ... // recuperation des alias ... if (!isset($aliasContents)) ...
Forum: WampServer English
13 years ago
skoobiedu
On a side note: the link for the English FAQ is wrong. The current value is: http://www.en.wampserver.com/faq.php The correct value should be: http://www.wampserver.com/en/faq.php I know this value isn't used anywhere, so this is just for correctness.
Forum: WampServer English
13 years ago
skoobiedu
There's a logic error in the index.php file that comes with WS. On line 305 (in my version): ... // recuperation des projets ... $projectContents = ''; ... if (!isset($projectContents)) ... the condition will always be false because $projectContents is initialized to an empty string; and isset determines if a variable is set and is not NULL. To fix this, change it to the following: ...
Forum: WampServer English
13 years ago
skoobiedu
A quick note: '|' is called the vertical line. The font used determines whether it's solid or split. If it's split or solid doesn't matter, it's still the vertical line. It is typically located on the key with '\' (back-slash). To get the vertical line, type shift+'\'. The ASCII/Unicode code for the vertical line is 124 (dec); 7C (hex). So, another way to enter the vertical line is to type Alt+01
Forum: WampServer English
14 years ago
skoobiedu
Apparently no one thought to look in the Apache bin directory (<wamp_dir>\bin\apache\<apache_version>\bin). WAMP stands for Windows, Apache, MySQL, and PHP and as such PostgreSQL isn't taken care of. 'libpq.dll' isn't copied into the Apache bin directory, so enabling the PostgreSQL extensions won't work right away. Copy 'libpq.dll' to the Apache bin directory from the PHP directory
Forum: WampServer English
15 years ago
skoobiedu
I don't feel like explaining it to you, since you obviously don't understand what's going on. I started learning HTML when I was 10, by 12 I had HTML mastered and had started learning CSS (14), after that I started learning C++ (15) and C# (16), then PHP (16) and MySQL (17). I understand what's going on underneath the hood, so to speak. Sorry in advance if i sound pissed off, i didn't sleep well
Forum: WampServer English
15 years ago
skoobiedu
This is the first time I've heard of TVU, so are you referring to the TVUPlayer? (gotta love Google)
Forum: WampServer English
15 years ago
skoobiedu
You can also put double quotes around the file name. Notepad doesn't remember what file type you select (since there's only two, 'Text' and 'All', it always goes back to 'Text'), this makes things a little easier. Stevenmartin99 is right though, Notepad++ (which I've literally replaced Notepad with, Notepad no more) is a great text editor.
Forum: WampServer English
15 years ago
skoobiedu
the only user is the 'root' user, and there's no password, so you should change that if you make WampServer live.
Forum: WampServer English
15 years ago
skoobiedu
Fixed it! Yay! MySQL Administrator was looking for a 'my.cnf' file instead of a 'my.ini' file. To fix the problem follow these steps: 1. Ignore the error message. 2. Goto 'Service Control' 3. Click the 'Configure Service' tab. 4. In the 'Configuration File' section, in the 'Config Filename' text box, change the extension, from '.cnf' to '.ini' 5. Click the 'Apply Changes' button 6. Goto '
Forum: WampServer English
15 years ago
skoobiedu
Is it possible to use MySQL Administrator with WampServer 2.0? I get the following error when starting Administrator after the connection dialog: QuoteEither the server service or the configuration file could not be found. Startup variables and service section are therefore disabled.
Forum: WampServer English
15 years ago
skoobiedu
Cool. I just improved the parser a little bit more, removed redundancies and repeated code, and made it case-insensitive. //on recupere la conf courante foreach($myphpini as $line) { $extMatch = array(); if(preg_match('/^(?extension\s*=\s*"?(+)\.dll"?/i', $line, $extMatch)) { $ext_name = $extMatch[2]; if($extMatch[1] == ';') { $ext[$ext_name] = '0'; }
Forum: WampServer English
15 years ago
skoobiedu
the php.ini file in the php directory is for the CLI, not apache. change either the phpForApache.ini file in the php directory, or the php.ini file in the apache bin directory. the php.ini-dist and php.ini-recommended are example php.ini files. if you wanted to use them, then you'd need to remove the '-dist' or '-recommended' part after the '.ini'. everything after the last '.' (dot/period)
Forum: WampServer English
15 years ago
skoobiedu
This is the WampServer 2.0c index.php file:
Forum: WampServer English
15 years ago
skoobiedu
K, I'll try and answer your questions. 1) Default PHP file contents. a. Open up phpDesigner 2008. b. Goto Tools > Preferences... > Editor > Templates c. In the text box to the right, replace the text that's there with the following: <?php /** * @author [$username] * @copyright [$year] */ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
Forum: WampServer English
15 years ago
skoobiedu
it's in the '<wamp_directory>/scripts/refresh.php' file, starting on line 145 (it may be different, so the comment says 'on recupere la conf courante'). replace the foreach loop with the following: foreach($myphpini as $line) { $extMatch = array(); $pregPattern = 'extension\s*=\s*\"?(+)\"?|'; if(preg_match('|^;'.$pregPattern, $line, $extMatch)) { //if (p
Forum: WampServer English
15 years ago
skoobiedu
The INI file parser that WampServer uses needs to be improved. It should remove white space and quotation marks, both of which are allowed in INI files, like php.ini. Since it doesn't, it creates a problem with the WampServer's INI file, which then has to be hand fixed. This would increase the stability of WampServer, since it wouldn't cause itself to screw up, and nobody wants a suicidal applica
Forum: WampServer English
Current Page: 1 of 1