Updates from December, 2010 Toggle Comment Threads | Keyboard Shortcuts

  • Shafiul Azam 12:06 am on November 24, 2010 Permalink | Reply
    Tags: free php wall, opensource wall code, php wall code   

    LanWall – Free PHP Comment Wall for LAN users! Opensource! 

    Live Demo Here!

    Screenshots:


    LanWall is a PHP-based project for creating community among users connected in a Local Area Network (LAN). Users can post messages in the wall and make replies.

    In administrative mode, admin can modify comments & posts, ban certain IPs, restrict access or reset anything.

    Pros:

    • Requires no database! You do not need any database server. Unzip and use!

    Cons:

    • Requires a web server, i.e Apache/Xampp. Requires PHP
    • Not coded in Object-oriented fashion, kinda hard to edit codes :(

    The product is released as opensource and can be redistributed or modified keeping the file license.php intact.

    OpenSource Project released by
    PROGmaatic Developer Network

    For bug reports feel free to mail the author


    Download Links

    Current Version: 1.0 beta:  Download from SourceForge.net

     
    • Sabuj kundu aka manchumahara 11:48 am on December 20, 2010 Permalink | Reply

      seems you work with Bahar :)

      • Shafiul Azam 12:35 pm on December 20, 2010 Permalink | Reply

        yup vaiya… thanks a lot for visiting n dropping comment :)

  • Shafiul Azam 12:23 pm on November 14, 2010 Permalink | Reply
    Tags: Cannot access empty property   

    PHP Fatal error: Cannot access empty property in 

    Are you trying to access any object’s property (variables/functions) using: $this->$property ?

    Check out the red $ should not appear before object properties. In contrast:

    <?php
    	class A{
    		$b = "some value";
    
    		public function get_b(){
    			return $this->$b;	// WRONG !!!
    		}
    	}
    
    	// Using the class
    
    	$myObject = new A();
    	echo $myObject-$get_b();	// WRONG!!!
    ?>
    

    the above code segment is wrong. You should use $ only once – before ‘ this’ only. No need to use $ sign before class variables or methods.

    Correct version of the above code segment:

    <?php
    	class A{
    		$b = "some value";
    
    		public function get_b(){
    			return $this->b;
    		}
    	}
    
    	// Using the class
    
    	$myObject = new A();
    	echo $myObject-get_b();
    ?>
    

     
    • Tom 9:50 pm on May 26, 2011 Permalink | Reply

      Good job man. Exactly what I needed. I find PHP’s OOP notation a little tricky coming from EMACS.

    • Shafiul Azam 2:09 am on May 27, 2011 Permalink | Reply

      :)

  • Shafiul Azam 10:20 am on March 17, 2010 Permalink | Reply
    Tags: ওয়েব ফাইল ব্রাউজার, পিএইচপি বাংলা ফাইল ম্যানেজার, বাংলা ফাইল ব্রাউজার, বাংলা ফাইল ম্যানেজার, bangla directory browser, bangla file browser, bangla file manager, bangla file manager script, bangla web browser, free bengali file uploader, free web file browser, php web file manager   

    Bangla/Bengali Web File Manager by PHP বাংলা ফাইল ম্যানেজার 

    Hello, everybody! Today I’m going to share one of my little but proud contributions to the Bengali language – A Complete Bangla File Manager written in PHP. No, I didn’t write the core file manager script, as there are plenty of scripts available written by professional coders. So I chose File Thingie, a singe-file open source PHP based file manager script. The next thing I did, translated it to my mother lagnguage Bengali :)

    Check out the screenshots:

    So what you need to do?

    1. Download latest copy of File Thingie from here (recommended 2.5.3)
    2. Download Bangla Translation extension from here. Rename it to “ft_lang_bn.php” & put it in the same folder where your downloaded copy of File Thingie resides.
    3. Edit the file thingie script, select Bangla as the default language. All you need to do, is simply edit the File Thingie script, find the line containing $ft["settings"]["LANG"] and set it to bn:

    $ft["settings"]["LANG"]              = “bn”;

    Now it should be working properly, as working properly in my servers:

    Anyway, I think your tasks are simplified, since translating is not that kind of job for a programmer :( Anyway, some of my translations are spelled incorrectly, some of them might not be suitable. Please let me know about them. And you’re always at your freedom to modify the code as you need!

    Note: My translation also stays in the translation packages-download page of File thingie. But i recommend to download it from the hostcode-site, as i may update the script later.

    So fire up your bangla file manager now!!!

     
    • Ori 5:43 pm on January 25, 2011 Permalink | Reply

      Hi
      I was using FileThingie 2.5.3 as you do (on upload.toddgee.com), and I was hacked.
      There is a newer version 2.5.7 which fixed this security issue.
      Please update your version.
      Good luck,
      Ori

  • Shafiul Azam 4:41 am on March 17, 2010 Permalink | Reply
    Tags: download files from remote server, enable ftp by php, free php ftp uploader, free php uploader, ftp by php, ftp remote copier, how to copy files from other server to my server, how to upload files by ftp and php, how to use ftp by php, php based ftp file uploader, php ftp download, php ftp upload, php ftp uploader, php ftp uploader script   

    Free PHP FTP Uploader Script 

    As many of you already know, & rest will be known by the end of the post that you can make FTP connections and actions by PHP, we can create a simple one-page FTP based File Uploader running in PHP :)

    Well, are you wondering, what’s the need of this heck when we can already upload files by simple PHP calls? Well, many of us run our files on Free Hosting Providers, and they dont allow us to write files. They simply restrict opening files in Write mode, so though we can read the file from a remote location, we can’t write it safely in our server :(

    So if we want to copy some files from another server to our server, & if you’re allowed to make FTP connections (that means you have an FTP username & password) we can use the script below. This is a one file PHP script, Put it in the directory where you want to upload files, and use it with simple efforts.

    The Script

    Yes, it’s free :) Grab it from here

    The code is pretty self-explanatory, so if you’re going to modify it, you’ll find it a piece of cake!

    Screenshot

    Really simple huh?

    Issues

    • If FTP is not enabled in your server configuration, this will not work. Check your PHP configuration by phpinfo();
    • If your server configuration restricts remote opening file (reading files hosted in other server) , this will not work.
     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
shift + esc
cancel
Follow

Get every new post delivered to your Inbox.