Error! Could not find a Joomla! XML setup file in the package - joomla1.5

i purchased "wordpress for joomla " extension and now i am not able to install it in my jooma site (version 1.5.23).While instaalling displays a message like
"
JFTP::login: Unable to login
JClientHelper::setCredentialsFromRequest failed
Error! Could not find a Joomla! XML setup file in the package " .Anyone please help !

Your FTP information are maybe wrong. Go in the administration/Config and check ftp informations.
You're also using an old Joomla version : update and prepare to Joomla 2.5!

Related

Not able to file a bug with attachment on Bugzilla 5.0.2 Perl 5.2 on xampp windows 7

I completed setting up of Bugzilla v5.0.2 on xampp in windows system with the help of this link: https://thiscouldbebetter.wordpress.com/2015/10/23/installing-bugzilla-on-windows-with-xampp/.
I can file a bug without attachment, but with attachment I am not able to file bugs. I am getting this error message:
Error in tempfile() using template \xampp\tmp\XXXXXXXXXX: Parent directory (\xampp\tmp) does not exist at C:/Perl/lib/CGI.pm line 3382.
[]
I rewrote path rules in httpd.conf file.
location of bugzilla in my system : C:/bugzilla/
location of xampp : D:\development\xampp
Please help me on this issue, I am not able to fix from past 2 days.
enter image description here

Moodle plugin ' missing from disk error'

I am developing a plugin in moodle, I have uploaded the plugin but in Manage activities I see the ' Missing from disk' error and a related Section error! in the settings. Why I am getting such an error?
I had problems with the "videofile" Moodle plugin (version 1.5).
When I was upgrading to the Moodle 3.0 version, a message "missing from disk error" was showing, and it was unable to continue with the installation.
The file "version.php" from "/mod/videofile" had the command "$module" in several lines. I replaced with "$plugin" and that solved the problem.
Hope this help someone with the same problem.
Check the directory permissions for the plugin directory - if your webserver cannot read the directory, then you are likely to get this error.
I had this same issue when upgrading Moodle and had to move some custom plugins from the old install to the new.
But for me it was the file ownership that was the problem (I'm on a Linux server).
Changing the ownership (chown) fixed the issue for me.

Zend A 404 error occurred Page not found

I am new to zend frame work. I am in the process of learning this, in fact at the very beginning of this. My problem is that I download the zend studio and try to run the zend application by following a tutorial on net but the when I run the code it said that
'A 404 error occurred
Page not found The requested URL could not be matched by routing '.
I googled man time and applied all the possible solutions on it but all in vein. Kindly help me in this regard.
To Do list:
check your server folder permission -> 777 for the development
check .htaccess file in the public folder, there is a good example .htaccess files for Zend in here stackoverflow
check your php configuration for model rewrite, unlikely sometimes it does not install
check your apache site-enable file for model rewrite and allowaccess
you need to google them out, but that is it, after you finish your first one , all other project just copy from the first one

Netbeans and Derby : access denied

I have just downloaded and installed Netbeans 7.2.1. Goind on the service tab and trying to start JavaDB. I have the following error :
java.security.AccessControlException: access denied ("java.util.PropertyPermission" "file.encoding" "read")
:(
a problem Java Security Manager
Can someone tell me how to resolve this to finally start javaDB by right clicking and choose "Start server" ?
Thank you
To solve this , You need to append this permission below to the java policy file that is shipped with JDK 1.7.:
permission java.util.PropertyPermission "file.encoding", "read";
The file can be found under : /jdk1.7.0/jre/lib/security/java.policy
Visit this link for more information. You can check this IBM document for configuration file descriptions.
I found a quick solution to this problem - Start your JavaDB from the command line\terminal like so:
<base folder>/db/bin/startNetworkServer -noSecurityManager
Then it runs fine without adding new permissions.

Problems with zend-tool reporting that providers are not valid

I have recently setup XAMPP 1.7.3 and ZendFramework 1.10.4 on a new computer and many of the commands that I normally use now fail.
Here are the steps I used to setup and test ZF.
First I added the ZF library folder (C:\xampp\php\ZendFramework-1.10.4\library) to the include path in php.ini.
Then I added the ZF bin folder (C:\xampp\php\ZendFramework-1.10.4\bin) to my Path system variable.
To test that everything is configured correctly I ran the command "zf show version" from the command line. The result is "Zend Framework Version: 1.9.6".
Immediately something appears to be wrong. The file that is downloaded is "ZendFramework-1.10.4.zip" and the reported version is 1.9.6. I have re-downloaded the latest version (1.10.4) and removed old copy. Still the incorrect version number problem persisted.
Having done some research there is a bug in the ZF knowledgebase that version 1.10.3 reports a wrong version number. So that may explain the version number problem.
Moving forward I tried to run some zf-tool commands and certain commands reports that the action or provider is not valid.
Example:
C:\xampp\htdocs>zf create project test
Creating project at C:/xampp/htdocs/test
C:\xampp\htdocs>cd test
C:\xampp\htdocs\test>zf create controller Test
Creating a controller at C:\xampp\htdocs\test/application/controllers/TestController.php
...
Updating project profile 'C:\xampp\htdocs\test/.zfproject.xml'
C:\xampp\htdocs\test>zf create action test Test
Creating an action named test inside controller at C:\xampp\htdocs\test/application/controllers/TestController.php
...
Updating project profile 'C:\xampp\htdocs\test/.zfproject.xml'
C:\xampp\htdocs\test>zf enable layout
An Error Has Occurred
Action 'enable' is not a valid action.
...
C:\xampp\htdocs\test>zf create form Test
An Error Has Occurred
Provider 'form' is not a valid provider.
...
Can any one provide insight into these errors and how to correct them?
I had a similar issue, it turned out that I needed to manually update the zf.bat and zf.php files that came included with xampp after updating to the latest zend framework.
I got them from the zend svn here: http://framework.zend.com/svn/framework/standard/trunk/bin/
the simple way if you are using xampp, just go to the path "xampp\php\PEAR" an replace the older Zend directory with all included files by a new one zend 1.10... dir and your porblems are lost :)
i think your problem is, that Zend Tool is shipped with xampp since some versions.
Try to find zf.bat in your Xampp directory and remove it ;)
ZF friends have written the worst kind of docs. For XAMPP user, it is more difficult. I have learning ZF and posting error getting on the path. I am also using XAMPP.
Your error list is very big. I hope I can help you.
Solution for error "An Error Has Occurred
Action 'enable' is not a valid action." is XAMPP's Zend Tool installation. Delete that.
Check here for more details about the solution and other possible errors: http://www.satya-weblog.com/2010/11/zend-framework-creating-layout.html.