Jump to content

lathifmca

Members
  • Posts

    13
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

lathifmca's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Dear Guys, I m a newbie to symfony, I have already developed the Symfony Demo Jobeet Job Project, this is really cool.. I have developed this project in NetBeans 6.8 IDE, symfony framework 1.4.1 and Doctrine ORM. Now I tried to upload this project on my free domain.. http://lathifmca.ofees.net/ This is the free hosting domain, I upload the files using FTP, and I follow the steps as given in http://trac.symfony-project.org/wiki/InstallingSymfonyOnSharedHostNoSsh Please check my PHP INFO file and symfony prerequisite Configuration File: http://lathifmca.0fees.net/phpinfo.php http://lathifmca.0fees.net/check_configuration.php Guys, when i try to run the index.php, it shows only the blank page.. And i also create the Database and the neccessary tables and its data too.. now my problem is, it shows only the blank page, when try to run the index.php, frontend_dev.php or backend_dev.php. Guys, Please help me as soon as possible, This is the demo projec, after this successful launch, we will do the real time projects in symfony.. so please help me about this problem.. And guys, pls give the .htaccess file data also, what i need to change this .htaccess ? my .htaccess data is as follows.. Options +FollowSymLinks +ExecCGI <IfModule mod_rewrite.c> RewriteEngine On # uncomment the following line, if you are having trouble # getting no_script_name to work #RewriteBase / # we skip all files with .something #RewriteCond %{REQUEST_URI} \..+$ #RewriteCond %{REQUEST_URI} !\.html$ #RewriteRule .* - [L] # we check if the .html version is here (caching) RewriteRule ^$ index.html [QSA] RewriteRule ^([^.]+)$ $1.html [QSA] RewriteCond %{REQUEST_FILENAME} !-f # no, so we redirect to our front web controller RewriteRule ^(.*)$ index.php [QSA,L] </IfModule> and this is my index.php, I altered as given in that guide, http://trac.symfony-project.org/wiki/InstallingSymfonyOnSharedHostNoSsh <?php $vhost_root_dir = realpath(dirname(__FILE__).'/..'); $project_dir = $vhost_root_dir.'/projects/DCPLD'; //define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/..')); define('SF_ROOT_DIR', $project_dir); define('SF_APP', 'frontend'); define('SF_ENVIRONMENT', 'prod'); // for myapp_dev.php 'prod' should be 'dev' define('SF_DEBUG', false); // for myapp_dev.php this should be true // include path set_include_path( $vhost_root_dir.'/pear_libs'.PATH_SEPARATOR. get_include_path() ); unset($vhost_root_dir, $project_dir); require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'ProjectConfiguration.class.php'); sfContext::getInstance()->getController()->dispatch(); ?> Please guide me Guys.. What are the steps i need to follow, and what changes i need to do in .htaccess ? this is my site link : http://lathifmca.0fees.net/ Thanks in Advance Guys...
  2. No sir.. i dont know the procedure.. Please guide me sir.. Thanks for your Immediate Reply..
  3. Hi guys, i m a newbie for symfony framework, i have done the Jobeet Job Demo Project as given in the symfony guide book. i used WAMP Server 2.0i and symfony Framework 1.4, Doctrine ORM now, i want to host this demo project in a domain.. i have a free domain from the 0fees.net, my domain address is http://lathifmca.0fees.net/ my domain's PHP INFO is http://lathifmca.0fees.net/phpinfo.php i already created the database using cPanel and upload the Project using FTP software.. but the project not working in my domain.. pls help me to run the project.. Its better to list the steps to follow for hosting the symfony web application.. pls help me guys.. Thanks in Advance Guys..
  4. thanks people.. for your suggestion.. i planned to work with symfony framework..
  5. Hi friends, i am new to PHP.. there are more Frameworks available for PHP.. which is best Framework for PHP ? that will support MVC architecture, AJAX, etc...
  6. thanks mapleleaf, now works fine..
  7. thanks mapleleaf... thats working now.. but how to do the viceversa.. (i.e, getting from db and stored it in the tinymce..)
  8. hi friends, i download the tinymce from net.. my tiny mce is works fine, no problem in that one.. now my problem is how to get the Contents from tinymce and how to insert the content to Database.. i know the javascript coding to getcontents from the tinymce.. but what i need is, how to get the contents from the tinymce and stored it in database using PHP... and need to do the concept viceversa, (i.e, get content from database and stored it in tinymce..) thanks in advance....
  9. can u describe the table structure of your database tables.. if both of your tables have a same Column (or type of) Eg: Table1 has NAME column, Table2 has CNAME, then u need compare those with the query like "Select * from table1,table2 where table1.NAME = table2.CNAME", this will give the same matches in NAME and CNAME of the Table1 and Table2..
  10. hmm.. s, but in the above your code, u r checking an IF ELSE condition, that is unneccessary.. so that i replied that code... thats all...
  11. hi 9three, i m a newbie here, try this coding, this will help u for improvement <?php $x = 16; for( $i= $x-5; ($i < $x) && ($i > 0) ; $i++ ) { echo $i." "; } echo $x; ?>
  12. Hi guys, i m new around here, i know the basics of the php and mysql, i want to do some mini projects in php.. pls suggest me the topics to do mini projects in php.. Thanks in Advance..
×
×
  • 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.