Jump to content

gc40

Members
  • Posts

    65
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

gc40's Achievements

Member

Member (2/5)

0

Reputation

  1. I already looked into the connect, but I can't find video uploading from another website as yet. Any idea?
  2. I am currently building an application for a client that wishes to login to his website admin panel and have the ability to upload a single video that will be uploaded to both Youtube and Facebook. We have researched and found that it is very possible with the Youtube DataAPI using direct uploading. However, we are still trying to wrap our heads around the Facebook video uploading. Does anyone have any insight to this being a possibility or can they provide feedback? To make things clear our client wishes to go to www.hiswebsite.com/upload/ then he will login with his credentials. The next step is he wishes to click "Add a video" that will allow him to type the title, description and browse local library for a video. When he clicks upload the video will be submitted to both Facebook and Youtube. We already know we must authenticate the user on both systems, but we are clueless on how to start with facebook. Advise please. Thanks all.
  3. Greetings All, I have a mailing list of about 12,000 people from my local town. I want to purchase a newsletter system that would allow me to enter these emails into this system and then send out template based html emails to all 12,000. First I need to know what kind of newsletter system should I get. Then I need to know if it could handle sending out 12,000 emails (queuing system?) and lastly what host should I go with that could handle that massive about of emails. Should I use php mailing function or a sendmail through my gmail account?
  4. I have been doing hosting and development for some time now and I would like to take my company website to the next level. How do I go about setting up on my website a way for my clients to search domain availability on my site and then select the one they want, and follow through with a web form that will email me the domain and allow the client to pay for it via paypal. I will then in turn register the domain with my registrar.
  5. Hello, I am building a website for a client and they are also a web developer (they sub-contracted me for a job). They requested that I build a web app for THEIR client and host it on THEIR server. I asked them if it was okay if I protect myself and my code by encrypting it and putting a license on it so that only that client can use my code. Here are my questions: 1. How do I establish a system that is linked to an external database of priviledged sites that I have that are allowed access to my code. For example, I have a hashed value (Server_Name + Int) + Remote_Host. I basically want to restrict access from website that is not listed in that database of authenticated users. 2. Is there FREE software out there that I can use to encrypt my PHP code (I looked at IonCube, but it is fairly expensive).
  6. How do I get rid of this error from display when I call session_start()?? Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at D:\My Documents\My Xampp\htdocs\ellen\header_top.php:4) in D:\My Documents\My Xampp\htdocs\ellen\header_top.php on line 5
  7. I have built my own CMS that I use as a frame work on client websites. Currently, I use statcounter.com or google.com/analytics/ to track page stats. However, I would like to start using statistics that I can plugin to my CMS. Does anyone know any open source stat software written in PHP?
  8. I am writing my config file and I often work between localhost and the live server. $hostname = $_SERVER['SERVER_NAME']; if ($hostname == 'localhost') { $host = 'localhost'; $user = 'root'; $pass = 'rootpass'; $database = 'default_db'; } else if($hostname == 'domain.com') { $host = 'localhost'; // Name of server you are on (e.g. localhost) $user = 'live_user'; // Your Server Username $pass = 'live_password'; // Your Server Password $database = 'live_db'; // Database Name where the user details are } The only problem with the above is if the client is visiting www.domain.com then hostname = www.domain.com If the client visits http://domain.com then hostname = domain.com How do I go about removing the www. without affecting none www. names?
  9. Hello all, I develop my website in PHP and I have a header file which is included at the top of all of my pages. Within that header file, I have a few HTML commented lines with my copyright info. I am just wondering if there is a better way to do this and if this affects SEO in any way. <!-- ***************************************************************************** * =================================================================== * * | Website Info: | * * | This website was created and developed by AUTHOR. | * * | All content and source coding is copyrighted to the author. | * * | Hosting for this website is provided by DOMAIN.COM | * * | | * * ==================================================================== * ***************************************************************************** -->
  10. Hello All, I have purchased a flash script that is feeds from an XML file called "flashfeed.xml" I am building a website for a client and I built a full CMS backend for their site. They are going to want to update the content stored in the XML file, however, I have no idea where to start. Can anyone advise me on my options and the best solution? I was thinking of using the obvious and storing the data in a mysql database and then parsing that data to a PHP file and then convert it to an XML file. Advise, please.
  11. I am trying to make a website that has two CSS. When a client goes to the site, it would load style1.css, however, if the client decides he wants a different look, he can click to load style2.css which would load a different background and font color. How do I go about doing this to allow a client to select between two Style sheets or even two different classes?
  12. Greetings all, I have made a CMS for a site where the admin can update text content on the home page.... They login to the admin panel and enter a title, and the body. However, the client wants to offer two languages now. One English, and one French.. Therefore, I made the database changes by adding one extra field called body_french and changed body to body_english... Now the admin enters the body for both english and french... The problem comes when I display the database information on the home page. How should I allow the client to select between English and French? Should I use sessions? Or should I use a simple PHP If else fucntion? Also, if I use sessions, can someone direct me how to start? I have never used sessions.
  13. Hey bud, thanks for trying to help, but it isn't working. I can't get it figured out!!
  14. I am lost still. Here is my code for the actual page that will display the article: <?php $current = 'training'; $fullpage = 'yes'; include("./class/config.php"); $id=$_REQUEST['id']; $start=$_REQUEST['start']; $sqlcontent="Select * from training where Training_ID='$id' LIMIT 1"; //$resprop=mysql_query($sqlprop,$db); $rescontent=mysql_query($sqlcontent); $onecontent=mysql_fetch_object($rescontent); $row = mysql_fetch_array($rescontent); ?> <?php include('header_top.php');?> <title><?php print ($onecontent->Training_Title); ?></title> <meta name="title" content="<?php print ($onecontent->Training_Title); ?>" /> <meta name="keywords" content="<?php print ($onecontent->Training_Meta_Keywords); ?>" /> <meta name="description" content="<?php print ($onecontent->Training_Meta_Description); ?>" /> <?php include('header.php'); echo "<h1>".$onecontent->Training_Title."</h1>"; echo "<p>".$onecontent->Training_Body."</p>"; echo "<p><a href='javascript:history.go(-1)'>ยป Back</a></p>"; include('footer.php'); ?>
  15. Not working!! I think there is something wrong... How do I link the field `DATE` to your code? It ins't right.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.