Pages: PreviousFirst...678910...LastNext
Current Page: 8 of 13
Results 211 - 240 of 388
14 years ago
c2dan
The problem I see is in the /web folder there is a configuration issue. Is there a file called .htaccess located in your your /web folder? post the contents here.
Forum: WampServer English
14 years ago
c2dan
You have XAMPP installed too? This is not possible WAMP and XAMPP will both conflict each other. You should only use one or the other not both.
Forum: WampServer English
14 years ago
c2dan
This is not a a form help with code, but I'll help anyway Is a form being posted to that script? If it is you should only execute these lines of code $sql = "INSERT INTO testTable (uName, uNum) VALUES ('$_POST', '$_POST')"; if (!mysql_query($sql,$con)){ die('Error: ' . mysql_error()); } When the form is submitted. Otherwise a blank record will be added to your tetsTable as
Forum: WampServer English
14 years ago
c2dan
Look at Apache's error log (left click WAMP tray icon and select Apache > Apache error log). Post the last ten lines from the log.
Forum: WampServer English
14 years ago
c2dan
DOM is built into PHP. Have read about DOM in the PHp manual:
Forum: WampServer English
14 years ago
c2dan
john.ou Wrote: ------------------------------------------------------- > my server is: Apache/2.2.11 (Win32) PHP/5.2.9-2 > MySQL client version: 5.0.51a > After I upgrade WAMP, I re-install all my data to > Apache easily, but my back up sql database is > larger then 2048 kb. so I can not import it > through phpmyadmin. BY default PHP only allows uploads of 2MB max.
Forum: WampServer English
14 years ago
c2dan
Nothing to do with WAMP but yes this is possible to do. Just make sure your remote MySQL server accepts remote connections. When connecting to your remove database, rather then using localhost as the hostname us the the ipaddress/domain of the remote MySQL Server you're connecting to.
Forum: WampServer English
14 years ago
c2dan
Your script is not compatible with PHP5.3 Downgrade to PHP5.2.9
Forum: WampServer English
14 years ago
c2dan
RalphEs Wrote: ------------------------------------------------------- > > as soon as I parse .css in apache with > > AddType application/x-httpd-php .css > > the mime type in the header are changing. > With that you're now telling Apache to send all requests for .css files to the PHP Interpreter. BY default the PHP Interpreter sends back the text/html conte
Forum: WampServer English
14 years ago
c2dan
If you're generating your CSS with PHP you need to send the text/css content type header header("Content-type: text/css" That should be the first line in your code after your opening php tag.
Forum: WampServer English
14 years ago
c2dan
By default there is no password for mysql. Just leave password field empty
Forum: WampServer English
14 years ago
c2dan
Did you run the setup script for Joomla?
Forum: WampServer English
14 years ago
c2dan
What color is WAMP tray icon?
Forum: WampServer English
14 years ago
c2dan
You don't have to have the same version of Apache, PHP and MySQL as your host. When you get the 403 forbidden error what where you doing? This error appears to be caused by something you're doing. You'll have to get in touch with GoDaddy for why you're getting this error.
Forum: WampServer English
14 years ago
c2dan
You appear to have IIS installed. You should uninstall/disable IIS before using WAMP
Forum: WampServer English
14 years ago
c2dan
To transfer your database, Go to phpmyadmin in wamp and select Export tab. Select your blog database from the list of databases. Scroll to the bottom of the page and select the Save As File checkbox. Now click the Go button. Save the .sql file to your desktop. I'm guessing this is your webhost: . If it is follow these guides First create a new database for your blog Now to import
Forum: WampServer English
14 years ago
c2dan
Yes go to and download an older version from there, 2.0h
Forum: WampServer English
14 years ago
c2dan
This is nothing to do with the version of phpMyAdmin. This is a PHP configuration issue. By default PHP has a max upload file size of 2MB. To up this limit, left click WAMP tray icon and select PHP > php.lini Now scroll down and find the following line upload_max_filesize = 2M Change 2M to something higher , for example set it to 10M to allow for uploads up to 10MB. Save the php.in
Forum: WampServer English
14 years ago
c2dan
localhost will only be available the computer that has WAMP installed. To access WAMP from another computer on your network you need to use the computers LAN IP address that has wamp installed on it. for example [192.168.2.2] You can of course edit your others computers hosts file and change 127.0.0.1 localhost to your computers IP address here localhost Now localhost will work as
Forum: WampServer English
14 years ago
c2dan
What version of Windows are you running? Maybe the taskbar is set to hide icons
Forum: WampServer English
14 years ago
c2dan
Make sure you're going to to run your .php script. You should also be saving all files in C:/wamp/www folder too.
Forum: WampServer English
14 years ago
c2dan
This is not a forum to help correct code but Line 69 should read function invokeCreateDomain(Amazon_SimpleDB_Interface $service, $request = array('DomainName' => 'ksnshop'))
Forum: WampServer English
14 years ago
c2dan
What you will want to do is to move your www folder to your desktop. You'll now need to go to phpyadmin. Go to the Export tab and choose your joomla database (and any other databases you want to keep) from the list of databases. Scroll to the bottom of the page. Select Save as file checkbox. Now click the Go button. Save the .sql file to your desktop. Thats it everything is now backed u
Forum: WampServer English
14 years ago
c2dan
What version of WAMP are you using? I'm assuming you're using some version of WAMP Server 2 and not WAMP5 You can always close wamp and restart wamp which does the same thing. The refresh menu appears when you right click (not left click) the wamp tray icon.
Forum: WampServer English
14 years ago
c2dan
Your script may not be compatible with PHP5.3.0 which is what could be causing Apache to crash. For now stick with 2.0h
Forum: WampServer English
14 years ago
c2dan
mail() wont work with hotmail. You can only use non password protected mail servers with the standard mail() function. hotmail requires authentication in order for emails to be sent. Instead use a script called phpmailer: This will allow you to send/recieve email to/from servers which requires authentication.
Forum: WampServer English
14 years ago
c2dan
Just delete the ones you dont want from the C:/wamp/bin/php/ folder. Right click WAMP taksbar icon and select refresh, the deleted versions will not be shown in PHP > PHP Version list
Forum: WampServer English
14 years ago
c2dan
Are you sure you are editing the correct php.ini? To ensure you're editing the correct php.ini, left click wamp tray icon and select PHP > php.ini Also to let you know another way of enabling extensions is to left click wamp tray icon and select > PHP > Extensions. Select the extensions you wish to enable from the list.
Forum: WampServer English
14 years ago
c2dan
What color is the wamp tray icon? Make sure you don't have other services running such as Skype or IIS etc these will cause problem with WAMP. You should check to see if you have this line in your hosts file (C:/Windows/system32/drivers/etc) 127.0.0.1 localhost If you don't you need to add it
Forum: WampServer English
14 years ago
c2dan
You need to enable php_pdo.dll too in the php.ini Make sure you're editing the right php.ini, by left clicking wamp tray icon and select PHP > php.ini Make sure you restart Apache after making any changes to the php.ini
Forum: WampServer English
Pages: PreviousFirst...678910...LastNext
Current Page: 8 of 13