Pages: Previous12345...LastNext
Current Page: 2 of 79
Results 31 - 60 of 2356
16 years ago
CyberSpatium
you need to rename f2 index.html to index.html CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog - Check out my new blog
Forum: WampServer English
16 years ago
CyberSpatium
read the phpmyadmin section of my manual. link to manual is in my sig. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog
Forum: WampServer English
16 years ago
CyberSpatium
wamp does not come with an smtp server, so no mater what changes you make you will not be able to send email. running a smtp server is a HUGE security risk, especialy for a newbie. I use a open source php class called phpmailer to program email functionality into my php scripts. phpmailer.sourceforge.net note, just added this to your scripts will not make emails work. you will need to program
Forum: WampServer English
16 years ago
CyberSpatium
post your code please. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog - Check out my new blog. It is for web develop
Forum: WampServer English
16 years ago
CyberSpatium
most likely it is apache that is not running. make sure you do not have any others web servers installed or you are running iis. if you have iis, make sure it is not running. all web servers use port 80. if that port is being used by another web server, apache will not start. also make sure you do not have skype running. skype also uses port 80. CyberSpatium ---------------------- WAMP English
Forum: WampServer English
16 years ago
CyberSpatium
you will need to follow the install instructions here CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog - Check out my
Forum: WampServer English
16 years ago
CyberSpatium
do you remember what version of mysql you where using? CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog - Check out my
Forum: WampServer English
16 years ago
CyberSpatium
do you have any other versions of mysql installed. you can only have one. you need to make sure you completely uninstall them before running wamp CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check
Forum: WampServer English
16 years ago
CyberSpatium
if you are going to host a production website on wamp, you need to think about securty.wamp comes with none, so you will have to do everything yourself. and dont think just because you have a firewall and antivirus you are safe. a firewall and antivirus will not sql injection, cross site scripting, crlf injection, directory traversal, authentication hacking, ajax security and more. securing your
Forum: WampServer English
16 years ago
CyberSpatium
put your website files (html, xhtml, css, php, images, etc) in: c:\wamp\www keep your server in offline mode. all your servers are working ok, and in offline mode, your server is only accessible by you. to see your website, start your favorite webbrowser and type in: you are a newbie, so check out my manual and my Web Development for Newbies blog. link to both are in my sig. CyberSpatium ---
Forum: WampServer English
16 years ago
CyberSpatium
post your code and the exact error message you are getitng CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog - Check ou
Forum: WampServer English
16 years ago
CyberSpatium
as i stated before, you cannot put anything (code, text, spaces, etc) before your header() command. you cannot use output buffering here. it causes a header already sent error because the ob_start() code has already been executed. remove the output buffering code on your script and you will be fine, CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working wit
Forum: WampServer English
16 years ago
CyberSpatium
you need to enable that extension in your php.ini file. enable php_mssql if you have wamp, the start wamp, left click on the system tray icon -> php settings -> php extensions, and click on php_mssql CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.
Forum: WampServer English
16 years ago
CyberSpatium
read the php my admin section of my wamp manual. link to manual is in my sig. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's
Forum: WampServer English
16 years ago
CyberSpatium
rayray519 wrote: > How to I install Joomla CMS with WAMP? > > I have my server working off localhost fine. How do I make the > site available externally? With Windows XP Pro SP2? > > - IIS isn't running > - Port 80 is open on my router > > What are the security risks of allowing WAMP with external HTTP > access? you need to read my wamp manual. link to my man
Forum: WampServer English
16 years ago
CyberSpatium
jw_k wrote: > and that there is not a single character before <?php - > even not an empty line! - and nothing after ?> (the ?> may > even be omitted). this is not 100% true. unless you are using a feature like sessions for example, then it does not matter what you put in front of and/or after your opening and closing php tags. for example, i use this code: <html
Forum: WampServer English
16 years ago
CyberSpatium
you are a newbie, you should check out my wamp manual. also, check out my Web Development for Newbies blog. link to manual and blog are in my sig. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check
Forum: WampServer English
16 years ago
CyberSpatium
you are a newbie, you should read my manual. link to manual is in my sig. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog
Forum: WampServer English
16 years ago
CyberSpatium
see the phpmyadmin section of my manual. link to manual is in my sig. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog -
Forum: WampServer English
16 years ago
CyberSpatium
read the virtual host section of my manual. link to manual is in my sig CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog
Forum: WampServer English
16 years ago
CyberSpatium
how old was your previous version of wamp. the older versions are incompatible with the latest versions. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! We
Forum: WampServer English
16 years ago
CyberSpatium
you cannot have any kind of text, code, spaces,etc before a header <?php header("Location: www.google.co.uk" ?> CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP
Forum: WampServer English
16 years ago
CyberSpatium
DO NOT FOLLOW THIS TIP. This is a huge security issue. you do not want phpmyadmin accessible by anyone. search these forums for how to password protect phpmyadmin. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x
Forum: WampServer English
16 years ago
CyberSpatium
make sure you use full php tags ( <?php ) not short tags ( <? ). CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog
Forum: WampServer English
16 years ago
CyberSpatium
CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog - Check out my new blog. It is for web developers, and especially tai
Forum: WampServer English
16 years ago
CyberSpatium
what kind of backup did you do? did you export or dump your mysql databases or did you just copy the c;\wamp\mysql folder? CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manu
Forum: WampServer English
16 years ago
CyberSpatium
the php code needs to get parsed by apache to work. put your website files in the c:\wamp\www folder, and then start wamp, and open your browser and type: you are a newbie, you should read my manual. link to manual is in my sig. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky In
Forum: WampServer English
16 years ago
CyberSpatium
yes, you will need to use full php tags. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's Blog - Check out my new blog. It
Forum: WampServer English
16 years ago
CyberSpatium
wamp does not come with ldap so using phpldapadmin with wamp is pointless. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x CounterSpy 2.5.x Need help? Check out my WAMP User Manual/Guide here! Web Development for Newbie's B
Forum: WampServer English
16 years ago
CyberSpatium
apache puts all accesses to your webserver in the access log file, it puts all errors in the error file. apache needs these files to start since that is where all the logs go. CyberSpatium ---------------------- WAMP English Forum Admin I have WAMP5 working with (for development use only): Windows Vista Ultimate x64 (64 bit) Kaspersky Internet Security Suite 7.0.x Spyware Terminater 2.x Count
Forum: WampServer English
Pages: Previous12345...LastNext
Current Page: 2 of 79