├── .gitattributes ├── .gitignore ├── .htaccess ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ ├── tweet.php │ └── user_agents.php ├── controllers │ ├── admin │ │ ├── album.php │ │ ├── home.php │ │ ├── landing.php │ │ ├── log.php │ │ └── users.php │ ├── album.php │ ├── api │ │ ├── connection.php │ │ ├── landing.php │ │ ├── profile.php │ │ ├── status.php │ │ └── tw_controller.php │ ├── chat.php │ ├── chatroom.php │ ├── connection.php │ ├── contacts.php │ ├── home.php │ ├── index.html │ ├── landing.php │ ├── log.php │ ├── pad.php │ ├── poke.php │ ├── profile.php │ ├── search.php │ ├── setting.php │ ├── sms.php │ ├── status.php │ ├── tw_controller.php │ └── world.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ ├── index.html │ │ └── site_lang.php │ └── french │ │ ├── index.html │ │ └── site_lang.php ├── libraries │ ├── Facebook.php │ ├── Lightopenid.php │ ├── MY_Config.php │ ├── MY_Language.php │ ├── base_facebook.php │ ├── fb_ca_chain_bundle.crt │ ├── index.html │ └── tweet.php ├── logs │ └── index.html ├── models │ ├── functions.php │ ├── index.html │ └── twadmin.php ├── third_party │ └── index.html └── views │ ├── 404.php │ ├── about_view.php │ ├── account_setting_view.php │ ├── admin │ ├── age_log_view.php │ ├── footer_view.php │ ├── gender_log_view.php │ ├── header_view.php │ ├── home_view.php │ ├── login_log_view.php │ ├── login_view.php │ ├── register_log_view.php │ ├── resend_activation_mail_view.php │ ├── status_log_view.php │ ├── tophituser_log_view.php │ ├── toplogin_log_view.php │ ├── toppages_log_view.php │ ├── topvieweduser_log_view.php │ ├── trend_log_view.php │ ├── user_view.php │ └── users_view.php │ ├── album_view.php │ ├── alert_view.php │ ├── api_view.php │ ├── chatroom_view.php │ ├── contacts_view.php │ ├── dashboard_view.php │ ├── developers_view.php │ ├── dream_view.php │ ├── edit_profile_view.php │ ├── editworld_view.php │ ├── existing_contacts_view.php │ ├── fbregister_view.php │ ├── followers_view.php │ ├── followings_view.php │ ├── footer_view.php │ ├── forgot_view.php │ ├── friend_suggession_view.php │ ├── friends_view.php │ ├── header_view.php │ ├── home_view.php │ ├── import_view.php │ ├── index.html │ ├── index_footer_view.php │ ├── index_header_view.php │ ├── index_view.php │ ├── living_view.php │ ├── login_view.php │ ├── menu_view.php │ ├── mutual_friends_view.php │ ├── nonexting_contacts_view.php │ ├── openidregister_view.php │ ├── pad_compose_view.php │ ├── pad_view.php │ ├── password_setting_view.php │ ├── photo_view.php │ ├── poke_view.php │ ├── privacy_view.php │ ├── profile_picture_crop_view.php │ ├── profile_picture_upload_view.php │ ├── profile_view.php │ ├── public_profile_view.php │ ├── public_search_view.php │ ├── register_view.php │ ├── search_view.php │ ├── setting_view.php │ ├── snaps_view.php │ ├── status_view.php │ ├── terms_view.php │ ├── themes_view.php │ ├── tour_view.php │ └── twitterregister_view.php ├── aulib ├── ajaxfileupload.css ├── ajaxfileupload.js ├── jquery.js └── loading.gif ├── cplib ├── .htaccess ├── arrow.gif ├── cross.gif ├── hs.png └── jscolor.js ├── css ├── Jcrop.gif ├── arrow.gif ├── chat.css ├── jquery.Jcrop.css ├── jquery.autocomplete.css ├── jquery.jqplot.css ├── jquery.validity.css ├── landing.css ├── screen.css ├── screen_ie.css ├── themes │ ├── admin-default.css │ └── default.css ├── thickbox.css └── tipsy.css ├── images ├── Desktop_.ini ├── album_pictures │ ├── full │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ └── thumb │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg ├── clouds - Copy.png ├── clouds.png ├── clouds.psd ├── facebook.png ├── friends.png ├── gmail.png ├── landing_bg.png ├── logo.jpg ├── logo.png ├── pillar.png ├── profile_pictures │ ├── full │ │ ├── arundavid.jpg │ │ ├── ashokraj.jpg │ │ ├── default.jpg │ │ ├── melwynjensen.jpg │ │ └── smartmohi.jpg │ └── thumb │ │ ├── arundavid.jpg │ │ ├── ashokraj.jpg │ │ ├── default.jpg │ │ ├── melwynjensen.jpg │ │ └── smartmohi.jpg ├── themes │ └── default │ │ ├── alert_close.png │ │ ├── header_bg.png │ │ ├── logo.png │ │ ├── right-arrow.png │ │ ├── search-zoom-icon.png │ │ ├── status_comment.png │ │ ├── status_delete.png │ │ ├── status_image.png │ │ ├── status_like.png │ │ ├── status_link.png │ │ ├── status_time.png │ │ ├── status_unlike.png │ │ ├── status_video.png │ │ └── tipsy.gif ├── twitter.png ├── world │ ├── 1.png │ ├── 2.png │ └── 3.png └── yahoo.png ├── index.php ├── js ├── Desktop_.ini ├── chat.js ├── jqplot.barRenderer.min.js ├── jqplot.canvasAxisLabelRenderer.js ├── jqplot.canvasTextRenderer.js ├── jqplot.categoryAxisRenderer.min.js ├── jqplot.cursor.js ├── jqplot.dateAxisRenderer.js ├── jqplot.highlighter.js ├── jqplot.pieRenderer.min.js ├── jquery-1.4.4.min.js ├── jquery.Jcrop.min.js ├── jquery.address-1.4.min.js ├── jquery.ajaxQueue.js ├── jquery.autocomplete.min.js ├── jquery.autocomplete.pack.js ├── jquery.bgiframe.min.js ├── jquery.elastic.js ├── jquery.jqplot.js ├── jquery.tipsy.js ├── jquery.toggleval.js ├── jquery.validity.js ├── script.js ├── statusfunctions.js └── thickbox-compressed.js ├── license.txt ├── public ├── chat.php ├── functions │ └── functions.php ├── geturldata.php ├── grablib │ ├── autoupdate.php │ ├── conf │ │ ├── abv.conf │ │ ├── aol.conf │ │ ├── apropo.conf │ │ ├── atlas.conf │ │ ├── aussiemail.conf │ │ ├── azet.conf │ │ ├── badoo.conf │ │ ├── bebo.conf │ │ ├── bigstring.conf │ │ ├── bookcrossing.conf │ │ ├── bordermail.conf │ │ ├── brazencareerist.conf │ │ ├── canoe.conf │ │ ├── care2.conf │ │ ├── clevergo.conf │ │ ├── cyworld.conf │ │ ├── doramail.conf │ │ ├── eons.conf │ │ ├── evite.conf │ │ ├── facebook.conf │ │ ├── faces.conf │ │ ├── famiva.conf │ │ ├── fastmail.conf │ │ ├── fdcareer.conf │ │ ├── flickr.conf │ │ ├── flingr.conf │ │ ├── flixster.conf │ │ ├── fm5.conf │ │ ├── freemail.conf │ │ ├── friendfeed.conf │ │ ├── friendster.conf │ │ ├── gawab.conf │ │ ├── gmail.conf │ │ ├── gmx_net.conf │ │ ├── graffiti.conf │ │ ├── hi5.conf │ │ ├── hotmail.conf │ │ ├── hushmail.conf │ │ ├── hyves.conf │ │ ├── inbox.conf │ │ ├── india.conf │ │ ├── indiatimes.conf │ │ ├── inet.conf │ │ ├── interia.conf │ │ ├── katamail.conf │ │ ├── kids.conf │ │ ├── kincafe.conf │ │ ├── konnects.conf │ │ ├── koolro.conf │ │ ├── lastfm.conf │ │ ├── libero.conf │ │ ├── linkedin.conf │ │ ├── livejournal.conf │ │ ├── lovento.conf │ │ ├── lycos.conf │ │ ├── mail2world.conf │ │ ├── mail_com.conf │ │ ├── mail_in.conf │ │ ├── mail_ru.conf │ │ ├── meinvz.conf │ │ ├── meta.conf │ │ ├── mevio.conf │ │ ├── motortopia.conf │ │ ├── msn.conf │ │ ├── multiply.conf │ │ ├── mycatspace.conf │ │ ├── mydogspace.conf │ │ ├── mynet.conf │ │ ├── myspace.conf │ │ ├── netaddress.conf │ │ ├── netlog.conf │ │ ├── ning.conf │ │ ├── nz11.conf │ │ ├── o2.conf │ │ ├── operamail.conf │ │ ├── orkut.conf │ │ ├── perfspot.conf │ │ ├── plaxo.conf │ │ ├── plazes.conf │ │ ├── plurk.conf │ │ ├── pochta.conf │ │ ├── popstarmail.conf │ │ ├── rambler.conf │ │ ├── rediff.conf │ │ ├── sapo.conf │ │ ├── skyrock.conf │ │ ├── tagged.conf │ │ ├── techemail.conf │ │ ├── terra.conf │ │ ├── twitter.conf │ │ ├── uk2.conf │ │ ├── vimeo.conf │ │ ├── virgilio.conf │ │ ├── vkontakte.conf │ │ ├── walla.conf │ │ ├── web_de.conf │ │ ├── wpl.conf │ │ ├── xanga.conf │ │ ├── xing.conf │ │ ├── xuqa.conf │ │ ├── yahoo.conf │ │ ├── yandex.conf │ │ ├── youtube.conf │ │ └── zapak.conf │ ├── config.php │ ├── example.php │ ├── images │ │ ├── ers.gif │ │ └── oks.gif │ ├── notifier.php │ ├── openinviter.php │ ├── openinviter_stats.sqlite │ ├── plugins │ │ ├── _base.php │ │ ├── _hosted.plg.php │ │ ├── abv.plg.php │ │ ├── aol.plg.php │ │ ├── apropo.plg.php │ │ ├── atlas.plg.php │ │ ├── aussiemail.plg.php │ │ ├── azet.plg.php │ │ ├── badoo.plg.php │ │ ├── bebo.plg.php │ │ ├── bigstring.plg.php │ │ ├── bookcrossing.plg.php │ │ ├── bordermail.plg.php │ │ ├── brazencareerist.plg.php │ │ ├── canoe.plg.php │ │ ├── care2.plg.php │ │ ├── clevergo.plg.php │ │ ├── cyworld.plg.php │ │ ├── doramail.plg.php │ │ ├── eons.plg.php │ │ ├── evite.plg.php │ │ ├── facebook.plg.php │ │ ├── faces.plg.php │ │ ├── famiva.plg.php │ │ ├── fastmail.plg.php │ │ ├── fdcareer.plg.php │ │ ├── flickr.plg.php │ │ ├── flingr.plg.php │ │ ├── flixster.plg.php │ │ ├── fm5.plg.php │ │ ├── freemail.plg.php │ │ ├── friendfeed.plg.php │ │ ├── friendster.plg.php │ │ ├── gawab.plg.php │ │ ├── gmail.plg.php │ │ ├── gmx_net.plg.php │ │ ├── graffiti.plg.php │ │ ├── hi5.plg.php │ │ ├── hotmail.plg.php │ │ ├── hushmail.plg.php │ │ ├── hyves.plg.php │ │ ├── inbox.plg.php │ │ ├── india.plg.php │ │ ├── indiatimes.plg.php │ │ ├── inet.plg.php │ │ ├── interia.plg.php │ │ ├── katamail.plg.php │ │ ├── kids.plg.php │ │ ├── kincafe.plg.php │ │ ├── konnects.plg.php │ │ ├── koolro.plg.php │ │ ├── lastfm.plg.php │ │ ├── libero.plg.php │ │ ├── linkedin.plg.php │ │ ├── livejournal.plg.php │ │ ├── lovento.plg.php │ │ ├── lycos.plg.php │ │ ├── mail2world.plg.php │ │ ├── mail_com.plg.php │ │ ├── mail_in.plg.php │ │ ├── mail_ru.plg.php │ │ ├── meinvz.plg.php │ │ ├── meta.plg.php │ │ ├── mevio.plg.php │ │ ├── motortopia.plg.php │ │ ├── msn.plg.php │ │ ├── multiply.plg.php │ │ ├── mycatspace.plg.php │ │ ├── mydogspace.plg.php │ │ ├── mynet.plg.php │ │ ├── myspace.plg.php │ │ ├── netaddress.plg.php │ │ ├── netlog.plg.php │ │ ├── ning.plg.php │ │ ├── nz11.plg.php │ │ ├── o2.plg.php │ │ ├── operamail.plg.php │ │ ├── orkut.plg.php │ │ ├── perfspot.plg.php │ │ ├── plaxo.plg.php │ │ ├── plazes.plg.php │ │ ├── plurk.plg.php │ │ ├── pochta.plg.php │ │ ├── popstarmail.plg.php │ │ ├── rambler.plg.php │ │ ├── rediff.plg.php │ │ ├── sapo.plg.php │ │ ├── skyrock.plg.php │ │ ├── tagged.plg.php │ │ ├── techemail.plg.php │ │ ├── terra.plg.php │ │ ├── twitter.plg.php │ │ ├── uk2.plg.php │ │ ├── vimeo.plg.php │ │ ├── virgilio.plg.php │ │ ├── vkontakte.plg.php │ │ ├── walla.plg.php │ │ ├── web_de.plg.php │ │ ├── wpl.plg.php │ │ ├── xanga.plg.php │ │ ├── xing.plg.php │ │ ├── xuqa.plg.php │ │ ├── yahoo.plg.php │ │ ├── yandex.plg.php │ │ ├── youtube.plg.php │ │ └── zapak.plg.php │ └── stats.php ├── import.php └── inviter │ ├── autoupdate.php │ ├── conf │ ├── abv.conf │ ├── aol.conf │ ├── apropo.conf │ ├── atlas.conf │ ├── aussiemail.conf │ ├── azet.conf │ ├── badoo.conf │ ├── bebo.conf │ ├── bigstring.conf │ ├── bookcrossing.conf │ ├── bordermail.conf │ ├── brazencareerist.conf │ ├── canoe.conf │ ├── care2.conf │ ├── clevergo.conf │ ├── cyworld.conf │ ├── doramail.conf │ ├── eons.conf │ ├── evite.conf │ ├── facebook.conf │ ├── faces.conf │ ├── famiva.conf │ ├── fastmail.conf │ ├── fdcareer.conf │ ├── flickr.conf │ ├── flingr.conf │ ├── flixster.conf │ ├── fm5.conf │ ├── freemail.conf │ ├── friendfeed.conf │ ├── friendster.conf │ ├── gawab.conf │ ├── gmail.conf │ ├── gmx_net.conf │ ├── graffiti.conf │ ├── hi5.conf │ ├── hotmail.conf │ ├── hushmail.conf │ ├── hyves.conf │ ├── inbox.conf │ ├── india.conf │ ├── indiatimes.conf │ ├── inet.conf │ ├── interia.conf │ ├── katamail.conf │ ├── kids.conf │ ├── kincafe.conf │ ├── konnects.conf │ ├── koolro.conf │ ├── lastfm.conf │ ├── libero.conf │ ├── linkedin.conf │ ├── livejournal.conf │ ├── lovento.conf │ ├── lycos.conf │ ├── mail2world.conf │ ├── mail_com.conf │ ├── mail_in.conf │ ├── mail_ru.conf │ ├── meinvz.conf │ ├── meta.conf │ ├── mevio.conf │ ├── motortopia.conf │ ├── msn.conf │ ├── multiply.conf │ ├── mycatspace.conf │ ├── mydogspace.conf │ ├── mynet.conf │ ├── myspace.conf │ ├── netaddress.conf │ ├── netlog.conf │ ├── ning.conf │ ├── nz11.conf │ ├── o2.conf │ ├── operamail.conf │ ├── orkut.conf │ ├── perfspot.conf │ ├── plaxo.conf │ ├── plazes.conf │ ├── plurk.conf │ ├── pochta.conf │ ├── popstarmail.conf │ ├── rambler.conf │ ├── rediff.conf │ ├── sapo.conf │ ├── skyrock.conf │ ├── tagged.conf │ ├── techemail.conf │ ├── terra.conf │ ├── twitter.conf │ ├── uk2.conf │ ├── vimeo.conf │ ├── virgilio.conf │ ├── vkontakte.conf │ ├── walla.conf │ ├── web_de.conf │ ├── wpl.conf │ ├── xanga.conf │ ├── xing.conf │ ├── xuqa.conf │ ├── yahoo.conf │ ├── yandex.conf │ ├── youtube.conf │ └── zapak.conf │ ├── config.php │ ├── images │ ├── ers.gif │ └── oks.gif │ ├── import.php │ ├── notifier.php │ ├── openinviter.php │ ├── openinviter_stats.sqlite │ ├── plugins │ ├── _base.php │ ├── _hosted.plg.php │ ├── abv.plg.php │ ├── aol.plg.php │ ├── apropo.plg.php │ ├── atlas.plg.php │ ├── aussiemail.plg.php │ ├── azet.plg.php │ ├── badoo.plg.php │ ├── bebo.plg.php │ ├── bigstring.plg.php │ ├── bookcrossing.plg.php │ ├── bordermail.plg.php │ ├── brazencareerist.plg.php │ ├── canoe.plg.php │ ├── care2.plg.php │ ├── clevergo.plg.php │ ├── cyworld.plg.php │ ├── doramail.plg.php │ ├── eons.plg.php │ ├── evite.plg.php │ ├── facebook.plg.php │ ├── faces.plg.php │ ├── famiva.plg.php │ ├── fastmail.plg.php │ ├── fdcareer.plg.php │ ├── flickr.plg.php │ ├── flingr.plg.php │ ├── flixster.plg.php │ ├── fm5.plg.php │ ├── freemail.plg.php │ ├── friendfeed.plg.php │ ├── friendster.plg.php │ ├── gawab.plg.php │ ├── gmail.plg.php │ ├── gmx_net.plg.php │ ├── graffiti.plg.php │ ├── hi5.plg.php │ ├── hotmail.plg.php │ ├── hushmail.plg.php │ ├── hyves.plg.php │ ├── inbox.plg.php │ ├── india.plg.php │ ├── indiatimes.plg.php │ ├── inet.plg.php │ ├── interia.plg.php │ ├── katamail.plg.php │ ├── kids.plg.php │ ├── kincafe.plg.php │ ├── konnects.plg.php │ ├── koolro.plg.php │ ├── lastfm.plg.php │ ├── libero.plg.php │ ├── linkedin.plg.php │ ├── livejournal.plg.php │ ├── lovento.plg.php │ ├── lycos.plg.php │ ├── mail2world.plg.php │ ├── mail_com.plg.php │ ├── mail_in.plg.php │ ├── mail_ru.plg.php │ ├── meinvz.plg.php │ ├── meta.plg.php │ ├── mevio.plg.php │ ├── motortopia.plg.php │ ├── msn.plg.php │ ├── multiply.plg.php │ ├── mycatspace.plg.php │ ├── mydogspace.plg.php │ ├── mynet.plg.php │ ├── myspace.plg.php │ ├── netaddress.plg.php │ ├── netlog.plg.php │ ├── ning.plg.php │ ├── nz11.plg.php │ ├── o2.plg.php │ ├── operamail.plg.php │ ├── orkut.plg.php │ ├── perfspot.plg.php │ ├── plaxo.plg.php │ ├── plazes.plg.php │ ├── plurk.plg.php │ ├── pochta.plg.php │ ├── popstarmail.plg.php │ ├── rambler.plg.php │ ├── rediff.plg.php │ ├── sapo.plg.php │ ├── skyrock.plg.php │ ├── tagged.plg.php │ ├── techemail.plg.php │ ├── terra.plg.php │ ├── twitter.plg.php │ ├── uk2.plg.php │ ├── vimeo.plg.php │ ├── virgilio.plg.php │ ├── vkontakte.plg.php │ ├── walla.plg.php │ ├── web_de.plg.php │ ├── wpl.plg.php │ ├── xanga.plg.php │ ├── xing.plg.php │ ├── xuqa.plg.php │ ├── yahoo.plg.php │ ├── yandex.plg.php │ ├── youtube.plg.php │ └── zapak.plg.php │ └── stats.php ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ └── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Security.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php └── tinywall_db.sql /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ /social/index.php/$1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | social.tinywall.com 2 | =================== 3 | 4 | Tinywall Social Networking 5 | 6 | ###Installation Instruction 7 | 8 | * Create a database 'tinywall_db' and run SQL the file https://github.com/tinywall/social/blob/master/tinywall_db.sql 9 | 10 | * Configure the encription key in https://github.com/tinywall/social/blob/master/application/config/config.php and database details in https://github.com/tinywall/social/blob/master/application/config/database.php 11 | 12 | * Go to http://localhost/social/ and login with username: demouser ; password: demouser 13 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
என் பெயர் 8 | 9 | 10 |