Pages: Previous123Next
Current Page: 2 of 3
Results 31 - 60 of 64
14 years ago
arnb
Thank you for the suggestion, I successfully used something similar using my router to get around my ISP's port blocking as follows: 1. Set the Paypal processing IP to nnn.nnn.nnn.nnn:8181/xxx/paypal/ipn_pcs.php 2. Setup a router rule allowing port 8181 from Paypal Sandbox sending the message to my local machine at port 80. BTW 8181 can be any port not blocked by the ISP.
Forum: WampServer English
14 years ago
arnb
Found the problem: My ISP is blocking port 80 (sigh)
Forum: WampServer English
14 years ago
arnb
Updated settings shown below without success. In Windows 7 Firewall inbound program rules for programs C:\wamp\bin\apache\Apache2.2.11\bin\httpd.exe and C:\wamp\wampmanager.exe Modified httpd.conf # # Controls who can get stuff from this server. # # onlineoffline tag - don't remove Order Deny,Allow # Deny from all Allow from all # Allow from 127.0.0.1 Enabled Win
Forum: WampServer English
14 years ago
arnb
Bumping into this issue. Would you please post exactly what was entered or changed on the Windows 7 Firewall. Thank you
Forum: WampServer English
14 years ago
arnb
Need help getting Paypal Sandbox Instant Payment Notification messages to process with WAMP. They work if they are processed on my web host with a rudimentary script, however I want to develop my code with my WAMP test system. The configuration: Router DLNK DIR-625 attached to cable modem, OS Windows 7 Home Premium(all updates) running Wamp 2.2.11, with PHP version 5.3.1 In the router I h
Forum: WampServer English
14 years ago
arnb
Need help getting Paypal Sandbox Instant Payment Notification messages to process with WAMP. They work if they are processed on my web host with a rudimentary script, however I want to develop my code with my WAMP test system. The configuration: Router DLNK DIR-625 attached to cable modem, OS Windows 7 Home Premium(all updates) running Wamp 2.2.11, with PHP version 5.3.1 In the router I h
Forum: WampServer English
14 years ago
arnb
Appreciate the link. If I can find, then get access to httpd conf on my web host I should be able to do it. I'll give them a call tomorrow. Arn
Forum: WampServer English
14 years ago
arnb
I've noticed in WAMP 2.0i with Apache 2.2.1 that entering a webpage into the broswer named localhost/example/ExAmple.pHp brings me to the same page as localhost/example/example.php. This does not happen on my Linux web hosting service, and although I've toyed with the my web host .htaccess file I've never been able to make this happen. Does anyone know the Apache setting allowing case toleran
Forum: WampServer English
14 years ago
arnb
Check this thread Should your problem be caused by Mysql_Close in your PHP, install and use PHP 5.3.1 but be sure to read thread then check, and if necessary update your hosts file before attempting to use it.
Forum: WampServer English
14 years ago
arnb
toumimi wrote: >So it need to be removed or modified to :::1 (three : ), in order wamp to work. Changed my hosts file to :::1 localhost and all is functioning normally. Thank you for the explanation and the solution. Arn
Forum: WampServer English
14 years ago
arnb
Higher level workaround found and tested. comment out ::1 localhost from the Windows host file which was added for IPV6. You must run your editor in Administrator mode (Right click, select run as administrator) then edit C:\Windows\System32\drivers\etc\hosts Full bug information at No, it's a bug in the PHP stream transport. (mysqlnd is using PHP streams for the connection) -
Forum: WampServer English
14 years ago
arnb
edit C:\wamp\apps\phpmyadmin3.2.0.1\config.inc.php
Forum: WampServer English
14 years ago
arnb
Workaround for phpMyAdmin edit C:\wamp\apps\phpmyadmin3.2.0.1\config.inc.php change as follows //$cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['host'] = '127.0.0.1'; This works until someone figures out the solution using php.ini. I tried setting mysql.default_socket = 127.0.0.1 but it did not work, perhaps it needed quotes. I'll try that later. BTW I can confirm the
Forum: WampServer English
14 years ago
arnb
Workaround found for my scripts, phpMyAdmin continues to fail Changed my connection script from mysql_connect ('localhost', 'userid', 'password') to mysql_connect ('127.0.0.1', 'userid', 'password')
Forum: WampServer English
14 years ago
arnb
Don't understand "ok... you should have jsut deleted wamp and installed version 2.0i " It was already installed and working
Forum: WampServer English
14 years ago
arnb
click addons click PHP click 5.3.1 and installed it
Forum: WampServer English
14 years ago
arnb
Found this at , but don;'t know the path to use. For those who manually compiled MySQL, the default mysqlnd settings may results in error. Your mysql_error() function may give you this message: --------------------------- No such file or directory (trying to connect via unix:///tmp/mysql.sock) --------------------------- This is because your manually compiled MySQL has its own place
Forum: WampServer English
14 years ago
arnb
Installed PHP 5.3.1. When it attempts to connect to MySql including using PHPMyAdmin I get no output with a perpetual "connecting to localhost" message in Firefox until the script times out. Anyone have a solution?
Forum: WampServer English
14 years ago
arnb
>>I've used WAMP allready on this computer but recently upgraded to windows 7 Working fine here on Windows 7. If you recently updated WAMP try doing a clean install, that's what made it work for me.
Forum: WampServer English
14 years ago
arnb
Update: Additional testing indicates this failure occurs only when the PHP error occurs prior to issuing the ob_start('ob_gzhandler'). Moving the ob_start to the beginning of the script cures the problem.
Forum: WampServer English
14 years ago
arnb
I found the problem is caused by setting output_buffering on or nnnn(4096), running a script with ob_start('ob_gzhandler'), then having PHP throw an error. My web hosts over the years did not and currently do not use output_buffering by default, so I've coded the ob_start on most of my scripts. I suppose it's time to add a small test checking if output_buffering is on by default prior to is
Forum: WampServer English
14 years ago
arnb
Thank you for that information, however I encountered no apparent issues running phpinfo with PHP 5.3.0 with logging to "c:/wamp/logs/php_error.log. What is the bug you encountered?
Forum: WampServer English
14 years ago
arnb
Solved this issue by setting PHP.ini as follows: output_buffering = Off (versions 5.2.11 and 5.3.0) Also set the following to enable error logging to a file error_log = "c:/wamp/logs/php_error.log" (version 5.3.0 already set this way in 5.2.11)
Forum: WampServer English
14 years ago
arnb
It looks like it always does when the WAMP Server is functioning normally and as I mentioned when I remove the intentional php coding error it works. The icon appears to be white, small black square on lower left, smaller black dot on the right, something that resembles a T or an F without the center line in the middle in a black background.
Forum: WampServer English
14 years ago
arnb
Thank you for the response, however all of my scripts start with <?PHP
Forum: WampServer English
14 years ago
arnb
Running WampServer 2.0i [07/11/09] under Windows 7 Includes : - Apache 2.2.11 - MySQL 5.1.36 - PHP 5.3.0 When any page has a PHP error the page fails as noted in the message subject. I put a deliberate error into a working page forcing the failure after a page with a notice would not run. The error appears in the PHP log, but the page totally fails. I'm used to the error messages show
Forum: WampServer English
14 years ago
arnb
User note found on PHP documentation for mysql_close() 11-Oct-2009 09:09 It seems that as of PHP 5.3, the link_identifier parameter is no longer optional. If not included, it would cause the script to crash with no errors in the output.
Forum: WampServer English
14 years ago
arnb
I looked at the following thread and found my answer commented out //mysql_close() and it works. Going further looked at the PHP user comments for mysql_close and found the following 11-Oct-2009 09:09 It seems that as of PHP 5.3, the link_identifier parameter is no longer optional. If not included, it would cause the script to crash with no errors in the output.
Forum: WampServer English
14 years ago
arnb
No error messages in PHP, Apache or MySql logs, PHP error reporting set to E_ALL | E_STRICTJ (but also occurs with E_ALL) Running the latest version of Wamp under Windows 7 (32 Bit, all updates installed) , although WAMP required a clean install before it would function, then imported the Mysql DB. When running with PHP5.3 some but certainly not all of my pages give "The connection was re
Forum: WampServer English
15 years ago
arnb
yfastud Wrote: ------------------------------------------------------- > > > Do you see anywhere in my guide that show "Set an > Environment Variable OPENSSL_CONF to > C:\wamp\bin\apache\apache2.2.xx\bin\openssl.cnf"? > And that's reason why you've got that error > I believe you truly want to help, but I feel these statements are condescending. "
Forum: WampServer English
Pages: Previous123Next
Current Page: 2 of 3