Jump to content

CLAR101

Member
  • Posts

    8
  • Joined

  • Last visited

About CLAR101

  • Birthday 08/20/1991

Profile Information

  • Gender
    Male
  • Interests
    Programming, General Computing, Networking, hardware, 3D modeling and most computer related topic however I enjoy traveling and working on projects.

CLAR101's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. CLAR101

    Unknown Error

    Thank you very much it most likely is, I am unable to test it at the moment but it seems the most likely solution. Thank you very much for your quick reply and I will update this reply if it worked for future reference. Thanks again ---------UPDATE------------ Hey Ot seemed to have worked by adding the code string session_save_path ( 'PATH GOES HERE' ) In the core.php file before the session_start. Hope this helps anyone else with the issue and thank you Ben for your help
  2. CLAR101

    Unknown Error

    Hey Killersites I have a small issue with the build a CMS course and there really is an unknown reason, after I have built the CMS and even during development the error message below comes up. Warning: session_start() [function.session-start]: open(/tmp/sess_ptuprvc6df357ng3otl70e30e3, O_RDWR) failed: Permission denied (13) in /datasan/www/vhosts/iwebs4u.com/httpdocs/project/iCMS/app/core/core.php on line 31 Warning: Unknown: open(/tmp/sess_ptuprvc6df357ng3otl70e30e3, O_RDWR) failed: Permission denied (13) in Unknown on line 0 Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0 I clear my history and it disappears, but it is not just my computer that uses it every other computer has demonstrated the same error, I have looked at the code in core.php and it seems to originate from start session function, because I deleted it and the error went and I added it back and the error returns. Thanks for your help
  3. Hello, I have completed the Build a CMS course, and will do it all over again for greater understanding of the CMS, however there are a couple of features that I personally think should be added and just thought I would post it on the forum to see what everyone thinks. The first one would be add remove pages from a database, so for example all the menu items are obtained from the database and when the menu item is clicked it updates the content blocks with the information from the database. A template system so average users can choose from a set of templates. The tineMCE does not wrap text and once saved does not display large text properly for example: "ffffffffffffffffffffffffffffffffffffffffffffffff" in tineMCE would look like "ffffffffffffffffffffffffffffffffffffffffffffffff" in the CMS because it does not wrap the text to the size of the content block. All images can be edited with the Pixlr API meaning they can be edited online. A way of uploaded images and flash through an in built file manager. and the last one would be for users to freely add content blocks and remove content block graphically as and when needed. However this is just my idea of future enhancements as a rough idea, I just thought I would post and see what people think. However the build a CMS tutorial is brilliant and taught me a lot within the area of PHP, MySQL and Javascript, as I said I will go through the tutorials again for further understanding. and to anyone who has not seen the video tutorials for Build a CMS or are debating on getting it, I would highly recommend the tutorials to anyone wanting to start a project in PHP and MySQL and it is worth getting it can be found: http://killervideostore.com/video-courses/build-a-cms.php. Thanks for everything Yours Sincerely Chris Russell
  4. Fixed it, the problem was I had to delete all my history in Opera in order for it to work, but at least it works thanks for everything Yours Sincerely Chris Russell
  5. The border displays properly in Firefox and Internet Explorer but not in Opera however the close icon displays in Opera but not in Firefox or Internet Explorer LOL really weired the image above is the one from Opera.
  6. Got colorbox to work for some reason it wont except local host as APP_RESOURCES so I changed it to my domain name and it works but color box looks like this I am glad I got it working though just need to figure out why it displays it in correctly Yours Sincerely Chris Russell
  7. Unfortunately that did not work I have even copied and pasted the code provided with the build a CMS course and that did not work ether. Thanks for the reply
  8. Hello I have a small issue within the CMS package it appears that colorbox does not want to work, I have tried the files I created and even the files provided and still no luck the code is below in case you need it. <link href="<?php echo APP_RESOURCES; ?>css/fp_style.css" media="screen" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script> <script type="text/javascript">$.noConflict();</script> <script type="text/javascript" src="<?php echo APP_RESOURCES; ?>javascript/colorbox/colorbox.js"></script> <link href="<?php echo APP_RESOURCES; ?>javascript/colorbox/colorbox.css" media="screen" rel="stylesheet" type="text/css" /> <script type="text/javascript"> jQuery(document).ready(function($) { $.colorbox({ transition: 'fade', initialWidth: '50px', initialHeight: '50px', overlayClose: false, escKey: false, scrolling: false, opacity: .6, href: '<?php echo SITE_PATH; ?>app/login.php', }); }); </script> Thanks in advance Yours Sincerely Chris Russell
×
×
  • Create New...