Forum Plugin for Cakephp 1.3 - cakephp

I need the forum plugin for cakephp 1.3. I couldn't find this old version. Does anyone know where can I find it and how can I install it? I could just find the new version of cupcake from here.

The 2.x branch of the Forum plugin still supports CakePHP 1.3, as can be read in the Readme of that branch.
Just clone the repository and then checkout the 2.x branch:
cd app/plugins/
git clone https://github.com/milesj/Forum.git
git checkout 2.x
Then you should be ready to integrate it into your app.

Forum v2.0
A fully robust and powerful CakePHP forum plugin.
Requirements
CakePHP 1.3.x (Tested with 1.3.9)
PHP 5.2.x, 5.3.x
Utils Plugin - https://github.com/CakeDC/utils

Related

Maven GPG plugin 3.0.0 is missing

Here is maven-gpg-plugin version 3.0.0 official page: http://maven.apache.org/components/plugins-archives/maven-gpg-plugin-LATEST/download.cgi
However:
the download links not working
Maven central shows that the latest version of plugin is 1.6
Is it some fake page or what am I missing?
This was stage release, which doesn't passed testing and voting on Maven Developers List, so was canceled.
https://lists.apache.org/thread.html/r0286ef73b56cb484952489e6b5757e3b17023e73f8fa0dde7aa80bc4%40%3Cdev.maven.apache.org%3E
After testing two new issues was found:
https://issues.apache.org/jira/browse/MGPG-78
https://issues.apache.org/jira/browse/MGPG-79
There is new plugin https://www.simplify4u.org/sign-maven-plugin/ probably it will be successor of maven-gpg-plugin

How do I install CakePdf Plugin compatible with Cakephp 2.7.3?

I am working on a Cakephp 2.7.3 application and I need to install CakePdf Plugin.
So far all I've found is the CakePdf version that requires Cakephp 3.0+, including when I try using composer and GitHub.
Am still not an expert in CakePHP. Kindly Assist.
CakePDF release 1.0.3 is compatible with CakePHP 2.x.
To install it, add the following to your /app/composer.json file:
{
"require": {
"friendsofcake/cakepdf": "1.0.3"
}
}
and run
localhost:~/path/to/cake/app$ composer update

How do I download CakePHP 1.3 from the CakePHP GitHub repository?

I am working on a legacy CakePHP 1.3 project and would like to follow the standard blog tutorial.
The tutorial says this is possible in 2 ways:
a) To download via http://github.com/cakephp/cakephp/downloads, however when visiting this link there are no packages to download anything.
b) It suggests that it is possible to download via the command line using git clone git://github.com/cakephp/cakephp.git, however this appears to download the latest version (at this stage 2.0+)
I have located what appears to be CakePHP 1.3 at this address https://github.com/cakephp/cakephp/tree/1.3, but I am not sure how to download these all in one go with git options.
You can either download one of the tagged zips, or simply checkout the 1.3 branch after cloning the repository from Git bash:
git clone http://github.com/cakephp/cakephp
git checkout 1.3
That way you get the 1.3 branch and can use those files. If you ever want to get back to the master branch, simply checkout that branch:
git checkout master
Last CakePHP 1.3.21 zip file:
https://codeload.github.com/cakephp/cakephp/zip/1.3.21
All releases are tagged and you can download them from https://github.com/cakephp/cakephp/tags

CakePHP2 file upload plugin

I use paperclip plugin for Ruby on Rails app.
What is the defacto standard file upload plugin like paperclip for CakePHP2?
https://github.com/davidpersson/media supports only CakePHP1.3?
There is no default plugin defined, a suggestion would be to use the Uppy Plugin with ajax request, for more information go to:
[1]: https://uppy.io/docs/plugins/
I hope this helps.
David Persson's Media Plugin doesn't have a 2.0 compatible release, but somebody forked it to make it run on newer versions of Cake. This fork is actively developed (which also means things might still be broken) and with no official release incumbent it seems the best option to run the Media Plugin.
Apart from Persson's plugin there's MeioUpload which is also widely used and seems to be compatible with Cake 2.0.
There's Uploader (currently at version 3.3), which is compatible with Cake 2.0 (probably 2.1 as well).
Lastly, the plugin FileUpload by WebTechnick (known for his Facebook plugin for Cake) has a 2.0 branch which hasn't seen an official release, so proceed with caution.

CakePHP question: How can i upgrade a cakephp project from cakephp-1.3.10 to cakephp-1.3.11?

I have developed a project with cakephp-1.3.10 .
Now I want to upgrade it to cakephp-1.3.11.
What's the easiest process to upgrade from cakephp-1.3.10 to cakephp-1.3.11 ?
download the cake zip, unpack, delete the app folder, put your app folder in.
I'm sure you can't use composer! And there's a high cost in upgrading by a large jump between versions, meaning that you will end up with a lot of deprecated code.
I would go like:
complete backup
upload your app to a Github repository
tag your code
create a new branch
upload your new code
debug
merge branch
since you were just upgrading from 1.3.10 to 1.3.11 the simplest way would have been to download latest cakephp and then simply copy lib/ folder from the downloaded folder and replacing it with your existing cakephp/lib/ folder. I would prefer to download latest version from cakephp's official website https://cakephp.org/
Note- If you have to upgrade from 1.x to 3.x then you have to move from 1.x to 2.x and then 2.x to 3.x, direct migration from 1.x to 3.x is not possible

Resources