Pages: 12Next
Current Page: 1 of 2
Results 1 - 30 of 55
16 years ago
jw_k
>have used a small php script which I know works in older versions compare the settings of register_globals and short_open_tag in your php.in php.net and google are your friends...
Forum: WampServer English
16 years ago
jw_k
to avoid php throwing errors like "index 'type' is not defined" better use: if (empty($_GET['type'])) { $type = 'home'; } else { $type = $_GET['type']; }
Forum: WampServer English
16 years ago
jw_k
you need an entry like: 127.0.0.1 localhost in your hosts file (or just use [127.0.0.1]) ( http../127.0.0.1/filename.ext )
Forum: WampServer English
16 years ago
jw_k
>IIS is not installed in my computer. but apparently anApachache service is already running (maybe left over from a pre xammp installation). You have to uninstall that old one first.
Forum: WampServer English
16 years ago
jw_k
well, it's a serious design flaw... anyone should know by now that paths with spaces *must* be surrounded by double quotes. just my humble opinion
Forum: WampServer English
16 years ago
jw_k
you have that file in phpmyadmin/ and not in any subfolder?
Forum: WampServer English
16 years ago
jw_k
for a first attempt try this: <?php $cfg['blowfish_secret'] = 'anything (but less than 47 characters)'; // only needed for obfuscating user-name/pw if auth_type = cookie $i = 0; $i++; $cfg['Servers'][$i]['auth_type'] = 'cookie'; // gives better hints from mysql than 'http' $cfg['Servers'][$i]['extension'] = 'mysqli'; // for advanced features ?> see (config basics)
Forum: WampServer English
16 years ago
jw_k
you should google for »php picture upload« - I bet there are hundreds, nay thousands of those scripts out there on the web (but not using flash).
Forum: WampServer English
16 years ago
jw_k
to let the mysql report the actual *server* version you are connected to use select version(); in the phpmyadmin sql window or on the mysql CLI. Glad to have been helpful Jürgen
Forum: WampServer English
16 years ago
jw_k
maybe you get better hints from apache when you stop the service and try to start apache from the console (cmd, "Dos"-window
Forum: WampServer English
16 years ago
jw_k
php uses the libmysql.dll (client) from the mysql 5.045 package. No problem though (it's backword compatible and can deal even with mysql 3.x servers)
Forum: WampServer English
16 years ago
jw_k
a bad example is worse than no example at all (IMHO).
Forum: WampServer English
16 years ago
jw_k
you may want to have a look at the .bat files in the xampp(lite) kit (installation as services as well as running in the console): They are straightforward. mysql and apache can run without touching anything on the windows box (even from a memorystick). HTH
Forum: WampServer English
16 years ago
jw_k
IE7 has a "set multiple cookies" bug, try a different browser.
Forum: WampServer English
16 years ago
jw_k
works here on an old sony vaio laptop, win2000, 256 MB, 300Mhz(?) for exact the same purpose.
Forum: WampServer English
16 years ago
jw_k
just in case and if someone looks for wamp5 v.1.7.4 (or older versions) :
Forum: WampServer English
16 years ago
jw_k
you may want to look at
Forum: WampServer English
16 years ago
jw_k
you may want to read these:
Forum: WampServer English
16 years ago
jw_k
just install the latest wamp5 ;P
Forum: WampServer English
16 years ago
jw_k
assuming that you intend to use php/mysql ... <?php //header stuff $dbs = 'domain1.com';//or ip-address $dbu = 'remoteUSR'; //must be granted access from domain1.es ! $dbp = 'rUSRpw'; $hdl=MYSQL_CONNECT($dbs,$dbu,$dbp) //or mysqli ... or die('#'.mysql_errno()." <B>$dbs</b> ".mysql_error()); //do the queries & show results //.... ?> this script can run anywhere
Forum: WampServer English
16 years ago
jw_k
mysql listens by default to port 3306 . This has nothing to do with the http protocol. this tiny config.inc.php : <?php $cfg['PmaAbsoluteUri'] = 'http://www.your_web.net:8080/path_to_your_phpMyAdmin_directory/'; $i = 1; $cfg['Servers'][$i]['auth_type'] = 'http'; ?> should give you a nice login popup.
Forum: WampServer English
16 years ago
jw_k
with short_open_tag = Off it's not enough to replace <? with <?php , but you have to modify segments like h1 { color:<?=$dkgray?> } with h1 { color:<?php echo $dkgray;?> } or - what I prefer - : echo " /* other segments here */ h1 { color: $dkgray } /* other segments here */ "; ymmv
Forum: WampServer English
16 years ago
jw_k
SQLite has nothing to do with MySQL. Try phpmyadmin to check whether mysql is running.
Forum: WampServer English
16 years ago
jw_k
ask <?php phpinfo(); ?> to be sure that you looked at the *right* php.ini and what the actual value of open_basedir .
Forum: WampServer English
16 years ago
jw_k
maybe there are some files left from an older installation (normally wamp5 works after 15 minutes "out of the box"!? ask <?php phpinfo(); ?> for the location of the (really used) extension_dir. ceck whether the php_mysql(i).dll files are there.
Forum: WampServer English
16 years ago
jw_k
>phpMyAdmin - Error: Cannot start session you have to set session.save_path "c:/windows/temp" or whereever everybody has write rights. I don't use sqllite but maybe you have to uncomment the sqllite line in php.ini ask <?php phpinfo(); ?> which php.ini is used and don't forget to restart the webserver after changes. HTH
Forum: WampServer English
16 years ago
jw_k
use $_GET['expectedFromURI'] instead of $expectedFromURI use $_POST['expectedFromFORM'] instead of $expectedFromFORM in your scripts or whatever the vars are named. You may want to read
Forum: WampServer English
16 years ago
jw_k
the wampserver homepage tells: WAMP5 1.7.3 with PHP 5.2.4 and MySQL 5.0.45 if you install wamp5 and start mysql you should be able to install/run "SAM Br..."
Forum: WampServer English
16 years ago
jw_k
Make sure that you don't save the .php files in unicode or in utf8 and that there is not a single character before <?php - even not an empty line! - and nothing after ?> (the ?> may even be omitted). You also will get problems running phpMyAdmin if Zonealarm is installed (or not tailored accordingly).
Forum: WampServer English
16 years ago
jw_k
I stopped apache and made a backup of the apache folder (just in case Then I copied all 2.2.6 files from over the old 2.2.4 ones. The issue went away immediately after restart (No warranty though!)
Forum: WampServer English
Pages: 12Next
Current Page: 1 of 2