Pages: PreviousFirst...910111213
Current Page: 13 of 13
Results 361 - 388 of 388
16 years ago
c2dan
stevenmartin99 Wrote: ------------------------------------------------------- > <?php > > session_start(); > > > > you have a gap > it needs to be > > <?php > session_start(); > > > > > session is very strict on any whitespace Not within php tags its not. @Cristal how have you inserted the password into you
Forum: WampServer English
16 years ago
c2dan
All you need to do is download wordpress extract to C:\wamp\www Open phpMyAdmin and create a database called wordpress (or whatever you want to call your database for wordpress). Now go to (and navigate to where you extracted wordpress to). Follow then onscreen instructions for installing Wordpress. All the hard stuff is handled by wordpress
Forum: WampServer English
16 years ago
c2dan
Open wampmanager.tpl instead
Forum: WampServer English
16 years ago
c2dan
Example connection $conn = mysql_connect('localhost', 'username', 'password') mysql_select_db('database_name']); If you cant connect with the user you created then ensure you have setup the correct privileges.
Forum: WampServer English
16 years ago
c2dan
Just loggin to your admincp for your board. Its not difficult.
Forum: WampServer English
16 years ago
c2dan
The only forum I know of that is at version 3.0.4 is phpBB Just login to your forums administration control panel and select Board Settings from the menu on the left. The manual explains it clearly
Forum: WampServer English
16 years ago
c2dan
It is easy to do. 1. Download the ..zip package (NOT the .msi installer) from php.net/downloads 2. Extract the contents of the zip to C:/wamp/bin/php/php5.2.9 3. copy wampconfig.conf and phpForApache.ini from C:/wamp/bin/php/php5.2.8 to C:/wamp/bin/php/php5.2.9 4. Start WAMP OR right click the WAMP tray icon and select refresh from the menu. 5. Left click the WAMP tray icon and go
Forum: WampServer English
16 years ago
c2dan
You most probably loaded a module which Apache is unable to load. Check Apaches error log and disable the module Apache is complaining about.
Forum: WampServer English
16 years ago
c2dan
How are you trying to access phpMyAdmin? via or some other url? By default WAMP only allows local connections to phpMyAdmin. If you want to allow access to phpmyadmin for other addresses other than localhost you have to add them to the Allow directive in C:\wamp\alias\phpmyadmin.conf You should also ensure WAMP is set to Online
Forum: WampServer English
16 years ago
c2dan
When you install WAMP a user is automatically setup called root with no password If you want to setup a password for the root user you can do so via phpMyAdmin. However once you have set the password you'll have to configure phpMyAdmin to use the new password for the root user, which you do so by editing the config.inc.php in C:/wamp/apps/phpmyadmin
Forum: WampServer English
16 years ago
c2dan
Whilst using WAMP you'll have to dissable Skype or configure Skype to not use port 80
Forum: WampServer English
16 years ago
c2dan
Those wont stop WAMP from running. I get the same thing. What happens when you click Start All Services? What color icon is the WAMP taskbar icon You should check Apaches error log too. Make sure you dont have skype running either.
Forum: WampServer English
16 years ago
c2dan
Have a look in Apache's Error log maybe something in there.
Forum: WampServer English
16 years ago
c2dan
374. Re: query
Notices are not errors. Before using variables such as $_POST or any other superglobal variable you should check to see if it exists first before using it. however here are two simple fixes I'd move this line $locname = $_POST['loc_name']; after the following line if (isset($_POST['submit'])) { Change this line if ($errorMsg != "" { to if (isset($errorMsg ) &&am
Forum: WampServer English
16 years ago
c2dan
The problem is Apache2.2.11 doesn't come with a wampserver.conf file (latest WAMP distribution). The menu you see when you click the WAMP tray icon is produced by a script called refresh.php At the end of the script it searches for currently installed Apache installations. It fails to add Apache2.2.11 to the menu as it cannot find the wampserver.conf file. TO sort it create a new file calle
Forum: WampServer English
16 years ago
c2dan
So what do you mean by Karlos Wrote: ------------------------------------------------------- > Yea I know i can create a .HTACCESS but that > involves making a new one from scratch... So is > there one already with WAMP?
Forum: WampServer English
16 years ago
c2dan
You dont have to make an addon at all. All You you need to do is extract PHPMyAdmin2.x to wamps www folder. Open you browser and go to and away you go To configure phpmyadmin just copy the default config file (i think its called config.default.php) from the scripts/ directory to the root directory of phpmyadmin2.x rename this file to config.inc.php and edit it to your needs
Forum: WampServer English
16 years ago
c2dan
Like what? You just have add in the relevant commands. WAMP does not have a preconfigured .htaccess for blocking access to a directory with a given IP range. For preventing access to a directory have a read of the manual for the commands you'll need
Forum: WampServer English
16 years ago
c2dan
You can create one you're self. Open notepad and go to Fille > Save As... Type "C:\wamp\www\.htaccess" (including the quotes) into the filename box and click save. A .htaccess file should now be present within WAMPs WWW folder
Forum: WampServer English
16 years ago
c2dan
Just extract the contents of the tar.gz file to C:\wamp\www\drupal (to be able to extract files from tar.gz files you'll need install untar or winrar) Next left click WAMPs tray icon and select phpMyAdmin. In the Create Database box type in drupal Click ok. Now go to Follow the on screen instructions. When it asks for your database details enter root as the username (leave password blank)
Forum: WampServer English
16 years ago
c2dan
It is possible but you'll have to configure Apache manually. I'd suggest you to use RadRails
Forum: WampServer English
16 years ago
c2dan
Microsoft IIS/7.0 is not IE7 it is Microsoft internet information server (http server). To free port 80 you'll need to disable/uninstall IIS7
Forum: WampServer English
16 years ago
c2dan
What do you mean by "I can not exit from the local host"
Forum: WampServer English
16 years ago
c2dan
To use SQLite 3 databases you'll have to enable the php_pdo and php_pdo_sqlite extensions rather than the standard php_sqlite extension The following shows you how to connect to an SQLite3 database using pdo
Forum: WampServer English
16 years ago
c2dan
Those errors wont stop WAMP from working. Left click the WAMP tray icon and select start all services if the icon does not change check Apaches error log (from the Apache submenu)
Forum: WampServer English
16 years ago
c2dan
You have IIS running. WAMP and IIS cannot be used at the same time. You'll have to configure WAMP to use a different port or stop IIS whilst you use WAMP.
Forum: WampServer English
16 years ago
c2dan
Have you recently set a password for the MySQL root user? if so you'll have to tell phpMyAdmin that within its configuration file C:\Wamp\apps\phpmyadmin\config.inc.php Locate the following line $cfg['Servers'][$i]['password'] = ''; Enter the password for the root user within the quotes. Save and reload phpmyadmin.
Forum: WampServer English
16 years ago
c2dan
Everything is located within the C:\wamp\bin folder
Forum: WampServer English
Pages: PreviousFirst...910111213
Current Page: 13 of 13