wallys12345 0 Posted July 14, 2013 Report Share Posted July 14, 2013 I believe that I installed html_QuickForm2 correctly on my mac, version 10.6, but I still get an error stating the file doesn't exist, any suggestions. And how can I check to see if pear is installed on my computer ( I presume that it is). i am presently using mamp pro 2.0.5. Quote Link to post Share on other sites
wallys12345 0 Posted July 14, 2013 Author Report Share Posted July 14, 2013 I also wanted include the error I have been getting: Fatal error: require() [function.require]: Failed opening required 'HTML/QuickForm2.php' (include_path='.:/Applications/MAMP/bin/php/php5.3.6/lib/php:/usr/local/pear/share/pear/') in /Users/macowner/Sites/jimSite/login.php on line10 Quote Link to post Share on other sites
Antonio Conte 426 Posted July 15, 2013 Report Share Posted July 15, 2013 This problem is related to packages and your include path. As you see from your error message, the file does not exists at your include_path. When you require/include files, PHP will check several places for that file if it's not found. When it can't find QuickForm2.php inside the folder named "HTML", it'll then check your include path. That's why you get that message there. If you turn on "view hidden files" on your computer, go do your C drive, then navigate through the folders /usr /local /pear /share /pear, that's where you computer expects the Pear package to be downloaded at. You might do one of several things to fix the problem: 1. Change include_path in php.ini: (Recommended) - Find your php.ini file and change the include_path variable to where the HTML QuickForm package is located. 2. Change include_path with ini_set() - Add this line before you include something. It'll change your include path temporarily for that script. ini_set("include_path", "new/path/here"); 3. Move your package. Find it using search, copy it and paste it into usr/local/pear/share/pear 1 Quote Link to post Share on other sites
wallys12345 0 Posted July 15, 2013 Author Report Share Posted July 15, 2013 thanks for your help, but I can't find QuickForm2.php even though I have a Pear folder. MAMP/bin/php5.3.6/lib/php/PEAR/ I presume if I have the pear folder than that file should be there. As to hidden folders, I am on a mac, and am not aware of any hidden folders that I could access. Is it possible to just download the QuickForm2 package? thanks again. wallys12345 Quote Link to post Share on other sites
margaux 171 Posted July 15, 2013 Report Share Posted July 15, 2013 You can search for QuickForm2 In Finder and it will show you the folder it is in. It should be in Applications/MAMP/bin/php/php5.3.6/lib/php/HTML Quote Link to post Share on other sites
wallys12345 0 Posted July 15, 2013 Author Report Share Posted July 15, 2013 Thanks. The file is not there. is it possible to just download this particular file, because it appears as if it is not on my computer? Nothing comes up in the finder. Quote Link to post Share on other sites
Guest Deleted Posted July 16, 2013 Report Share Posted July 16, 2013 Thanks. The file is not there. is it possible to just download this particular file, because it appears as if it is not on my computer? Nothing comes up in the finder. I would like to know this too. I don't understand why you have to install HTML_QuickForm2 and include it when you use it in a PHP file. Shouldn't it be one or the other? Quote Link to post Share on other sites
margaux 171 Posted July 16, 2013 Report Share Posted July 16, 2013 If I recall correctly, HTML_QuickForm2 is a class from the pear framework so you need to download any feature you want to use. Then you have to require it in the scripts that use that class. I never completely understood how require('HTML/QuickForm2.php'); made it possible for me to use it but I think its because php through php.ini has a list of directories it searches through for files/classes. By installing it you tell php where to find it. I think I followed the steps on the pear site. Sorry I can't be more definite, it was awhile ago. Quote Link to post Share on other sites
Guest Deleted Posted July 17, 2013 Report Share Posted July 17, 2013 Would anybody happen to know how install it on a shared host? I have cpanel and I have ssh access. It's a linux server. Quote Link to post Share on other sites
Larry 428 Posted July 17, 2013 Report Share Posted July 17, 2013 On a shared host, you'd normally ask the hosting company to install it. Quote Link to post Share on other sites
Guest Deleted Posted July 17, 2013 Report Share Posted July 17, 2013 My host said I can install pear packages from the command line. So I did this: pear install HTML_QuickForm2-2.0.0 And then this happened: downloading HTML_QuickForm2-2.0.0.tgz ... Starting to download HTML_QuickForm2-2.0.0.tgz (178,224 bytes) .....................................done: 178,224 bytes downloading HTML_Common2-2.1.0.tgz ... Starting to download HTML_Common2-2.1.0.tgz (8,630 bytes) ...done: 8,630 bytes But if I try to do this in a script: require('HTML/QuickForm2.php'); I get this: Warning: require(HTML/QuickForm2.php): failed to open stream: No such file or directory in /home/mywebsitenamehere/public_html/js_test.php on line 6 Fatal error: require(): Failed opening required 'HTML/QuickForm2.php' (include_path='.:/usr/php/54/usr/lib64:/usr/php/54/usr/share/pear') in /home/mywebsitenamehere/public_html/js_test.php on line 6 What should I do? Quote Link to post Share on other sites
Guest Deleted Posted July 17, 2013 Report Share Posted July 17, 2013 Oooh, I got it to work. I had to change the include_path in php.ini I had to change it to something like this: include_path = ".:/usr/lib/php:/usr/local/lib/php:/home/myusernamegoeshere/php" Quote Link to post Share on other sites
Patrick 0 Posted December 6, 2020 Report Share Posted December 6, 2020 I'm not using XAMPP. Instead, I'm using LAMP components installed individually on Debian Buster (at least for home computer). The Apache error log showed me the problem - apparently, utilities.inc.php was trying to load components automatically related to HTML_QuickForm2, and that created the failure conditions of my system trying to "load" HTML_QuickForm2 component classes. In fact, since I was using Debian locally, I could tell my the Pear HTML_QuickForm2 stuff was located in /usr/share/php. So, I commented out the class_loader() and spl_autoload_register lines in the utilities.inc.php and added require('classes/User.php') and require('classes/Post.php') manually when needed (and I did opt for the Post.php vice the Page.php class, but that's a trivial set of tweaks). And then, basically, it worked! So, the auto loading class feature was breaking HTML_QuickForm2. If anyone knows how to keep the autoloading class feature, let me know. But since this OOP code is so small, I figure it's a small price to pay to manually load a class or two as needed. Quote Link to post Share on other sites
Larry 428 Posted December 18, 2020 Report Share Posted December 18, 2020 I'm pleasantly surprised to hear that HTML_QuickForm2 is still maintained! I don't have a better solution than what you put forth but that's also a solution I've resorted to using in my dev life, so you should be okay! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.